rsnext/bench/nested-deps-app-router/package.json
Zack Tanner 40b3226352
modify bench scripts to not conflict with dev task (#54600)
I don't believe these benches were intended to run as part of the monorepo `dev` task. This renames the `dev` task to `dev-application` similar to `build-application` (which I assume was aliased for a similar reason)

Fixes #54592
2023-08-26 22:58:00 +00:00

19 lines
793 B
JSON

{
"name": "bench-nested-deps-app-router",
"scripts": {
"prepare-bench": "rimraf components && fuzzponent -d 2 -s 206 -o components",
"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-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"
},
"devDependencies": {
"fuzzponent": "workspace:*",
"cross-env": "^7.0.3",
"pretty-ms": "^7.0.1",
"rimraf": "^3.0.2",
"next": "workspace:*"
}
}