From 7cf9dab53df19283af01cd71adb6f4800bc30183 Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Mon, 16 Sep 2024 11:45:48 -0600 Subject: [PATCH] Update deps --- .github/workflows/build.yml | 5 +++-- package.json | 28 ++++++++++++++-------------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ed615f4..2306d3fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,7 @@ jobs: node: - 18 - 20 + - 22 fail-fast: false name: Testing Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} @@ -38,8 +39,8 @@ jobs: with: node-version: ${{ matrix.node }} - run: npm install - - run: npm run build -- --arch x64 - - run: npm run build -- --arch arm64 + - run: npm run build -- --arch=x64 + - run: npm run build -- --arch=arm64 - run: npm test - uses: actions/upload-artifact@v4 if: github.ref_type == 'tag' && matrix.node == 20 diff --git a/package.json b/package.json index eeefdce5..0829104a 100644 --- a/package.json +++ b/package.json @@ -29,26 +29,26 @@ "vendor/tree-sitter/lib/src/*" ], "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.1" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { - "@types/node": "^20.11.30", + "@types/node": "^22.5.5", "chai": "^4.3.10", "jest": "^29.7.0", - "mocha": "^8.4.0", - "node-gyp": "^10.1.0", + "mocha": "^10.7.3", + "node-gyp": "^10.2.0", "prebuildify": "^6.0.1", "tmp": "^0.2.3", - "tree-sitter-c": "^0.21.0", - "tree-sitter-embedded-template": "^0.21.0", - "tree-sitter-html": "^0.20.3", - "tree-sitter-java": "^0.21.0", - "tree-sitter-javascript": "^0.21.2", - "tree-sitter-json": "^0.21.0", - "tree-sitter-python": "^0.21.0", - "tree-sitter-ruby": "^0.21.0", - "tree-sitter-rust": "^0.21.0" + "tree-sitter-c": "^0.23.0", + "tree-sitter-embedded-template": "^0.23.0", + "tree-sitter-html": "^0.23.0", + "tree-sitter-java": "^0.23.2", + "tree-sitter-javascript": "^0.23.0", + "tree-sitter-json": "^0.23.0", + "tree-sitter-python": "^0.23.2", + "tree-sitter-ruby": "^0.23.0", + "tree-sitter-rust": "^0.23.0" }, "scripts": { "install": "node-gyp-build",