Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
15 lines
No EOL
304 B
JavaScript
15 lines
No EOL
304 B
JavaScript
var gulp = require('gulp');
|
|
var exec = require('child_process').exec;
|
|
|
|
gulp.task('build', function() {
|
|
exec('npm run build', function(msg){
|
|
console.log(msg);
|
|
});
|
|
});
|
|
|
|
gulp.task('watch', function() {
|
|
gulp.watch('client/*.jsx', ['build']);
|
|
});
|
|
|
|
|
|
gulp.task('default', ['build', 'watch']) |