-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
87 lines (84 loc) · 2.06 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
// Copyright 2019 MIPT-MIPS
/*
* (Type docs)
* @author Eric Konks [email protected]
*/
const path = require('path');
const fs = require('fs')
const HTMLWebpackPlugin = require('html-webpack-plugin');
const MiniCSSExtractPlugin = require('mini-css-extract-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
const SRC_PATH = path.resolve(__dirname, 'src');
const BUILD_PATH = path.resolve(__dirname, 'build');
module.exports = env => {
try {
fs.mkdirSync(BUILD_PATH);
} catch (EEXIST) {
// continue regardless of error
}
if (!fs.existsSync(env.path)) {
const err = `Couldn't open file ${env.path}`
throw(new Error(err));
}
return {
context: SRC_PATH,
entry: {
main: './index.js',
},
output: {
path: BUILD_PATH,
filename: 'bundle.js'
},
devtool: "source-map",
module: {
rules: [
{
test: /\.js$/,
include: SRC_PATH,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/env']
}
}
},
{
test: /\.css$/,
include: SRC_PATH,
use: [
{ loader: MiniCSSExtractPlugin.loader },
{ loader: 'css-loader' },
]
},
{
test: /shadow\.css$/,
include: SRC_PATH,
use: [
{ loader: 'css-loader' },
]
},
]
},
plugins: [
new MiniCSSExtractPlugin({
filename: 'css/index.css'
}),
new HTMLWebpackPlugin({
hash: 'true',
inject: 'false',
template: './index.html',
filename: 'index.html',
chunks: ['main']
}),
new webpack.DefinePlugin({
'process.env': {
'path': JSON.stringify(path.resolve(BUILD_PATH, 'topology.json')),
}
}),
new CopyPlugin([
{ from : path.resolve(env.path), to: BUILD_PATH }
])
]
}
};