enable less sourcemaps, add cleanup for npm cmds run with --prefix

This commit is contained in:
Leigh Johnson
2016-08-19 13:12:31 -04:00
parent 8893f8278a
commit 25fa05da81
4 changed files with 11 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ module.exports = function(grunt) {
// browser-sync + websocket proxy
grunt.registerTask('dev', [
'clean:tmp',
'clean:static',
'concurrent:dev',
'browserSync:http',
@@ -28,6 +29,8 @@ module.exports = function(grunt) {
]);
grunt.registerTask('release', [
'clean:tmp',
'clean:static',
'webpack:prod',
'concurrent:prod',
]);