You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
353 B
11 lines
353 B
const { spawn } = require('child_process'); |
|
|
|
const webpack = spawn('webpack', ['--config', 'build/webpack.dev.conf.js'], { |
|
stdio: 'inherit', |
|
shell: true |
|
}); |
|
//webpack.stdout.pipe(process.stdout); |
|
|
|
const nodemon = spawn('nodemon', ['../dist/server', '--watch', 'server.js']); |
|
nodemon.stdout.pipe(process.stdout); |
|
nodemon.stderr.pipe(process.stderr);
|
|
|