-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwebpack.common.js
218 lines (193 loc) · 5.42 KB
/
webpack.common.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
const webpack = require('webpack');
const path = require('path');
const { readFileSync } = require('fs');
const GeneratePackageJsonPlugin = require('generate-package-json-webpack-plugin');
const RemovePlugin = require('remove-files-webpack-plugin');
// const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
const WebpackShellPluginNext = require('webpack-shell-plugin-next');
const CopyPlugin = require("copy-webpack-plugin");
const pathDist = path.resolve(__dirname, './dist/prepack');
const pathSrc = './src/';
function createConfig(params) {
if (!params || !params.entry) {
throw new Error('params.entry must be set.');
}
params = {
...params,
target: params.target ?? 'node',
devtool: params.devtool ?? 'source-map',
};
const loaders = [
{
loader: 'ts-loader',
options: {
configFile: `tsconfig.${params.name}.json`,
allowTsInNodeModules: true,
},
},
{
loader: 'webpack-preprocessor-loader',
options: {
params: {
target: params.target,
},
verbose: true,
},
},
];
let resolve = {
extensions: ['.ts', '.tsx', '.js'],
plugins: [
// new TsconfigPathsPlugin({ configFile: `./tsconfig.${params.target}.json` }),
],
};
let plugins = [
];
if (params.useBuffer) {
plugins = [
...plugins,
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
}),
];
resolve = {
...resolve,
fallback: {
...resolve.fallback ?? {},
buffer: require.resolve('buffer/'),
},
};
}
const removeOutliers = new RemovePlugin({
after: {
test: [
{
folder: './dist/prepack/node',
method: (absoluteItemPath) => {
return new RegExp(/\.web\.d\.ts$/, 'm').test(absoluteItemPath);
},
recursive: true,
},
{
folder: './dist/prepack/web',
method: (absoluteItemPath) => {
return new RegExp(/\.node\.d\.ts$/, 'm').test(absoluteItemPath);
},
recursive: true,
},
],
},
});
const copyAssets = new CopyPlugin({
patterns: [
{
from: `./assets/${params.name}/`,
to: './',
},
]
});
plugins = [
...plugins,
removeOutliers,
copyAssets,
];
if (params.generatePackage) {
const suffix = params.target === 'node' ? '' : '-web';
const packageBase = JSON.parse(readFileSync('package.json'));
const packageOverride = {
name: `@uipath/coreipc${suffix}`,
description: `UiPath CoreIpc for ${params.prettyTarget}`,
typings: `./${params.target}/index.d.ts`,
};
const package = {
...packageBase,
...packageOverride
};
delete package.scripts;
delete package.dependencies;
delete package.devDependencies;
const generatePackageJson = new GeneratePackageJsonPlugin(package);
const packNpm = new WebpackShellPluginNext({
onBuildEnd: {
scripts: [`npm pack ./dist/prepack/${params.name} --pack-destination="./dist-packages"`],
blocking: true,
parallel: false,
},
});
plugins = [
...plugins,
generatePackageJson,
packNpm,
];
}
const module = {
rules: [
{
test: /\.tsx?$/,
use: loaders,
},
],
};
let output = {
path: `${pathDist}/${params.name}`,
filename: 'index.js',
};
if (params.library) {
output = {
...output,
library: params.library,
};
}
if (params.globalObject) {
output = {
...output,
globalObject: params.globalObject,
};
}
const config = {
mode: 'production',
target: params.target,
devtool: params.devtool,
entry: params.entry,
output,
module,
resolve,
plugins
};
if (params.name) {
config.name = params.name;
}
return config;
}
module.parallelism = 2;
module.exports = [
createConfig({
target: 'node',
name: 'node',
entry: `${pathSrc}node/index.ts`,
prettyTarget: 'NodeJS',
generatePackage: true,
library: { name: 'ipc', type: 'umd' },
globalObject: 'this',
}),
createConfig({
target: 'web',
name: 'web',
entry: `${pathSrc}web/index.ts`,
useBuffer: true,
prettyTarget: 'Web',
generatePackage: true,
library: { name: 'ipc', type: 'umd' },
globalObject: 'this',
}),
createConfig({
target: 'web',
name: 'web-js',
entry: `${pathSrc}web/index.ts`,
useBuffer: true,
devtool: 'inline-source-map',
prettyTarget: 'Web-JS',
generatePackage: false,
library: { name: 'ipc', type: 'var' }
}),
];