-
Notifications
You must be signed in to change notification settings - Fork 828
/
webpack.config.cjs
100 lines (88 loc) · 2.71 KB
/
webpack.config.cjs
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
const path = require('path');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
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 = `if (! jSuites && typeof(require) === 'function') {
var jSuites = require('jsuites');
}
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.jspreadsheet = factory();
}(this, (function () {`;
const footer = ` return jspreadsheet;
})));`;
// 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,
};
});
}
}
let isProduction = process.env.NODE_ENV === 'production';
let dependencies = {};
if (isProduction) {
dependencies = {
jsuites: "''",
}
}
const webpack = {
target: ['web', 'es5'],
entry: isProduction ? './src/index' : './src/test.js',
mode: isProduction ? 'production' : 'development',
externals: dependencies,
output: {
filename: 'index.js',
library: 'jspreadsheet'
},
optimization: {
minimize: true
},
devServer: {
static : {
directory : path.join(__dirname, "/public")
},
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/",
},
hot: "only",
},
plugins: [],
module: {
rules: [
{
test: /\.css$/,
use: [
isProduction ? MiniCssExtractPlugin.loader : "style-loader",
"css-loader"
],
}
],
},
stats: {
warnings: false
},
};
if (isProduction) {
webpack.plugins.push(new MyPlugin());
webpack.plugins.push(
new MiniCssExtractPlugin({
filename: 'jspreadsheet.css'
})
);
}
module.exports = webpack;