Skip to content

Commit 50ff48a

Browse files
committedNov 7, 2024·
chore: remove extra NODE_OPTIONS from scripts
1 parent e648406 commit 50ff48a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,15 @@
8282
"dev:start": "node playground/.output/server/index.mjs",
8383
"lint": "eslint --cache . && prettier -c .",
8484
"lint:fix": "eslint --cache --fix . && prettier -w .",
85-
"nitro": "NODE_OPTIONS=\"--enable-source-maps\" jiti ./src/cli/index.ts",
85+
"nitro": "jiti ./src/cli/index.ts",
8686
"prepack": "pnpm build",
8787
"gen-mirror": "pnpm jiti scripts/gen-mirror.ts",
8888
"gen-presets": "pnpm jiti scripts/gen-presets.ts",
8989
"release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
9090
"stub": "unbuild --stub",
91-
"test": "pnpm lint && pnpm vitest-es run --silent",
91+
"test": "pnpm lint && pnpm vitest run",
9292
"test:fixture:types": "pnpm stub && jiti ./test/scripts/gen-fixture-types.ts && cd test/fixture && tsc --noEmit",
93-
"test:types": "tsc --noEmit && pnpm test:fixture:types",
94-
"vitest-es": "NODE_OPTIONS=\"--enable-source-maps --experimental-vm-modules\" vitest"
93+
"test:types": "tsc --noEmit && pnpm test:fixture:types"
9594
},
9695
"resolutions": {
9796
"nitropack": "link:.",

0 commit comments

Comments
 (0)
Please sign in to comment.