-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.ts
371 lines (299 loc) · 12 KB
/
webpack.ts
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
import { fileURLToPath } from 'url'
import dayjs from 'dayjs'
import { default as Webpack, type Compiler, type Configuration, type Stats } from 'webpack'
import type { RawSourceMap } from 'source-map'
// 需要分析 bundle 大小时开启
// import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
import type { Options as TSLoaderOptions } from 'ts-loader'
import type { Options as SassOptions } from 'sass-loader'
import { fcopy, fexists, fread, fwrite, Lock } from 'xshell'
export const fpd_root = fileURLToPath(import.meta.url).fdir
export const ramdisk = fexists('T:/TEMP/', { print: false })
export const fpd_ramdisk_root = 'T:/2/ddb/gfn/'
export const fpd_out = `${ramdisk ? fpd_ramdisk_root : fpd_root}out/`
export async function copy_files () {
await Promise.all([
... ([
'plugin.json',
'logo.svg',
'demo.png',
'ddb.svg',
'README.zh.md'
] as const).map(async fname =>
fcopy(fpd_root + fname, fpd_out + fname)
),
fwrite(
`${fpd_out}README.md`,
(await fread(`${fpd_root}README.md`))
.replaceAll('./README.zh.md', 'https://github.com/dolphindb/grafana-datasource/blob/main/README.zh.md')
.replaceAll('./demo.png', '/public/plugins/dolphindb-datasource/demo.png')
.replaceAll('./ddb.svg', '/public/plugins/dolphindb-datasource/ddb.svg')
),
... (['zh', 'en']).map(async language =>
fcopy(`${fpd_root}node_modules/dolphindb/docs.${language}.json`, `${fpd_out}docs.${language}.json`, { overwrite: true })),
fcopy(`${fpd_root}node_modules/vscode-oniguruma/release/onig.wasm`, `${fpd_out}onig.wasm`),
])
}
async function get_config (production: boolean): Promise<Configuration> {
const sass = await import('sass')
return {
name: 'gfn',
mode: production ? 'production' : 'development',
devtool: 'source-map',
entry: {
'module.js': './index.tsx',
},
experiments: {
outputModule: true,
},
target: ['web', 'es2023'],
output: {
path: fpd_out,
filename: '[name]',
publicPath: '/',
pathinfo: true,
globalObject: 'globalThis',
module: false,
// grafana 插件会被 SystemJS 加载,最后需要编译生成 define(['依赖'], function (dep) { }) 这样的格式
library: {
type: 'amd'
},
},
// externalsType: 'global',
externals: [
'react',
'react-dom',
'@grafana/runtime',
'@grafana/data',
'@grafana/ui',
],
resolve: {
extensions: ['.js'],
symlinks: true,
plugins: [{
apply (resolver) {
const target = resolver.ensureHook('file')
for (const extension of ['.ts', '.tsx'] as const)
resolver.getHook('raw-file').tapAsync('ResolveTypescriptPlugin', (request, ctx, callback) => {
if (
typeof request.path !== 'string' ||
/(^|[\\/])node_modules($|[\\/])/.test(request.path)
) {
callback()
return
}
if (request.path.endsWith('.js')) {
const path = request.path.slice(0, -3) + extension
resolver.doResolve(
target,
{
...request,
path,
relativePath: request.relativePath?.replace(/\.js$/, extension)
},
`using path: ${path}`,
ctx,
callback
)
} else
callback()
})
}
}]
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre',
use: ['source-map-loader'],
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'ts-loader',
// https://github.com/TypeStrong/ts-loader
options: {
configFile: `${fpd_root}tsconfig.json`,
onlyCompileBundledFiles: true,
transpileOnly: true,
} as Partial<TSLoaderOptions>
},
{
test: /\.s[ac]ss$/,
use: [
'style-loader',
{
// https://github.com/webpack-contrib/css-loader
loader: 'css-loader',
options: {
url: false,
}
},
{
// https://webpack.js.org/loaders/sass-loader
loader: 'sass-loader',
options: {
implementation: sass,
// 解决 url(search.png) 打包出错的问题
webpackImporter: false,
sassOptions: {
indentWidth: 4,
},
} as SassOptions,
}
]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
oneOf: [
{
test: /\.icon\.svg$/,
issuer: /\.[jt]sx?$/,
loader: '@svgr/webpack',
options: { icon: true }
},
{
test: /\.(svg|ico|png|jpe?g|gif|woff2?|ttf|eot|otf|mp4|webm|ogg|mp3|wav|flac|aac)$/,
type: 'asset/inline',
},
]
},
{
test: /\.txt$/,
type: 'asset/source',
}
],
},
plugins: [
new Webpack.DefinePlugin({
BUILD_TIME: dayjs().format('YYYY.MM.DD HH:mm:ss').quote()
}),
... await (async () => {
if (production) {
const { LicenseWebpackPlugin } = await import('license-webpack-plugin')
const ignoreds = new Set(['xshell', 'react-object-model', '@ant-design/icons-svg', '@ant-design/pro-layout', '@ant-design/pro-provider', 'toggle-selection'])
return [
new LicenseWebpackPlugin({
perChunkOutput: false,
outputFilename: 'ThirdPartyNotice.txt',
excludedPackageTest: pkgname => ignoreds.has(pkgname),
}) as any
]
} else
return [ ]
})(),
// new Webpack.DefinePlugin({
// process: { env: { }, argv: [] }
// })
// 需要分析 bundle 大小时开启
// new BundleAnalyzerPlugin({ analyzerPort: 8880, openAnalyzer: false }),
],
optimization: {
minimize: false,
},
performance: {
hints: false,
},
cache: {
type: 'filesystem',
... ramdisk ? {
cacheDirectory: `${fpd_ramdisk_root}webpack/`,
compression: false
} : {
compression: 'brotli',
}
},
ignoreWarnings: [
/Failed to parse source map/
],
stats: {
colors: true,
context: fpd_root,
entrypoints: false,
errors: true,
errorDetails: true,
hash: false,
version: false,
timings: true,
children: false,
assets: true,
assetsSpace: 20,
modules: false,
modulesSpace: 20,
cachedAssets: false,
cachedModules: false,
},
}
}
export let webpack = {
lcompiler: new Lock<Compiler>(null),
async init (production: boolean) {
this.lcompiler.resource = Webpack(await get_config(production))
const { default: { SourceMapSource } } = await import('webpack-sources')
// 删除 import 注释防止 SystemJS 加载模块失败
// https://github.com/systemjs/systemjs/issues/1752
this.lcompiler.resource.hooks.compilation.tap('PrepareRemoveImportCommentForCompilation', (compilation, params) => {
compilation.hooks.processAssets.tap(
{
name: 'RemoveImportComment',
stage: Webpack.Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY,
},
assets => {
compilation.updateAsset(
'module.js',
asset => {
const { source, map } = asset.sourceAndMap()
return new SourceMapSource(
(source as string).replaceAll(/import dict from '\.\/dict\.json'.*/g, ''),
'module.js',
map as RawSourceMap as any
)
}
)
})
})
},
async run (production: boolean) {
return this.lcompiler.request(async compiler => {
if (!compiler) {
await this.init(production)
compiler = this.lcompiler.resource
}
return new Promise<Stats>((resolve, reject) => {
compiler.run((error, stats) => {
if (stats)
console.log(
stats.toString(compiler.options.stats)
.replace(/\n\s*.*gfn.* compiled .*successfully.* in (.*)/, '\n编译成功,用时 $1'.green)
)
if (error)
reject(error)
else if (stats.hasErrors())
reject(new Error('编译失败'))
else
resolve(stats)
})
})
})
},
async close () {
await this.lcompiler.request(async compiler =>
new Promise<void>((resolve, reject) => {
compiler.close(error => {
if (error)
reject(error)
else
resolve()
})
})
)
},
async build () {
await this.run(true)
await this.close()
}
}