cra-build-watch
Version:
A script for create-react-app that writes development builds to the disk
17 lines (11 loc) • 466 B
JavaScript
/* eslint-disable no-process-exit */
const spawn = require('cross-spawn');
// require it here to handle --help before checking prerequisites
require('../utils/cliHandler');
const [, , ...restArgs] = process.argv;
const scriptPath = require.resolve('../scripts');
const scriptArgs = [scriptPath, ...restArgs];
const result = spawn.sync('node', scriptArgs, { stdio: 'inherit', cwd: process.cwd() });
process.exit(result.status);
;