File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 6262 "next-no-sourcemaps" : " echo 'No longer supported. Use `pnpm next --disable-source-maps` instead'; exit 1;" ,
6363 "clean-trace-jaeger" : " node scripts/rm.mjs test/integration/basic/.next && TRACE_TARGET=JAEGER pnpm next build test/integration/basic" ,
6464 "debug" : " cross-env NEXT_PRIVATE_LOCAL_DEV=1 NEXT_TELEMETRY_DISABLED=1 node --inspect --trace-deprecation --enable-source-maps packages/next/dist/bin/next" ,
65+ "debug-brk" : " cross-env NEXT_PRIVATE_LOCAL_DEV=1 NEXT_TELEMETRY_DISABLED=1 node --inspect-brk --trace-deprecation --enable-source-maps packages/next/dist/bin/next" ,
6566 "postinstall" : " node scripts/git-configure.mjs && node scripts/install-native.mjs" ,
6667 "version" : " pnpm install --no-frozen-lockfile && IS_PUBLISH=yes ./scripts/check-pre-compiled.sh && git add ." ,
6768 "prepare" : " husky" ,
Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ async function createNextInstall({
152152
153153 const scripts = {
154154 debug : `NEXT_PRIVATE_SKIP_CANARY_CHECK=1 NEXT_TELEMETRY_DISABLED=1 NEXT_TEST_NATIVE_DIR=${ process . env . NEXT_TEST_NATIVE_DIR } node --inspect --trace-deprecation --enable-source-maps node_modules/next/dist/bin/next` ,
155+ 'debug-brk' : `NEXT_PRIVATE_SKIP_CANARY_CHECK=1 NEXT_TELEMETRY_DISABLED=1 NEXT_TEST_NATIVE_DIR=${ process . env . NEXT_TEST_NATIVE_DIR } node --inspect-brk --trace-deprecation --enable-source-maps node_modules/next/dist/bin/next` ,
155156 ...packageJson . scripts ,
156157 }
157158
You can’t perform that action at this time.
0 commit comments