mirror of
https://github.com/overte-org/overte.git
synced 2025-05-06 17:10:00 +02:00
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']) |