-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
webpack.config.js
113 lines (107 loc) · 3.93 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
const path = require('path');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
// monkey patch crypto module to not use deprecated md4 hash algorithm,
// which is removed in OpenSSL 3.0
// https://github.com/webpack/webpack/issues/13572#issuecomment-923736472
const crypto = require("crypto");
const crypto_orig_createHash = crypto.createHash;
crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm);
function updateForkTsCheckerPluginSettings(plugins) {
for (const plugin of plugins) {
if (plugin.constructor.name === 'ForkTsCheckerWebpackPlugin') {
plugin.async = false;
return plugins;
}
}
return plugins;
}
function fixEntrypoint(entry) {
return {
...entry,
// overwrite module entrypoint
// workaround for https://github.com/grafana/grafana/issues/21785 / https://github.com/systemjs/systemjs/issues/2117
module: ['@grafana/ui', entry.module],
};
}
function enableReactMonacoEditor(externals) {
return externals.filter(e => e !== "react-monaco-editor");
}
function excludeExtractionLoaderForMonaco(rules) {
const MONACO_DIR = path.resolve(__dirname, './node_modules/monaco-editor');
for (const rule of rules) {
if (rule.test.toString() === /(dark|light)\.css$/.toString()) {
rule.exclude = [...rule.exclude || [], MONACO_DIR];
}
}
return rules;
}
module.exports.getWebpackConfig = (config, options) => {
return {
...config,
externals: enableReactMonacoEditor(config.externals),
entry: fixEntrypoint(config.entry),
output: {
...config.output,
// required for dynamic imports
publicPath: 'public/plugins/performancecopilot-pcp-app/',
},
module: {
...config.module,
rules: excludeExtractionLoaderForMonaco(config.module.rules),
},
plugins: [
...updateForkTsCheckerPluginSettings(config.plugins),
new MonacoWebpackPlugin({
filename: 'monaco-[name].worker.js',
languages: [],
features: [ // enable same features as https://github.com/grafana/grafana/blob/master/scripts/webpack/webpack.common.js
'!accessibilityHelp',
'bracketMatching',
'caretOperations',
'!clipboard',
'!codeAction',
'!codelens',
'!colorDetector',
'!comment',
'!contextmenu',
'!coreCommands',
'!cursorUndo',
'!dnd',
'!find',
'folding',
'!fontZoom',
'!format',
'!gotoError',
'!gotoLine',
'!gotoSymbol',
'!hover',
'!iPadShowKeyboard',
'!inPlaceReplace',
'!inspectTokens',
'!linesOperations',
'!links',
'!multicursor',
'parameterHints',
'!quickCommand',
'!quickOutline',
'!referenceSearch',
'!rename',
'!smartSelect',
'!snippets',
'suggest',
'!toggleHighContrast',
'!toggleTabFocusMode',
'!transpose',
'!wordHighlighter',
'!wordOperations',
'!wordPartOperations',
],
}),
],
optimization: {
...config.optimization,
chunkIds: 'named', // required for dynamic imports in production build
moduleIds: 'deterministic', // required for reproducible builds
}
};
};