Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
node-version-file: package.json

- name: Install packages
run: npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22, 24]
node-version: [24, 25]
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand All @@ -28,5 +28,5 @@ jobs:
run: npm run build

- name: Bundle
if: ${{ matrix.node-version == 22 }}
if: ${{ matrix.node-version == 24 }}
run: npm run bundle
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

2 changes: 2 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tools]
node = "24"
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"google-cloud-sql": "dist/index.js"
},
"engines": {
"node": ">= 20"
"node": "24"
},
"scripts": {
"clean": "rimraf dist bin",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"bundle": "npm run build && pkg . --targets node18-linux,node18-macos,node18-win --out-dir bin",
"build": "tsc",
"bundle": "npm run build && pkg . --targets node24-linux,node24-macos,node24-win --out-dir bin",
"exec:dev": "ts-node src/index.ts",
"exec:dist": "node dist/index.js",
"lint": "eslint .",
Expand Down Expand Up @@ -51,17 +51,17 @@
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@stylistic/eslint-plugin": "5.6.1",
"@tsconfig/node22": "22.0.5",
"@tsconfig/node24": "24.0.3",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/lodash": "4.17.21",
"@types/memoizee": "0.4.12",
"@types/node": "22.19.0",
"@types/node": "24.10.6",
"@types/shelljs": "0.8.17",
"@types/update-notifier": "5.1.0",
"@yao-pkg/pkg": "6.11.0",
"eslint": "9.39.2",
"husky": "9.1.7",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "6.1.2",
"semantic-release": "25.0.2",
Expand Down
5 changes: 0 additions & 5 deletions tsconfig.build.json

This file was deleted.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"extends": "@tsconfig/node24/tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
Expand Down