-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwebpack.config.prod.js
97 lines (84 loc) · 1.98 KB
/
webpack.config.prod.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
var config = require('./webpack.config.common'),
// glob = require('glob'),
MiniCssExtractPlugin = require('mini-css-extract-plugin');
var distFolder = 'lib';
var extractCSS = new MiniCssExtractPlugin({ fallback: 'style-loader', filename: 'index/style.css', allChunks: true });
// var entries = glob
// .sync('./components/*/index.ts', { ignore: ['./stories/*.tsx', './legacy/*.tsx', '**/*.spec.tsx', '**/*.spec.ts'] })
// .map(function (entry) {
// //gets the module paths in components containing index.ts and assigns them to an object
// var obj = {};
// var key = entry.split('/');
// key = key[key.length - 2];
// obj[key] = entry;
// return obj;
// })
// .reduce(function (acc, curr) {
// for (var i in curr) {
// acc[i] = curr[i];
// }
// return acc;
// }, {});
// var entries['index'] = './index/index.ts';
config.entry = './components/index/index.ts';
config.output = {
path: __dirname + '/' + distFolder,
filename: 'index/index.js',
library: 'mooskin',
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: 'this',
publicPath: '../'
};
config.module.rules.push(
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
'babel-loader',
{
loader: 'ts-loader',
options: {
compilerOptions: {
declaration: true,
declarationDir: './' + distFolder
}
}
}
]
},
{
test: /\.css$/,
exclude: /node_modules/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
localIdentName: '[local]___[hash:base64:5]',
modules: true
}
},
'postcss-loader'
]
},
{
test: /\.css$/,
exclude: /\*/,
include: /node_modules/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
// importLoaders: 1,
}
}
// 'postcss-loader'
]
}
);
config.plugins.push(extractCSS);
config.externals = ['react', 'react-dom'];
module.exports = config;