add worker bin to run_dev.js
This commit is contained in:
Родитель
f9c054a5ca
Коммит
7cf3e1fbef
|
@ -7,11 +7,22 @@
|
|||
const cp = require('child_process');
|
||||
const path = require('path');
|
||||
|
||||
const mkdirp = require('mkdirp');
|
||||
const rimraf = require('rimraf');
|
||||
|
||||
process.env.NODE_ENV = 'dev';
|
||||
|
||||
var child = cp.fork(path.join(__dirname, '..', 'bin', 'server.js'));
|
||||
child.on('exit', process.exit);
|
||||
|
||||
|
||||
child = cp.fork(path.join(__dirname, '..', 'bin', 'static.js'));
|
||||
child = cp.fork(path.join(__dirname, '..', 'bin', 'worker.js'));
|
||||
child.on('exit', process.exit);
|
||||
|
||||
|
||||
mkdirp.sync(path.join(__dirname, '..', 'var', 'public'));
|
||||
child = cp.fork(path.join(__dirname, '..', 'bin', '_static.js'));
|
||||
child.on('exit', process.exit);
|
||||
|
||||
process.on('exit', function() {
|
||||
rimraf.sync(path.join(__dirname, '..', 'var', 'public'));
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче