#!/usr/bin/env node import { join } from 'path' import spawn from 'cross-spawn' import arg from 'arg' ['react', 'react-dom'].forEach((dependency) => { try { // When 'npm link' is used it checks the clone location. Not the project. require.resolve(dependency) } catch (err) { // tslint:disable-next-line console.warn(`The module '${dependency}' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install --save ${dependency}'`) } }) const defaultCommand = 'dev' const commands = [ 'build', 'start', 'export', defaultCommand, ] const args = arg({ // Types '--version': Boolean, '--help': Boolean, '--inspect': Boolean, // Aliases '-v': '--version', '-h': '--help', }, { permissive: true, }) // Version is inlined into the file using taskr build pipeline if (args['--version']) { // tslint:disable-next-line console.log(`Next.js v${process.env.__NEXT_VERSION}`) process.exit(0) } // Check if we are running `next ` or `next` const foundCommand = commands.includes(args._[0]) // Makes sure the `next --help` case is covered // This help message is only showed for `next --help` if (!foundCommand && args['--help']) { // tslint:disable-next-line console.log(` Usage $ next Available commands ${commands.join(', ')} Options --version, -p Version number --inspect Enable the Node.js inspector --help, -h Displays this message For more information run a command with the --help flag $ next build --help `) process.exit(0) } const nodeArguments: string[] = [] if (args['--inspect']) { // tslint:disable-next-line console.log('Passing "--inspect" to Node.js') nodeArguments.push('--inspect') } const command = foundCommand ? args._[0] : defaultCommand const forwardedArgs = foundCommand ? args._.slice(1) : args._ // Make sure the `next --help` case is covered if (args['--help']) { forwardedArgs.push('--help') } const defaultEnv = command === 'dev' ? 'development' : 'production' process.env.NODE_ENV = process.env.NODE_ENV || defaultEnv const bin = join(__dirname, 'next-' + command) const startProcess = () => { const proc = spawn('node', [...nodeArguments, bin, ...forwardedArgs], { stdio: 'inherit' }) proc.on('close', (code, signal) => { if (code !== null) { process.exit(code) } if (signal) { if (signal === 'SIGKILL') { process.exit(137) } // tslint:disable-next-line console.log(`got signal ${signal}, exiting`) process.exit(signal === 'SIGINT' || signal === 'SIGTERM' ? 0 : 1) } process.exit(0) }) proc.on('error', (err) => { // tslint:disable-next-line console.error(err) process.exit(1) }) return proc } let proc = startProcess() function wrapper() { if (proc) { proc.kill() } } process.on('SIGINT', wrapper) process.on('SIGTERM', wrapper) process.on('exit', wrapper) if (command === 'dev') { const {CONFIG_FILE} = require('next-server/constants') const {watchFile} = require('fs') watchFile(`${process.cwd()}/${CONFIG_FILE}`, (cur: any, prev: any) => { if (cur.size > 0 || prev.size > 0) { // tslint:disable-next-line console.log(`\n> Found a change in ${CONFIG_FILE}, restarting the server...`) // Don't listen to 'close' now since otherwise parent gets killed by listener proc.removeAllListeners('close') proc.kill() proc = startProcess() } }) }