Skip to content

Commit 3580913

Browse files
committed
chore: update devEngines to align with apps
Apps now use Node 24 and NPM 11 as thats the active LTS now. This allows us to remove the experimental flag from linter script as in Node 24 this is enabled by default. Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent 1901d5e commit 3580913

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

package-lock.json

Lines changed: 10 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"build": "npm run build:cleanup && npm run build:source",
3838
"build:cleanup": "tsc --build --clean",
3939
"build:source": "tsc",
40-
"lint": "npx --node-options='--experimental-strip-types' eslint --flag unstable_native_nodejs_ts_config",
41-
"lint:fix": "npx --node-options='--experimental-strip-types' eslint --flag unstable_native_nodejs_ts_config --fix",
40+
"lint": "eslint --flag unstable_native_nodejs_ts_config",
41+
"lint:fix": "eslint --flag unstable_native_nodejs_ts_config --fix",
4242
"prerelease:format-changelog": "node build/format-changelog.mjs",
4343
"test": "vitest run"
4444
},
@@ -73,12 +73,12 @@
7373
"packageManager": [
7474
{
7575
"name": "npm",
76-
"version": "^10"
76+
"version": "^11.3.0"
7777
}
7878
],
7979
"runtime": {
8080
"name": "node",
81-
"version": "^22.10"
81+
"version": "^24.3.0"
8282
}
8383
}
8484
}

0 commit comments

Comments
 (0)