forked from knightburton/iotjscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
123 lines (115 loc) · 2.51 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
113
114
115
116
117
118
119
120
121
122
123
const webpack = require('webpack');
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const source_path = path.resolve(__dirname, 'src');
const build_path = path.resolve(__dirname, 'dist');
const module_path = path.resolve(__dirname, 'node_modules');
const html_title = 'IoT.JS Code';
const monaco_editor_path = 'monaco-editor/min/vs';
const resolve = {
alias: {
c3$: 'c3/c3.min',
d3$: 'd3/d3.min',
vs$: monaco_editor_path,
jquery$: 'jquery/src/jquery',
jqueryui$: 'jquery-ui-dist/jquery-ui.min',
thead$: 'floatthead',
filesaver$: 'file-saver/FileSaver.min',
bootstrap$: 'bootstrap/dist/js/bootstrap.min',
},
};
const plugins = [
new HtmlWebpackPlugin({
filename: 'index.html',
template: `${source_path}/index.ejs`,
title: html_title,
}),
new webpack.ProvidePlugin({
$: 'jquery',
}),
new CopyWebpackPlugin([
{
from: `${module_path}/${monaco_editor_path}`,
to: `${build_path}/vs`,
},
]),
new ExtractTextPlugin('css/[name].css'),
new CleanWebpackPlugin(['dist']),
];
const rules = [
{
test: /\.(png|svg|jpg|gif)$/,
use: [{
loader: 'file-loader',
options: {
name: 'images/[hash].[ext]',
},
},
]},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'url-loader',
options: {
name: 'fonts/[hash].[ext]',
},
}],
}, {
test: /\.(eot|ttf|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [{
loader: 'file-loader',
options: {
name: 'fonts/[hash].[ext]',
},
}],
},
{
test: /\.(scss|css)$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader!sass-loader',
}),
},
{
test: /\.js$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env'],
},
},
},
{
test: /\.ejs$/,
loader: 'ejs-compiled-loader',
},
];
const config = {
context: source_path,
entry: {
app: './index.js',
},
output: {
path: build_path,
filename: 'js/[name].[chunkhash].bundle.js',
chunkFilename: 'js/[name].bundle.js',
},
module: {
rules,
},
plugins,
resolve,
node: {
fs: 'empty',
},
devServer: {
compress: true,
inline: true,
port: 5005,
},
};
module.exports = config;