-
-
Notifications
You must be signed in to change notification settings - Fork 428
/
Copy pathwebpack.base.js
100 lines (93 loc) · 2.78 KB
/
webpack.base.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
// @ts-check
'use strict';
const chmodr = require('chmodr');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('node:path');
/**
* @param {string} target the name of the `npm` package to resolve.
*/
function resolvePackagePath(target, baseDir = __dirname) {
const resolvePackageJsonPath = require('resolve-package-path');
const packageJsonPath = resolvePackageJsonPath(target, baseDir);
if (!packageJsonPath) {
throw new Error(
`Could not resolve package '${target}'. Base dir: ${baseDir}`
);
}
return path.join(packageJsonPath, '..'); // one level up to locate the package folder
}
// restore file permissions after webpack copy
// https://github.com/webpack-contrib/copy-webpack-plugin/issues/35#issuecomment-1407280257
class PermissionsPlugin {
/**
* @param {string} targetPath
*/
constructor(targetPath) {
this.targetPath = targetPath;
}
/**
* @param {import('webpack').Compiler} compiler
*/
apply(compiler) {
compiler.hooks.afterEmit.tap('PermissionsPlugin', () => {
return new Promise(async (resolve, reject) => {
chmodr(this.targetPath, 0o755, (err) =>
err ? reject(err) : resolve(undefined)
);
});
});
}
}
/**
* Creates webpack plugins to copy all required resources (binaries, plotter app, translation files, etc.) to the appropriate location.
* @param {string} targetPath where to copy the resources
* @param {string|undefined} [baseDir=__dirname] to calculate the modules from. Defaults to `__dirname`
*/
function createCopyArduinoResourcesPlugins(targetPath, baseDir = __dirname) {
const copyOptions = {
patterns: [
// binaries
{
from: path.join(
resolvePackagePath('arduino-ide-extension', baseDir),
'src',
'node',
'resources'
),
to: targetPath,
globOptions: {
ignore: ['**/i18n/**'],
},
},
// plotter app
{
from: path.join(
resolvePackagePath('arduino-serial-plotter-webapp', baseDir),
'build'
),
to: path.resolve(targetPath, 'arduino-serial-plotter-webapp'),
},
],
};
return [
new CopyWebpackPlugin(copyOptions),
new PermissionsPlugin(targetPath),
];
}
/**
* Removes the compression webpack plugin if it's set in the config. Otherwise, it's NOOP>
* @param {import('webpack').Configuration} config
*/
function removeCompressionPlugin(config) {
const CompressionPlugin = require('compression-webpack-plugin');
for (let i = config.plugins?.length || 0; i >= 0; i--) {
const plugin = config.plugins?.[i];
if (plugin instanceof CompressionPlugin) {
config.plugins?.splice(i, 1);
}
}
}
module.exports = {
createCopyArduinoResourcesPlugins,
removeCompressionPlugin,
};