combine webpack build configs
This commit is contained in:
@ -17,9 +17,7 @@ module.exports = function (grunt) {
|
|||||||
|
|
||||||
grunt.task.run([
|
grunt.task.run([
|
||||||
'clean:dist',
|
'clean:dist',
|
||||||
'webpack:browser_client',
|
'webpack:browser_clients',
|
||||||
'webpack:angular_client',
|
|
||||||
'webpack:jquery_client',
|
|
||||||
'uglify:dist',
|
'uglify:dist',
|
||||||
'concat:dist_banners'
|
'concat:dist_banners'
|
||||||
]);
|
]);
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
browser_client: require('../../webpack_config/browser'),
|
browser_clients: [
|
||||||
angular_client: require('../../webpack_config/angular'),
|
require('../../webpack_config/browser'),
|
||||||
jquery_client: require('../../webpack_config/jquery'),
|
require('../../webpack_config/angular'),
|
||||||
|
require('../../webpack_config/jquery'),
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user