-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
72 lines (70 loc) · 2.11 KB
/
webpack.config.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
const webpack = require('webpack');
const path = require('path');
const os = require('os');
const HappyPack = require('happypack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const happyThreadPool = HappyPack.ThreadPool({
size: Math.min(os.cpus().length, 4)
});
const isProd = process.env.NODE_ENV === 'production'
const extractCSS = isProd || process.env.TARGET === 'development'
const cssLoaders = [
// https://github.com/webpack-contrib/mini-css-extract-plugin#user-content-advanced-configuration-example
// TODO: remove style-loader: https://github.com/webpack-contrib/mini-css-extract-plugin/issues/34
extractCSS ? MiniCssExtractPlugin.loader : 'style-loader',
{ loader: 'css-loader', options: { sourceMap: !isProd } },
{ loader: 'postcss-loader', options: { sourceMap: !isProd } }
]
const scssLoaders = [
...cssLoaders,
{ loader: 'sass-loader', options: {
implementation: require('sass'),
fiber: require('fibers'),
indentedSyntax: false
} }
]
module.exports = {
entry: {
'vue-material-design-ripple': './src/directives/ripple/index.ts',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'MyLib',
umdNamedDefine: true
},
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
devtool: 'source-map',
plugins: [
new HappyPack({
id: 'scripts',
threadPool: happyThreadPool,
loaders: [
'babel-loader',
{
loader: 'ts-loader',
options: {happyPackMode: true}
}
]
}),
new MiniCssExtractPlugin({
filename: 'vue-material-design-ripple.css'
})
],
module: {
rules: [
{
test: /\.[jt]s$/,
use: 'happypack/loader?id=scripts',
exclude: /node_modules/
},
{
test: /\.scss$/,
use: scssLoaders
}
]
}
}