forked from CalderaWP/Caldera-Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.clients.js
executable file
·295 lines (278 loc) · 6.4 KB
/
webpack.clients.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/**
* This file defines the configuration for development and dev-server builds.
*/
const fs = require("fs");
const { unlinkSync } = fs;
const path = require("path");
const { join } = path;
const onExit = require("signal-exit");
const webpack = require("webpack");
const ManifestPlugin = require("webpack-manifest-plugin");
const TerserJSPlugin = require("terser-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const defaultConfig = require("./node_modules/@wordpress/scripts/config/webpack.config");
const DependencyExtractionWebpackPlugin = require("@wordpress/dependency-extraction-webpack-plugin");
/**
* Is build production or dev?
*
* @since 1.8.6
*
* @type {boolean}
*/
const isProduction = "production" === process.env.NODE_ENV;
const isTest = "testing" === process.env.NODE_ENV;
console.log(`${isTest ? "isTest" : "Is Not Test"}`);
console.log(`Building for ${isProduction ? "Production" : "Development"}`);
/**
* The names of each entry point
*
* @since 1.8.6
*
* @type {string[]}
*/
const entryPointNames = ["admin", "privacy", "render", "form-builder"];
/**
* The webpack configuration for "entry"
*
* @since 1.8.6
*
* @see https://webpack.js.org/configuration/entry-context#entry
*/
const entry = entryPointNames.reduce((memo, entryPointName) => {
memo[entryPointName] = "./clients/" + entryPointName + "/index.js";
return memo;
}, {});
/**
* Compiler plugin for (S)CSS
*
* @since 1.8.6
*
* @see https://github.com/webpack-contrib/mini-css-extract-plugin
*
* @type {MiniCssExtractPlugin}
*/
const cssPlugin = new MiniCssExtractPlugin({
filename: isProduction
? "../clients/[name]/build/style.min.css"
: "../clients/[name]/build/style.[hash].css",
chunkFilename: isProduction
? "../clients/[name]/build/[id].css"
: "../clients/[name]/build/[id].[hash].css",
});
/**
* Babel loader rule for (S)CSS
*
* @since 1.8.6
*
* @see https://github.com/webpack-contrib/mini-css-extract-plugin
*
* @type {{test: RegExp, use: *[]}}
*/
const cssRule = {
test: /\.(sa|sc|c)ss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
//hmr: process.env.NODE_ENV === 'development',
},
},
"css-loader",
"sass-loader",
],
};
/**
* The port that webpack dev server uses
*
* @since 1.8.6
*
* @type {number}
*/
const port = parseInt(process.env.PORT, 10) || 3030;
/**
* The URL that webpack dev server uses
*
* @since 1.8.6
*
* @type {string}
*/
const publicPath = `https://localhost:${port}/`;
/**
* The dev server
*
* @see https://webpack.js.org/configuration/dev-server/
*
* @since 1.8.6
*
*/
const devServer = {
https: true,
headers: {
"Access-Control-Allow-Origin": "*",
},
hotOnly: true,
watchOptions: {
aggregateTimeout: 300,
},
writeToDisk: true, //False by default, so 404 on intial load
disableHostCheck: true,
stats: {
all: false,
assets: true,
colors: true,
errors: true,
performance: true,
timings: true,
warnings: true,
},
port,
};
/**
* The webpack configuration for "output"
*
* @since 1.8.6
*
* @see https://webpack.js.org/configuration/output/
*
* @type {{libraryTarget: string, filename: string, library: string[]}}
*/
const output = {
//filename: '../clients/[name]/build/index.min.js',
filename: isProduction
? "../clients/[name]/build/index.min.js"
: "../clients/[name]/build/index.[hash].js",
library: ["calderaForms", "[name]"],
libraryTarget: "this",
hotUpdateChunkFilename: "../dist/caldera-hot-load/[name].[hash].js",
hotUpdateMainFilename: "../dist/caldera-hot-load/hot-update.json",
};
/**
* The webpack configuration for "optimization"
*
* @since 1.8.6
*
* @see https://webpack.js.org/configuration/optimization/
*
* @type {{}}
*/
const optimization = isProduction
? {
minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
}
: {
minimize: false,
};
/**
* The webpack configuration for "externals"
*
* @since 1.8.6
*
* @see https://webpack.js.org/configuration/externals/
*
* @type {{}}
*/
const externals = isTest
? {}
: {
jquery: "jQuery",
react: "React",
};
// Setup external for each entry point
entryPointNames.forEach((entryPointName) => {
externals["@/calderaForms" + entryPointName] = {
this: ["calderaForms", entryPointName],
};
});
/**
* The webpack configuration for "plugins"
*
* @since 1.8.6
*
* @seehttps://webpack.js.org/configuration/plugins
*/
let plugins = [
//CSS/SASS
cssPlugin,
//default
...defaultConfig.plugins,
];
//Remove default dependency extractor
plugins.filter(
(plugin) => plugin.constructor.name !== "DependencyExtractionWebpackPlugin"
);
//Add dependency extractor back, with different options.
plugins.push(
new DependencyExtractionWebpackPlugin({
injectPolyfill: true,
//By default php file is generated, we want JSON
outputFormat: "json",
})
);
//Add more plugins in development
if (!isProduction) {
plugins = [
...plugins,
// Generate a manifest file which contains a mapping of all asset filenames
// to their corresponding output file so that PHP can pick up their paths.
new ManifestPlugin({
fileName: "asset-manifest.json",
writeToFileEmit: true,
publicPath,
generate: (seed, files) =>
files.reduce((manifest, { name, path }) => {
//remove ".." in paths written to asset manifest
return {
...manifest,
[name]: path.replace("/../clients/", "/clients/"),
};
}, seed),
}),
/**
// Enable HMR.
new webpack.HotModuleReplacementPlugin({
multiStep: true,
}), **/
];
}
// Clean up manifest on exit.
onExit(() => {
try {
unlinkSync("./build/asset-manifest.json");
} catch (e) {
// Silently ignore unlinking errors: so long as the file is gone, that is good.
}
});
/**
* webpack config used for compiling clients that are not the blocks
*
* @since 1.8.6
*/
module.exports = {
mode: isProduction ? "production" : "development",
entry,
output,
optimization,
//externals,
devtool: "cheap-module-source-map",
context: process.cwd(),
devServer,
module: {
strictExportPresence: true,
rules: [
{
// Process JS with Babel.
test: /\.js$/,
exclude: /(node_modules|clients\/editor)/,
loader: require.resolve("babel-loader"),
options: {
// Cache compilation results in ./node_modules/.cache/babel-loader/
cacheDirectory: true,
presets: [require("@calderajs/babel-preset-calderajs")],
},
},
cssRule,
],
},
plugins,
};