Skip to content

Commit

Permalink
Deprecate node < v18
Browse files Browse the repository at this point in the history
- Bump version
- Refresh lock
- Update publish node to v20
- Update node CI build matrix
  • Loading branch information
exsilium committed Dec 6, 2023
1 parent d0b16d6 commit d2ec4c1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
node-version: [18.x, 19.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: npm ci
- run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@pylonide/vfs-local",
"version": "0.11.0",
"description": "A vfs implementation that works on the local filesystem.",
"author": "Ajax.org B.V. <info@ajax.org>",
"author": "Sten Feldman <exile@chamber.ee>",
"license": "MIT",
"contributors": [
"Ajax.org B.V. <info@ajax.org>",
{
"name": "Tim Caswell",
"email": "tim@c9.io>"
Expand All @@ -13,7 +16,6 @@
},
"Sten Feldman <exile@chamber.ee> (https://sten.pw/)"
],
"version": "0.10.0",
"repository": {
"type": "git",
"url": "git://github.com/pylonide/vfs-local.git"
Expand All @@ -31,8 +33,7 @@
"scripts": {
"test": "git clean -df test/mock; mocha -R spec"
},
"license": "MIT",
"engines": {
"node": ">= 14.21.1"
"node": ">= 18.18.2"
}
}

0 comments on commit d2ec4c1

Please sign in to comment.