xshell 1.0.143 → 1.0.145
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/builder.js +2 -1
- package/package.json +1 -1
package/builder.js
CHANGED
|
@@ -352,7 +352,7 @@ export class Bundler {
|
|
|
352
352
|
/Can't resolve '(bufferutil|utf-8-validate)'/
|
|
353
353
|
] : [],
|
|
354
354
|
// 打包 ali-oss 时可能的报错
|
|
355
|
-
warning => warning.message
|
|
355
|
+
warning => warning.message?.includes('the request of a dependency is an expression') &&
|
|
356
356
|
warning.module?.context?.endsWith('any-promise')
|
|
357
357
|
],
|
|
358
358
|
performance: {
|
|
@@ -405,6 +405,7 @@ export class Bundler {
|
|
|
405
405
|
'toggle-selection',
|
|
406
406
|
'ahooks',
|
|
407
407
|
'size-sensor',
|
|
408
|
+
'client-only',
|
|
408
409
|
...this.license.ignores || []
|
|
409
410
|
]);
|
|
410
411
|
this.config.plugins.push(new LicenseWebpackPlugin({
|