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.
14 lines
286 B
14 lines
286 B
#!/usr/bin/env node
|
|
const shelljs = require('shelljs');
|
|
const exec = shelljs.exec;
|
|
|
|
const childWatch = exec('npm run watch', {
|
|
async: true
|
|
});
|
|
childWatch.stdout.on('data', data => {
|
|
if (data.indexOf('Hash') === 0) {
|
|
exec('npm run demos-web', {
|
|
async: true
|
|
});
|
|
}
|
|
});
|
|
|