-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.worker.config.js
88 lines (77 loc) · 1.78 KB
/
webpack.worker.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
/**
* Build and bundle the shell web worker and overwrite the file generated by the default
* labextension build process that does not build it as a web worker.
*/
const fs = require('fs');
const path = require('path');
const rules = [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'source-map-loader'
},
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/
}
];
const resolve = {
fallback: {
fs: false,
child_process: false,
crypto: false
},
extensions: ['.js', '.ts']
};
const labextensionStaticDir = path.resolve(
__dirname,
'jupyterlite_terminal',
'labextension',
'static'
);
/**
* Return the filename that the default labextension build process uses for the web worker.
*/
function getOutputFilename(devMode) {
const lsProd = fs
.readdirSync(labextensionStaticDir)
.filter(f => f.endsWith('js'));
const regex = /extends (\w+)\.BaseShellWorker/;
let outputFilename = '';
for (file of lsProd) {
const content = fs.readFileSync(path.join(labextensionStaticDir, file));
if (regex.test(content)) {
outputFilename = file;
break;
}
}
if (outputFilename == '') {
console.error(
'ERROR: Failed to find JavaScript web worker file to replace'
);
process.exit(1);
}
console.log('JavaScript web worker file to replace:' + outputFilename);
return outputFilename;
}
module.exports = env => {
const devMode = env.dev ?? false;
const config = {
entry: './src/worker.ts',
output: {
filename: getOutputFilename(devMode),
path: labextensionStaticDir
},
module: {
rules
},
mode: devMode ? 'development' : 'production',
target: 'webworker',
resolve
};
if (devMode) {
config.devtool = 'source-map';
}
return [config];
};