@qse/edu-scripts 1.14.0 → 1.14.1

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/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## 1.14.0 (2023-10-11)
4
4
 
5
- - fix: 修改 browserslist 条件范围
5
+ - fix: 修改 browserslist 条件范围,保证包括 IE11,iOS>=9, Chrome>=49
6
6
 
7
7
  ## 1.13.12 (2023-08-24)
8
8
 
@@ -361,7 +361,7 @@ module.exports = function getWebpackConfig(args, override) {
361
361
  drop: ["debugger"],
362
362
  keepNames: false,
363
363
  legalComments: "none",
364
- target: "es6"
364
+ target: "es5"
365
365
  }),
366
366
  // This is only used in production mode
367
367
  override.minify === "terser" && new TerserPlugin({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qse/edu-scripts",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "author": "Kinoko",
5
5
  "license": "MIT",
6
6
  "description": "教育工程化基础框架",
@@ -387,7 +387,7 @@ module.exports = function getWebpackConfig(args, override) {
387
387
  drop: ['debugger'],
388
388
  keepNames: false,
389
389
  legalComments: 'none',
390
- target: 'es6',
390
+ target: 'es5',
391
391
  }),
392
392
  // This is only used in production mode
393
393
  override.minify === 'terser' &&