@qse/edu-scripts 1.13.5 → 1.13.7

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
@@ -1,5 +1,13 @@
1
1
  # 更新日志
2
2
 
3
+ ## 1.13.7 (2023-07-20)
4
+
5
+ - feat: 关闭 derServer.client.overlay.runtimeError
6
+
7
+ ## 1.13.6 (2023-06-13)
8
+
9
+ - fix: 修复 @babel 相关依赖缺失
10
+
3
11
  ## 1.13.5 (2023-06-13)
4
12
 
5
13
  - fix: 修复 @babel 相关依赖缺失
@@ -24,6 +24,11 @@ module.exports = function getWebpackDevServerConfig(args, override) {
24
24
  protocol: 'auto:',
25
25
  hostname: sockHost,
26
26
  port: sockPort
27
+ },
28
+ overlay: {
29
+ runtimeErrors: false,
30
+ errors: true,
31
+ warnings: false
27
32
  }
28
33
  },
29
34
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qse/edu-scripts",
3
- "version": "1.13.5",
3
+ "version": "1.13.7",
4
4
  "author": "Kinoko",
5
5
  "license": "MIT",
6
6
  "description": "教育工程化基础框架",
@@ -34,16 +34,13 @@
34
34
  "extends": "qsb-react"
35
35
  },
36
36
  "dependencies": {
37
- "@babel/core": "^7.21.4",
38
- "@babel/plugin-proposal-class-properties": "^7.18.6",
39
- "@babel/plugin-proposal-decorators": "^7.21.0",
40
- "@babel/plugin-proposal-private-methods": "^7.18.6",
41
- "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
42
- "@babel/plugin-transform-runtime": "^7.21.4",
43
- "@babel/preset-env": "^7.21.4",
44
- "@babel/preset-react": "^7.18.6",
45
- "@babel/preset-typescript": "^7.21.4",
46
- "@babel/runtime": "^7.21.0",
37
+ "@babel/core": "~7.18.6",
38
+ "@babel/plugin-proposal-decorators": "~7.18.6",
39
+ "@babel/plugin-transform-runtime": "~7.18.6",
40
+ "@babel/preset-env": "~7.18.6",
41
+ "@babel/preset-react": "~7.18.6",
42
+ "@babel/preset-typescript": "~7.18.6",
43
+ "@babel/runtime": "~7.18.6",
47
44
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
48
45
  "@qse/ssh-sftp": "^1.0.0",
49
46
  "@svgr/webpack": "^7.0.0",
@@ -19,6 +19,11 @@ module.exports = function getWebpackDevServerConfig(args, override) {
19
19
  host,
20
20
  client: {
21
21
  webSocketURL: { protocol: 'auto:', hostname: sockHost, port: sockPort },
22
+ overlay: {
23
+ runtimeErrors: false,
24
+ errors: true,
25
+ warnings: false,
26
+ },
22
27
  },
23
28
  headers: {
24
29
  'Access-Control-Allow-Origin': '*',