-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
135 lines (131 loc) · 4.08 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
124
125
126
127
128
129
130
131
132
133
134
135
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const WorkboxPlugin = require('workbox-webpack-plugin')
const WebpackPwaManifest = require('webpack-pwa-manifest')
const {ModifySourcePlugin} = require('modify-source-webpack-plugin');
const CopyPlugin = require("copy-webpack-plugin");
const fs = require('fs');
const webpack = require('webpack');
const packageJson = require('./package.json');
module.exports = (env, argv) => {
let config = {
entry: {
main: './src/index.js',
xsl: './lib/saxon/saxon-js/SaxonJS2.js',
},
mode: 'development',
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, 'dist'),
clean: {
keep: /^\.gitkeep$/,
},
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html'
}),
new ModifySourcePlugin({
rules: [
{
test: /SaxonJS2\.js$/,
modify: src => src.replace(/,xd:function\(n\)\{return/, ',xd:function(n){return true;return')
}
]
}),
new CopyPlugin({
patterns: [
{
from: "node_modules/jq-web/jq.wasm.wasm",
to: "jq.wasm.wasm"
},
],
}),
new webpack.DefinePlugin({
VERSION: JSON.stringify(packageJson.version),
}),
],
optimization: {
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all',
},
},
},
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
{
test: /\.html$/i,
loader: 'html-loader',
},
],
},
resolve: {
fallback: {
crypto: false,
stream: false,
fs: false,
util: false,
path: false,
}
},
devServer: {
static: {
directory:path.join(__dirname, 'dist'),
watch: true,
},
watchFiles: {
paths: ['src/index.html'],
options: {
usePolling: false,
},
}
},
}
if ('production' === argv.mode) {
config.mode = 'production'
}
if(true !== argv.env.WEBPACK_SERVE) {
config.plugins.push(
new WorkboxPlugin.GenerateSW({
// these options encourage the ServiceWorkers to get in there fast
// and not allow any straggling "old" SWs to hang around
clientsClaim: true,
skipWaiting: true,
maximumFileSizeToCacheInBytes: 99999999999999,
}),
new WebpackPwaManifest({
publicPath: '/',
name: 'JQ and XSL mapper',
short_name: 'Data mapper',
description: 'A tool to map xml and json using JQ and XSL',
background_color: '#ffffff',
theme_color: '#ffffff',
icons: [
{
src: path.resolve('src/icon.svg'),
sizes: [150]
},
{
src: path.resolve('src/icon-512.png'),
sizes: [512]
},
]
})
);
}
return config;
};