xshell 1.0.144 → 1.0.146
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 +5 -1
- package/package.json +1 -1
package/builder.js
CHANGED
|
@@ -93,7 +93,10 @@ const dependencies = {
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
echarts: {
|
|
96
|
-
productions: ['echarts/dist/echarts.js']
|
|
96
|
+
productions: ['echarts/dist/echarts.js'],
|
|
97
|
+
maps: {
|
|
98
|
+
devs: ['echarts/dist/echarts.js.map']
|
|
99
|
+
}
|
|
97
100
|
}
|
|
98
101
|
};
|
|
99
102
|
export class Bundler {
|
|
@@ -405,6 +408,7 @@ export class Bundler {
|
|
|
405
408
|
'toggle-selection',
|
|
406
409
|
'ahooks',
|
|
407
410
|
'size-sensor',
|
|
411
|
+
'client-only',
|
|
408
412
|
...this.license.ignores || []
|
|
409
413
|
]);
|
|
410
414
|
this.config.plugins.push(new LicenseWebpackPlugin({
|