-
Notifications
You must be signed in to change notification settings - Fork 33
/
webpack.config.production.js
125 lines (119 loc) · 4.11 KB
/
webpack.config.production.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
const path = require('path');
const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const PACKAGE_ROOT_PATH = process.cwd();
const PACKAGE = require(path.join(PACKAGE_ROOT_PATH, 'package.json'));
/** Webpack configuration for building the plugin bundle (pdbe-molstar-plugin.js, pdbe-molstar.css).
* Also builds the light-skin version (pdbe-molstar-light-plugin.js (empty), pdbe-molstar-light.css). */
const molstarConfig = {
entry: {
[PACKAGE.name]: path.resolve(__dirname, 'lib/index.js'),
[PACKAGE.name + '-light']: path.resolve(__dirname, 'lib/styles/pdbe-molstar-light.scss'),
},
output: {
filename: `[name]-plugin.js`,
path: path.resolve(__dirname, 'build/'),
},
target: 'web',
module: {
rules: [
{
test: /\.(html|ico)$/,
use: [
{
loader: 'file-loader',
options: { name: '[name].[ext]' },
},
],
},
{
test: /\.(css|scss)$/,
use: [
MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: { sourceMap: false } },
{ loader: 'sass-loader', options: { sourceMap: false } },
],
},
],
},
plugins: [
new webpack.DefinePlugin({
'process.env.DEBUG': JSON.stringify(process.env.DEBUG),
__MOLSTAR_DEBUG_TIMESTAMP__: webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true),
}),
new MiniCssExtractPlugin({
filename: `[name].css`,
}),
],
resolve: {
modules: ['node_modules', path.resolve(__dirname, 'lib/')],
fallback: {
fs: false,
crypto: require.resolve('crypto-browserify'),
path: require.resolve('path-browserify'),
stream: require.resolve('stream-browserify'),
vm: require.resolve('vm-browserify'),
},
},
watchOptions: {
aggregateTimeout: 750,
},
};
/** Webpack configuration for building a part of the web-component bundle,
* which will be concatenated with the plugin bundle to build the full
* web-component bundle (pdbe-molstar-component.js) */
const componentConfig = {
entry: path.resolve(__dirname, `src/web-component/index.js`),
output: {
filename: `${PACKAGE.name}-component-build.js`,
path: path.resolve(__dirname, 'lib/'),
},
target: 'web',
resolve: {
extensions: ['.js'],
},
externals: {
PDBeMolstarPlugin: 'PDBeMolstarPlugin',
},
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', { loader: 'css-loader', options: { importLoaders: 1 } }],
},
{
test: /.(jpg|jpeg|png|svg)$/,
use: ['url-loader'],
},
{
test: /\.(js)$/,
exclude: function excludeCondition(path) {
const nonEs5SyntaxPackages = ['lit-element', 'lit-html'];
// DO transpile these packages
if (nonEs5SyntaxPackages.some(pkg => path.match(pkg))) {
return false;
}
// Ignore all other modules that are in node_modules
if (path.match(/node_modules\\/)) {
return true;
} else return false;
},
use: {
loader: 'babel-loader',
options: {
babelrc: false,
plugins: [
[
'@babel/plugin-transform-runtime',
{
regenerator: true,
},
],
],
},
},
},
],
},
};
module.exports = [molstarConfig, componentConfig];