diff --git a/bench/nested-deps-app-router/package.json b/bench/nested-deps-app-router/package.json index ead6a2d7b7fd..b6663ecedd36 100644 --- a/bench/nested-deps-app-router/package.json +++ b/bench/nested-deps-app-router/package.json @@ -2,10 +2,10 @@ "name": "bench-nested-deps-app-router", "scripts": { "prepare-bench": "rimraf components && fuzzponent -d 2 -s 206 -o components", - "dev": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next dev", + "dev-application": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next dev", "build-application": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next build", "start": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next start", - "dev-nocache": "rimraf .next && pnpm dev", + "dev-nocache": "rimraf .next && pnpm dev-application", "dev-cpuprofile-nocache": "rimraf .next && cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 node --cpu-prof ../../node_modules/next/dist/bin/next", "build-nocache": "rimraf .next && pnpm build-application" }, diff --git a/bench/nested-deps/package.json b/bench/nested-deps/package.json index dd4484b99618..2decc5ba1c34 100644 --- a/bench/nested-deps/package.json +++ b/bench/nested-deps/package.json @@ -2,10 +2,10 @@ "name": "bench-nested-deps", "scripts": { "prepare-bench": "rimraf components && fuzzponent -d 2 -s 206 -o components", - "dev": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next dev", + "dev-application": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next dev", "build-application": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next build", "start": "cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 next start", - "dev-nocache": "rimraf .next && pnpm dev", + "dev-nocache": "rimraf .next && pnpm dev-application", "dev-cpuprofile-nocache": "rimraf .next && cross-env NEXT_PRIVATE_LOCAL_WEBPACK=1 node --cpu-prof ../../node_modules/next/dist/bin/next", "build-nocache": "rimraf .next && pnpm build-application" },