Skip to content

Commit 6beb8f9

Browse files
committed
version bump
1 parent 9924cbd commit 6beb8f9

File tree

6 files changed

+16
-6965
lines changed

6 files changed

+16
-6965
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- name: lint
1717
uses: actions/setup-node@v2
1818
with:
19-
node-version: '15.x'
20-
- run: npm ci
19+
node-version: '16.x'
20+
- run: npm install
2121
- run: npm run lint

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [15.x]
19+
node-version: [16.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
@@ -25,6 +25,6 @@ jobs:
2525
uses: actions/setup-node@v2
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
- run: npm ci
28+
- run: npm install
2929
- run: npm run build --if-present
3030
- run: npm test

.github/workflows/npm-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v2
1616
with:
17-
node-version: 15
18-
- run: npm ci
17+
node-version: 16
18+
- run: npm install
1919
- run: npm test
2020

2121
publish-npm:
@@ -25,9 +25,9 @@ jobs:
2525
- uses: actions/checkout@v2
2626
- uses: actions/setup-node@v2
2727
with:
28-
node-version: 15
28+
node-version: 16
2929
registry-url: https://registry.npmjs.org/
30-
- run: npm ci
30+
- run: npm install
3131
- run: npm publish
3232
env:
3333
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v2
4040
- uses: actions/setup-node@v2
4141
with:
42-
node-version: 15
42+
node-version: 16
4343
registry-url: https://npm.pkg.github.com/
4444
- name: Insert repository owner as scope into package name
4545
run: |
@@ -54,7 +54,7 @@ jobs:
5454
process.exit(1);
5555
});
5656
EOF
57-
- run: npm ci
57+
- run: npm install
5858
- run: npm publish
5959
env:
6060
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 6.0.5 - 2021-10-20
4+
5+
* version bump
6+
* remove `package-lock.json`, no depedencies so make bot and install warnings go away
7+
38
## 6.0.4 - 2021-05-14
49

510
* remove un-used babel devDependencies

0 commit comments

Comments
 (0)