mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Don’t read package.scripts if there’s no scripts defined (#5168)
This commit is contained in:
parent
34cb05a860
commit
e763a60840
13
bin/next-dev
13
bin/next-dev
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env node
|
||||
import { resolve, join } from 'path'
|
||||
import parseArgs from 'minimist'
|
||||
import { existsSync, readFileSync } from 'fs'
|
||||
import { existsSync } from 'fs'
|
||||
import Server from '../server'
|
||||
import { printAndExit } from '../lib/utils'
|
||||
|
||||
|
@ -65,9 +65,14 @@ srv.start(argv.port, argv.hostname)
|
|||
const pkgAppPath = require('find-up').sync('package.json', {
|
||||
cwd: dir
|
||||
})
|
||||
const appPackage = JSON.parse(readFileSync(pkgAppPath, 'utf8'))
|
||||
const nextScript = Object.entries(appPackage.scripts).find(scriptLine => scriptLine[1] === 'next')
|
||||
if (nextScript) errorMessage += `\nUse \`npm run ${nextScript[0]} -- -p <some other port>\`.`
|
||||
const appPackage = require(pkgAppPath)
|
||||
if (appPackage.scripts) {
|
||||
const nextScript = Object.entries(appPackage.scripts).find(scriptLine => scriptLine[1] === 'next')
|
||||
if (nextScript) {
|
||||
errorMessage += `\nUse \`npm run ${nextScript[0]} -- -p <some other port>\`.`
|
||||
}
|
||||
}
|
||||
|
||||
console.error(errorMessage)
|
||||
} else {
|
||||
console.error(err)
|
||||
|
|
Loading…
Reference in a new issue