@@ -5,20 +5,22 @@ var autoprefixer = require('autoprefixer');
5
5
6
6
var ExtractTextPlugin = require ( 'extract-text-webpack-plugin' ) ;
7
7
8
- require ( 'babel-polyfill' ) ;
9
-
10
8
// note: we prefer using includes over excludes, as this will give us finer
11
9
// control over what is actually transpiled
12
10
var appDirectory = path . resolve ( __dirname , 'app' ) ;
13
11
var includes = [ appDirectory ] ;
14
12
15
- module . exports = {
13
+ // specify the configuration to use for developnet
14
+ var developConfig = {
15
+ // use the dev server included with webpack for live-reload development
16
+ // note: that the port and host can be changed here if require
16
17
devServer : {
17
18
contentBase : '/tmp/public' ,
18
19
historyApiFallback : true ,
19
20
noInfo : true ,
20
21
host : '0.0.0.0' ,
21
22
port : 3000 ,
23
+ // proxy api calls to a container named api
22
24
proxy : {
23
25
'/api/**' : {
24
26
target : 'http://api' ,
@@ -40,7 +42,9 @@ module.exports = {
40
42
performance : {
41
43
hints : false
42
44
} ,
43
- devtool : '#eval-source-map' ,
45
+ devtool : '#cheap-module-eval-source-map' ,
46
+
47
+ // define the entry point of the application
44
48
entry : {
45
49
app : [ path . resolve ( __dirname , 'app/main.js' ) ]
46
50
} ,
@@ -57,79 +61,117 @@ module.exports = {
57
61
loader : 'vue-loader' ,
58
62
options : {
59
63
loaders : {
60
- stylus : ExtractTextPlugin . extract ( {
61
- use : [ 'css-loader' , 'stylus-loader' ] ,
62
- fallback : 'vue-style-loader'
63
- } )
64
+ stylus : 'vue-style-loader!css-loader!stylus-loader' ,
65
+ styl : 'vue-style-loader!css-loader!stylus-loader' ,
66
+ js : 'babel-loader'
64
67
}
65
68
} ,
66
69
include : includes
70
+ } , {
71
+ // parse javascript files (use babel to transpile)
72
+ // note that presets and plugins must be defined as plugin
73
+ // settings (at least for now)
74
+ test : / \. j s $ / ,
75
+ loader : 'babel-loader' ,
76
+ include : includes
77
+ } , {
78
+ // parse stylus styles
79
+ test : / \. s t y l $ / ,
80
+ use : [ 'style-loader' , 'css-loader' , 'stylus-loader' ] ,
81
+ include : includes
67
82
} , {
68
83
// parse css styles
69
84
test : / \. c s s $ / ,
70
85
use : [ 'style-loader' , 'css-loader' , 'postcss-loader' ] ,
71
86
include : includes
87
+ }
88
+ ]
89
+ } ,
90
+ resolve : {
91
+ alias : {
92
+ // resolve vue to non minified bundle for development
93
+ vue : 'vue/dist/vue.common.js'
94
+ }
95
+ }
96
+ } ;
97
+
98
+ // specify configuration to be used to build for production
99
+ var buildConfig = {
100
+ // add babel polyfill to support older browsers
101
+ entry : {
102
+ app : [ 'babel-polyfill' , path . resolve ( __dirname , 'app/main.js' ) ]
103
+ } ,
104
+ // use the same configuration for the output as in dev mode
105
+ output : developConfig . output ,
106
+ // generate source maps for the code
107
+ devtool : '#source-map' ,
108
+ // specify the module configuration
109
+ module : {
110
+ rules : [
111
+ {
112
+ // parse vue components
113
+ test : / \. v u e $ / ,
114
+ loader : 'vue-loader' ,
115
+ options : {
116
+ loaders : {
117
+ stylus : ExtractTextPlugin . extract ( {
118
+ use : [ 'css-loader' , 'stylus-loader' ] ,
119
+ fallback : 'vue-style-loader'
120
+ } ) ,
121
+ styl : ExtractTextPlugin . extract ( {
122
+ use : [ 'css-loader' , 'stylus-loader' ] ,
123
+ fallback : 'vue-style-loader'
124
+ } ) ,
125
+ js : 'babel-loader'
126
+ }
127
+ } ,
128
+ include : includes
72
129
} , {
73
130
// parse javascript files (use babel to transpile)
131
+ // note that presets and plugins must be defined as plugin
132
+ // settings (at least for now)
74
133
test : / \. j s $ / ,
75
134
loader : 'babel-loader' ,
76
- query : {
77
- presets : [ 'es2015' , 'stage-0' ] ,
78
- plugins : [ 'transform-runtime' ]
79
- } ,
80
135
include : includes
81
- } , {
136
+ } , {
82
137
// parse stylus styles
83
138
test : / \. s t y l $ / ,
84
139
loader : ExtractTextPlugin . extract ( {
85
140
use : [ 'css-loader' , 'stylus-loader' ] ,
86
141
fallback : 'style-loader'
87
142
} ) ,
88
143
include : includes
144
+ } , {
145
+ // parse css styles
146
+ test : / \. c s s $ / ,
147
+ loader : ExtractTextPlugin . extract ( {
148
+ use : [ 'css-loader' , 'postcss-loader' ] ,
149
+ fallback : 'style-loader'
150
+ } ) ,
151
+ include : includes
89
152
}
90
153
]
91
154
} ,
92
- resolve : {
93
- alias : {
94
- // resolve vue to non minified bundle for development
95
- vue : 'vue/dist/vue.js'
96
- }
97
- } ,
155
+ // define plugins to use
98
156
plugins : [
99
- // extract all styles into one single css file
100
- new ExtractTextPlugin ( {
101
- filename : 'app.css' ,
102
- allChunks : true
103
- } )
104
- ]
105
- } ;
106
-
107
-
108
- if ( process . env . NODE_ENV === 'production' ) {
109
- module . exports . devtool = '#source-map' ;
110
-
111
- // use babel polyfill for production builds (for ie support)
112
- module . exports . entry = {
113
- app : [ 'babel-polyfill' , path . resolve ( __dirname , 'app/main.js' ) ]
114
- } ,
115
-
116
- // resolve vue to the minified module
117
- module . exports . resolve = { } ,
118
-
119
- // http://vue-loader.vuejs.org/en/workflow/production.html
120
- module . exports . plugins = ( module . exports . plugins || [ ] ) . concat ( [
121
157
new webpack . DefinePlugin ( {
122
158
'process.env' : {
123
159
NODE_ENV : '"production"'
124
160
}
125
161
} ) ,
162
+ // extract all styles into one single css file
163
+ new ExtractTextPlugin ( {
164
+ filename : 'app.css' ,
165
+ allChunks : true
166
+ } ) ,
126
167
// use babel to transpile js code
127
168
new webpack . LoaderOptionsPlugin ( {
128
169
minimize : true ,
129
170
debug : false ,
130
171
options : {
131
172
// babel needs to set the context path here!
132
173
context : __dirname ,
174
+ // babel presets and plugins need to be specified here
133
175
babel : {
134
176
presets : [ 'es2015' , 'stage-0' ] ,
135
177
plugins : [ 'transform-runtime' ]
@@ -154,5 +196,19 @@ if (process.env.NODE_ENV === 'production') {
154
196
comments : false
155
197
}
156
198
} )
157
- ] ) ;
199
+ ]
200
+ } ;
201
+
202
+
203
+ // override some build config to extract the text
204
+
205
+ // use specific configuration depending on build mode
206
+ if ( process . env . NODE_ENV !== 'production' ) {
207
+ console . log ( '-- using development config' ) ;
208
+ module . exports = developConfig ;
209
+
210
+ } else {
211
+ console . log ( '-- using production config' ) ;
212
+ module . exports = buildConfig ;
213
+
158
214
}
0 commit comments