forked from KawashiroNitori/Anubis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.babel.js
197 lines (182 loc) · 6.32 KB
/
webpack.config.babel.js
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
import _ from 'lodash';
import path from 'path';
import webpack from 'webpack';
import HappyPack from 'happypack';
import fs from 'fs-extra';
import DummyPlugin from './scripts/build/webpackDummyPlugin.js';
import DummyOutputPlugin from './scripts/build/webpackDummyOutputPlugin.js';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import postcssAutoprefixerPlugin from 'autoprefixer';
import stylusRupturePlugin from 'rupture';
import responsiveCutoff from './anubis/ui/responsive.inc.js';
const extractProjectCSS = new ExtractTextPlugin({ filename: 'anubis.css', allChunks: true });
const extractVendorCSS = new ExtractTextPlugin({ filename: 'vendors.css', allChunks: true });
function root(fn) {
return path.resolve(__dirname, fn);
}
function ResponsivePlugin() {
return style => {
style.define('responsiveCutoff', responsiveCutoff, true);
};
}
export default function (env = {}) {
const config = {
context: root('anubis/ui'),
devtool: 'source-map',
watchOptions: {
aggregateTimeout: 1000,
},
entry: {
anubis: './Entry.js',
},
output: {
path: root('anubis/.static_build'),
publicPath: '/', // overwrite in entry.js
filename: '[name].js',
chunkFilename: '[name].chunk.js',
},
resolve: {
modules: [root('node_modules'), root('anubis/ui')],
extensions: ['.js', ''],
},
module: {
preLoaders: [
{
test: /\.js?$/,
loader: 'eslint',
exclude: /node_modules\//,
}
],
loaders: [
{
// fonts
test: /\.(svg|ttf|eot|woff|woff2)$/,
loader: 'file',
query: {
name: '[path][name].[ext]?[sha512:hash:base62:7]',
},
},
{
// images
test: /\.(png|jpg)$/,
loader: 'url',
query: {
limit: 4024,
name: '[path][name].[ext]?[sha512:hash:base62:7]',
}
},
{
// ES2015 scripts
test: /\.js$/,
exclude: /node_modules\//,
loader: 'babel',
query: {
...require('./package.json').babelForProject,
cacheDirectory: !_.isError(_.attempt(() => fs.ensureDirSync(root('.cache/babel'))))
? root('.cache/babel')
: false,
},
happy: { id: 'js' },
},
{
// fix pickadate loading
test: /pickadate/,
loader: 'imports',
query: { define: '>false' },
},
{
// project stylus stylesheets
test: /\.styl$/,
loader: env.watch
? ['style', 'css', 'postcss', 'stylus?resolve url']
: extractProjectCSS.extract(['css', 'postcss', 'stylus?resolve url'])
,
},
{
// vendors stylesheets
test: /\.css$/,
include: /node_modules\//,
loader: env.watch
? ['style', 'css']
: extractVendorCSS.extract(['css'])
,
},
{
// project stylesheets
test: /\.css$/,
exclude: /node_modules\//,
loader: env.watch
? ['style', 'css']
: extractProjectCSS.extract(['css', 'postcss'])
,
},
{
// json
test: /\.json$/,
loader: 'json',
},
],
},
plugins: [
env.watch
? new DummyPlugin()
: new HappyPack({
id: 'js',
tempDir: root('.cache/happypack'),
})
,
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
katex: 'katex',
}),
// don't include locale files in momentjs
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
// extract stylesheets into a standalone file
env.watch
? new DummyOutputPlugin('vendors.css')
: extractVendorCSS
,
env.watch
? new DummyOutputPlugin('anubis.css')
: extractProjectCSS
,
// extract 3rd-party JavaScript libraries into a standalone file
env.watch
? new DummyOutputPlugin('vendors.js')
: new webpack.optimize.CommonsChunkPlugin({
name: 'vendors',
filename: 'vendors.js',
minChunks: (module, count) => (
module.resource
&& module.resource.indexOf(root('anubis/ui/')) === -1
&& module.resource.match(/\.js$/)
),
})
,
// copy static assets
new CopyWebpackPlugin([{ from: root('anubis/ui/static') }]),
// copy emoji images
new CopyWebpackPlugin([{ from: root('node_modules/emojify.js/dist/images/basic'), to: 'img/emoji/' }]),
],
postcss: () => [postcssAutoprefixerPlugin],
stylus: {
use: [
ResponsivePlugin(),
stylusRupturePlugin(),
],
import: [
'~common/common.inc.styl',
]
},
eslint: {
configFile: root('anubis/ui/.eslintrc.yml'),
},
stats: {
children: false,
},
};
return config;
};