File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ var webpack = require('webpack'),
1717 */
1818function common ( loaderRoot , options ) {
1919 /* jshint validthis:true */
20- var vendorEntry = path . resolve ( options . appDir , 'test .js' ) ;
20+ var vendorEntry = path . resolve ( options . appDir , 'vendor .js' ) ;
2121
2222 return this
2323 . merge ( {
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ function app(options) {
2626 addConditionals : require ( './add/conditionals' ) ,
2727 addMinification : require ( './add/minification' )
2828 } )
29- . addCommon ( path . resolve ( __dirname , '..' , 'node_modules' ) , options )
3029 . addClean ( buildDir )
30+ . addCommon ( path . resolve ( __dirname , '..' , 'node_modules' ) , options )
3131 . addComposition ( composition )
3232 . addConditionals ( {
3333 TEST : false ,
@@ -36,7 +36,7 @@ function app(options) {
3636 } )
3737 . addMinification ( ! options . unminified )
3838 . merge ( {
39- name : [ 'app' , composition . namespace ] . join ( '::' ) ,
39+ name : [ 'app' , composition . namespace ] . filter ( Boolean ) . join ( '::' ) ,
4040 output : {
4141 path : path . resolve ( buildDir )
4242 }
You can’t perform that action at this time.
0 commit comments