Skip option skips build

v1.18.x
pichalite 8 years ago
parent 5ca931a52c
commit bb3c8b910a

@ -135,14 +135,14 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
if (grunt.option('skip')) {
grunt.registerTask('default', ['watch:serverUpdated']);
} else {
grunt.registerTask('default', ['watch']);
}
env.NODE_ENV = 'development';
if (grunt.option('skip')) {
worker = fork('app.js', args, {
env: env
});
} else {
initWorker = fork('app.js', initArgs, {
env: env
});
@ -152,6 +152,7 @@ module.exports = function (grunt) {
env: env
});
});
}
grunt.event.on('watch', update);
};

Loading…
Cancel
Save