Skip to content

Commit 0e7244f

Browse files
committed
Remove --disable-warning=ExperimentalWarning flag
1 parent 0037647 commit 0e7244f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"test": "tap",
5757
"update": "run-p --aggregate-output update:* && run-s update:longtask:**",
5858
"update:deps": "npx --yes npm-check-updates",
59-
"update:longtask:data:npm": "node --disable-warning=ExperimentalWarning ./scripts/update-data-npm.js"
59+
"update:longtask:data:npm": "node ./scripts/update-data-npm.js"
6060
},
6161
"devDependencies": {
6262
"@biomejs/biome": "^1.9.4",

scripts/update-data-npm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void (async () => {
3939
// Node 23 introduces 'node:sea', 'node:sqlite', 'node:test', and 'node:test/reporters'
4040
// that have no unprefixed version so we skip them.
4141
.filter(n => !n.startsWith('node:'))
42-
.toSorted(naturalCompare)
42+
.sort(naturalCompare)
4343
const allThePackageNames = [
4444
...new Set([
4545
// Load the 43.1MB names.json file of '[email protected]'

0 commit comments

Comments
 (0)