-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
executable file
·112 lines (110 loc) · 3.45 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
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
const path = require('path');
const findImports = require('find-imports');
const stylusLoader = require('stylus-loader');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const nib = require('nib');
const webpack = require('webpack');
const pkg = require('./package.json');
const babelConfig = require('./babel.config');
const publicname = pkg.name.replace(/^@\w+\//, ''); // Strip out "@trendmicro/" from package name
const banner = [
publicname + ' v' + pkg.version,
'(c) ' + new Date().getFullYear() + ' Trend Micro Inc.',
pkg.license,
pkg.homepage
].join(' | ');
const localClassPrefix = publicname.replace(/^react-/, ''); // Strip out "react-" from publicname
module.exports = {
mode: 'development',
devtool: 'source-map',
entry: {
[publicname]: path.resolve(__dirname, 'src/index.js')
},
output: {
path: path.join(__dirname, 'lib'),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
externals: []
.concat(findImports(['src/**/*.{js,jsx}'], { flatten: true }))
.concat(Object.keys(pkg.peerDependencies))
.concat(Object.keys(pkg.dependencies)),
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
options: babelConfig
},
{
test: /\.styl$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
modules: true,
localIdentName: `${localClassPrefix}---[local]---[hash:base64:5]`,
camelCase: true,
importLoaders: 1
}
},
'stylus-loader'
]
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
},
{
test: /\.(png|jpg|svg)$/,
loader: 'url-loader'
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff'
}
},
{
test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
NODE_ENV: JSON.stringify('production')
}
}),
new stylusLoader.OptionsPlugin({
default: {
// nib - CSS3 extensions for Stylus
use: [nib()],
// no need to have a '@import "nib"' in the stylesheet
import: ['~nib/lib/nib/index.styl']
}
}),
new MiniCssExtractPlugin({
filename: '../dist/[name].css',
}),
new webpack.BannerPlugin(banner)
],
resolve: {
extensions: ['.js', '.json', '.jsx']
}
};