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
|
#!/usr/bin/env node
|
||||||
import { resolve, join } from 'path'
|
import { resolve, join } from 'path'
|
||||||
import parseArgs from 'minimist'
|
import parseArgs from 'minimist'
|
||||||
import { existsSync, readFileSync } from 'fs'
|
import { existsSync } from 'fs'
|
||||||
import Server from '../server'
|
import Server from '../server'
|
||||||
import { printAndExit } from '../lib/utils'
|
import { printAndExit } from '../lib/utils'
|
||||||
|
|
||||||
|
@ -65,9 +65,14 @@ srv.start(argv.port, argv.hostname)
|
||||||
const pkgAppPath = require('find-up').sync('package.json', {
|
const pkgAppPath = require('find-up').sync('package.json', {
|
||||||
cwd: dir
|
cwd: dir
|
||||||
})
|
})
|
||||||
const appPackage = JSON.parse(readFileSync(pkgAppPath, 'utf8'))
|
const appPackage = require(pkgAppPath)
|
||||||
const nextScript = Object.entries(appPackage.scripts).find(scriptLine => scriptLine[1] === 'next')
|
if (appPackage.scripts) {
|
||||||
if (nextScript) errorMessage += `\nUse \`npm run ${nextScript[0]} -- -p <some other port>\`.`
|
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)
|
console.error(errorMessage)
|
||||||
} else {
|
} else {
|
||||||
console.error(err)
|
console.error(err)
|
||||||
|
|
Loading…
Reference in a new issue