moved Webpack bundle directory out of /static/js because it contains more than just JS files
This commit is contained in:
parent
6b2222a3ec
commit
c9fa22b093
6 changed files with 24 additions and 9 deletions
|
@ -25,8 +25,13 @@ module.exports = function(grunt) {
|
|||
},
|
||||
},
|
||||
build: {
|
||||
src: ['../static/lib/**/*.js', '../static/js/**/*.js', '../static/dist/template-cache.js',
|
||||
'!../static/js/**/*.spec.js'],
|
||||
src: [
|
||||
'../static/lib/**/*.js',
|
||||
'../static/js/**/*.js',
|
||||
'../static/build/*.js',
|
||||
'../static/dist/template-cache.js',
|
||||
'!../static/js/**/*.spec.js'
|
||||
],
|
||||
dest: '../static/dist/<%= pkg.name %>.js'
|
||||
}
|
||||
},
|
||||
|
|
Reference in a new issue