Skip to content

Commit fe70d6d

Browse files
committed
chore: simplify next dev script
1 parent 7aa6bbe commit fe70d6d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"license": "Apache-2.0",
66
"scripts": {
7-
"dev": "next dev",
7+
"dev": "next",
88
"build": "next build",
99
"start": "next start",
1010
"typecheck": "tsc --noEmit",

scripts/guard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ if (rootPkg) {
133133
if (nextPkg) {
134134
const scripts = nextPkg.scripts ?? {};
135135
const requiredScripts: Record<string, string> = {
136-
dev: "next dev",
136+
dev: "next",
137137
build: "next build",
138138
start: "next start",
139139
typecheck: "tsc --noEmit",

0 commit comments

Comments
 (0)