mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Remove config from bin/next since it's unused (#3496)
* No need to get the config here * Remove unused functions
This commit is contained in:
parent
c23046dc79
commit
29c4035eb5
9
bin/next
9
bin/next
|
@ -1,10 +1,7 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
import { join, resolve } from 'path'
|
||||
import { join } from 'path'
|
||||
import { spawn } from 'cross-spawn'
|
||||
import { watchFile } from 'fs'
|
||||
import pkg from '../../package.json'
|
||||
import getConfig from '../server/config'
|
||||
|
||||
if (pkg.peerDependencies) {
|
||||
Object.keys(pkg.peerDependencies).forEach(dependency => {
|
||||
|
@ -88,10 +85,10 @@ const startProcess = () => {
|
|||
}
|
||||
|
||||
let proc = startProcess()
|
||||
const { pagesDirectory = resolve(process.cwd(), 'pages') } = getConfig(process.cwd())
|
||||
|
||||
if (cmd === 'dev') {
|
||||
watchFile(`${resolve(pagesDirectory, '..')}/next.config.js`, (cur, prev) => {
|
||||
const {watchFile} = require('fs')
|
||||
watchFile(`${process.cwd()}/next.config.js`, (cur, prev) => {
|
||||
if (cur.size > 0 || prev.size > 0) {
|
||||
console.log('\n> Found a change in next.config.js, restarting the server...')
|
||||
// Don't listen to 'close' now since otherwise parent gets killed by listener
|
||||
|
|
Loading…
Reference in a new issue