diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index d2b744a..5955fac 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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 }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 5c424a4..fa9dca9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -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 @@ -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 diff --git a/package-lock.json b/package-lock.json index a208d0d..6e84d0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@pylonide/vfs-local", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@pylonide/vfs-local", - "version": "0.10.0", + "version": "0.11.0", "license": "MIT", "dependencies": { "node-pty": "1.0.0", @@ -18,7 +18,7 @@ "vfs-lint": "~0.0.1" }, "engines": { - "node": ">= 14.21.1" + "node": ">= 18.18.2" } }, "node_modules/ansi-colors": { diff --git a/package.json b/package.json index 69b6e1b..de713e8 100644 --- a/package.json +++ b/package.json @@ -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. ", + "author": "Sten Feldman ", + "license": "MIT", "contributors": [ + "Ajax.org B.V. ", { "name": "Tim Caswell", "email": "tim@c9.io>" @@ -13,7 +16,6 @@ }, "Sten Feldman (https://sten.pw/)" ], - "version": "0.10.0", "repository": { "type": "git", "url": "git://github.com/pylonide/vfs-local.git" @@ -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" } }