-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.coffee
307 lines (256 loc) · 9.69 KB
/
webpack.config.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
###
This file exports the webpack configuration object. It is designed to be
imported into the app's webpack.config.coffee where it can be hacked if changes
are needed.
###
# Autoprefixer config
# https://github.com/ai/browserslist#queries
autoprefixerBrowsers = [
'last 2 versions'
'ie >= 9'
]
# Inspect how webpack is being run
minify = '-p' in process.argv # Compiling for production
hmr = '--hot' in process.argv # "Hot module replacement" / using webpack-dev-server
# Dependencies
_ = require 'lodash'
webpack = require 'webpack'
autoprefixer = require 'autoprefixer'
moment = require 'moment'
ExtractText = require 'extract-text-webpack-plugin'
Notify = require 'webpack-notifier'
# Clean = require 'clean-webpack-plugin'
AssetsPlugin = require('assets-webpack-plugin')
# ##############################################################################
# Setup - General config
# ##############################################################################
config =
# Generate source maps. If using HMR, the sourcemap can be cheaper (less
# CPU required) and should be inline. Othwerise, generate external, full
# sourcemaps.
devtool: if hmr then 'inline-cheap-module-eval-source-map' else 'source-map'
# Set the dir to look for entry files
context: "#{process.cwd()}/resources/assets"
# Build one bundle for public site and one for admin. If additional front end
# entry points are added, consider using CommonsChunkPlugin to move shared
# dependencies out.
entry:
app: './boot.coffee'
# Save the entry points to the public/dist directory. And give any chunks
# hashed names when minifying so they can be long term cashed. The entry
# JS doesn't need this as it gets unique URLs via PHP.
output:
path: "#{process.cwd()}/public/dist"
publicPath: if hmr then 'http://localhost:8080/dist/' else '/dist/'
filename: if minify then '[name].[hash:8].js' else '[name].js'
chunkFilename: if minify then '[id].[hash:8].js' else '[id].js'
# Setup properties that are set later (With less indentation)
module: {}
# Configure what shows up in the terminal output
stats:
children: false # Hides the "extract-text-webpack-plugin" messages
assets: true
colors: true
version: false
hash: false
timings: true
chunks: false
chunkModules: false
# ##############################################################################
# Resolve - Where to find files
# ##############################################################################
config.resolve =
# Allows JS modules to be found without using relative paths. And for SCSS
# modules to be resolved relative to the assets dir with a "~" prefix.
root: config.context
# Look for modules in the vendor directory as well as npm's directory. The
# vendor directory is used for third party modules that are committed to the
# repo, like things that can't be installed via npm. For example, Modernizr.
modulesDirectories: ['workbench', 'vendor', 'node_modules']
# Add coffee to the list of optional extensions
extensions: ['', '.js', '.coffee', '.vue']
# Aliases for common libraries
alias:
velocity: 'velocity-animate'
underscore: 'lodash'
# ##############################################################################
# Loaders - File transmogrifying
# ##############################################################################
config.module.loaders = [
# Coffeescript #
{ test: /\.coffee$/, loader: 'coffee-loader' }
# Jade #
# Jade-loader reutrns a function. Apply-loader executes the function so we
# get a string back.
{ test: /\.jade$/, loader: 'apply-loader!jade-loader' }
# Haml #
{ test: /\.haml$/, loader: 'haml-loader' }
# HTML #
{ test: /\.html$/, loader: 'html-loader' }
# Images #
# If files are smaller than the limit, becomes a data-url. Otherwise,
# copies the files into dist and returns the hashed URL. Also runs imagemin.
{
test: /\.(png|gif|jpe?g|svg)$/
loaders: [
'url?limit=10000&name=img/[hash:8].[ext]'
'img?progressive=true'
]
}
# Fonts #
# Not using the url-loader because serving multiple formats of a font would
# mean inlining multiple formats that are unncessary for a given user.
{
test: /\.(eot|ttf|woff|woff2)$/
loader: 'file-loader?name=fonts/[hash:8].[ext]'
}
# JSON #
{ test: /\.json$/, loader: 'json-loader' }
# CSS #
{
test: /\.css$/
loader: if hmr then 'style-loader!css-loader' else ExtractText.extract 'css-loader'
}
# Stylus #
# This also uses the ExtractText to generate a new CSS file, rather
# than writing script tags to the DOM. This was required to get the CSS
# sourcemaps exporting dependably. Note the "postcss" loader, that is
# adding autoprefixer in.
{
test: /\.styl$/
loader:
if hmr
then [
'style-loader'
'css-loader?sourceMap'
'postcss-loader'
'stylus-loader?sourceMap'
# 'prepend-string-loader?string[]=@require "~definitions.styl";'
].join('!')
else ExtractText.extract [
'css-loader?sourceMap'
'postcss-loader'
'stylus-loader?sourceMap'
# 'prepend-string-loader?string[]=@require "~definitions.styl";'
].join('!')
}
# Sass #
# Including sass for Decoy support
{
test: /\.scss$/
loader:
if hmr
then [
'style-loader'
'css-loader?sourceMap'
'postcss-loader'
'sass-loader?sourceMap'
'import-glob-loader'
].join('!')
else ExtractText.extract [
'css-loader?sourceMap'
'postcss-loader'
'sass-loader?sourceMap'
'import-glob-loader'
].join('!')
}
# jQuery #
# This adds jquery to window globals so that it's useable from the console
# but also so that it can be found by jQuery plugins, like Velocity. This
# "test" syntax is used to find the file in node_modules, the "expose"
# loader's examples ("require.resolve") don't work because node is looking
# in the app node_modules.
{ test: /jquery\.js$/, loader: 'expose-loader?$!expose?jQuery' }
# jQuery plugins #
# Make sure jQuery is loaded before Velocity
{
test: /(velocity)\.js$/,
loader: 'imports-loader?$=jquery'
}
# Modernizr #
# Fix Modernizr's exported module. Even though it has a "module.exports" it
# doesn't let the detected properties get queried
{ test: /modernizr\.js$/, loader: 'exports-loader?window.Modernizr'}
# Vue #
{ test: /\.vue$/, loader: 'vue-loader' }
]
# ############################################################################
# Plugins - Register extra functionality
# ############################################################################
config.plugins = [
# Required config for ExtractText to tell it what to name css files. Setting
# "allChunks" so that CSS referenced in chunked code splits still show up
# in here. Otherwise, we would need webpack to DOM insert the styles on
# which doesn't play nice with sourcemaps.
new ExtractText (if minify then '[name].[hash:8].css' else '[name].css'),
allChunks: true
# Show growl style notifications if not running via HMR. Wit HMR, page updates
# automatically, so don't need to watch for compile be done.
new Notify alwaysNotify: !hmr
# Add some branding to all compiled JS files
new webpack.BannerPlugin "📝 Placehold.Club 💾 #{moment().format('M.D.YY')} 👍"
# Empty the build directory whenever webpack starts up, but doesn't run on
# watch updates. Has the added benefit of clearing out the dist directory
# when running the dev server.
# new Clean ['public/dist'], { root: process.cwd() }
# Output JSON config if the compiled files which is parsed by Laravel to
# create script and link tags.
new AssetsPlugin
filename: 'manifest.json'
path: config.output.path
prettyPrint: true
# Provide common utils to all modules so they don't need to be expliclity
# required.
new webpack.ProvidePlugin
$: 'jquery'
jquery: 'jquery'
_: 'lodash'
Vue: 'vue'
Modernizr: 'modernizr'
Velocity: 'velocity'
]
# Minify only (`webpack -p`) plugins.
if minify then config.plugins = config.plugins.concat [
# Turn off warnings during minifcation. They aren't particularly helpfull.
new webpack.optimize.UglifyJsPlugin compress: warnings: false
# Make small ids
new webpack.optimize.OccurenceOrderPlugin()
# Try and remove duplicate modules
new webpack.optimize.DedupePlugin()
]
# ##############################################################################
# Misc config - Mostly loader options
# ##############################################################################
_.assign config,
# Configure autoprefixer using browserslist rules
postcss: -> [ autoprefixer( browsers: autoprefixerBrowsers ) ]
# Increase precision of math in SASS for Bootstrap
# https://github.com/twbs/bootstrap-sass#sass-number-precision
sassLoader: precision: 10
# Customize the Vue loader
vue:
# Use the same autoprefixer rules
autoprefixer: browsers: autoprefixerBrowsers
loaders:
# Support the css precompilers being explicitly defined. This should be
# identical to the webpack loaders EXCEPT with postcss removed, because
# the Vue loader is doing that automatically. Also, the prepending needs
# to be explicity done here because there is no matching test on filetype.
# https://github.com/hedefalk/atom-vue/issues/5
stylus:
if hmr
then [
'style-loader'
'css-loader?sourceMap'
'stylus-loader?sourceMap'
# 'prepend-string-loader?string[]=@require "~definitions.styl";'
].join('!')
else ExtractText.extract [
'css-loader?sourceMap'
'stylus-loader?sourceMap'
# 'prepend-string-loader?string[]=@require "~definitions.styl";'
].join('!')
# ##############################################################################
# Export
# ##############################################################################
module.exports = config