-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
63 lines (56 loc) · 1.92 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
const path = require('path');
class MyPlugin {
apply(compiler) {
compiler.hooks.emit.tap('MyPlugin', (compilation) => {
// Get the bundled file name
const fileName = Object.keys(compilation.assets)[0];
// Get the bundled file content
const fileContent = compilation.assets[fileName].source();
const header = `;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.formula = factory();
}(this, (function () {`;
const footer = ` return Formula;
})));`;
// Updated file content with custom content added
const updatedFileContent = header + '\n\n' + fileContent + '\n\n' + footer;
// Replace the bundled file content with updated content
compilation.assets[fileName] = {
source: () => updatedFileContent,
size: () => updatedFileContent.length,
};
});
}
}
module.exports = {
target: ['web', 'es5'],
entry: './src/formula.js',
mode: 'production',
output: {
filename: 'formula.js',
library: 'Formula'
},
optimization: {
minimize: true
},
devServer: {
static : {
directory : path.join(__dirname, "/dist")
},
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
"Access-Control-Allow-Headers": "X-Requested-With, content-type, Authorization"
},
port: 3007,
devMiddleware: {
publicPath: "https://localhost:3000/dist/",
},
hot: "only",
},
plugins: [
new MyPlugin(),
],
stats: { warnings:false },
};