dos to unix

This commit is contained in:
night0721 2023-11-02 01:04:33 +00:00
parent 36edd5a2d0
commit 3fb164c552
5 changed files with 72 additions and 72 deletions

26
.github/Changelog.md vendored
View file

@ -1,14 +1,14 @@
<h1 align="center">Changelog</h1>
> This does not include dev releases yet
# Release v1.2.0
## Added
# Release v1.1.0
## Added
# Release v1.0.0
<h1 align="center">Changelog</h1>
> This does not include dev releases yet
# Release v1.2.0
## Added
# Release v1.1.0
## Added
# Release v1.0.0
Initial Release

24
.github/FUNDING.yml vendored
View file

@ -1,12 +1,12 @@
# These are supported funding model platforms
github: [night0721, ThunderE75] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: cathteam
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
# These are supported funding model platforms
github: [night0721, ThunderE75] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: cathteam
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

View file

@ -1,33 +1,33 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

8
.gitignore vendored
View file

@ -1,5 +1,5 @@
dist/
node_modules/
package-lock.json
test.js
dist/
node_modules/
package-lock.json
test.js
docs/

View file

@ -1,11 +1,11 @@
src
tsconfig.json
node_modules
package-lock.json
.gitignore
LICENSE
.github
docs
test.js
vercel.json
src
tsconfig.json
node_modules
package-lock.json
.gitignore
LICENSE
.github
docs
test.js
vercel.json
README.md