@qse/edu-scripts 2.0.3 → 2.1.0

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,12 +1,21 @@
1
1
  # 更新日志
2
2
 
3
- ## 2.0.3 (2926-03-10)
3
+ ## 2.1.0 (2026-03-17)
4
+
5
+ - feat: 主/子工程模式 deploy 支持 ssh-sftp 配置文件
6
+
7
+ ## 2.0.4 (2026-03-10)
8
+
9
+ - feat: 增加 @types/node 依赖
10
+ - feat: 删除 tailwindcss 的 peer 依赖,当前目标是兼容性与开箱即用,不需要动态配
11
+
12
+ ## 2.0.3 (2026-03-10)
4
13
 
5
14
  - feat: 增加 cache 配置项
6
15
  - feat: 增加 override 迁移提示
7
16
  - fix: 修复 dll 在 pnpm 环境下失效
8
17
 
9
- ## 2.0.2 (2926-03-10)
18
+ ## 2.0.2 (2026-03-10)
10
19
 
11
20
  - fix: 修复 react 兼容问题
12
21
  - fix: 修复 mock 失效
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  svn://192.168.10.168/qsedu/code/00.common/02.front-end-component/06.edu-scripts/trunk
4
4
 
5
+ v2 版本底层的打包工具从 webpack 迁移至 rspack,速度快了3-10x
6
+
5
7
  ## 运行条件
6
8
 
7
9
  nodejs 版本至少 18+
@@ -23,7 +25,9 @@ pnpm create @qse/edu-app@latest
23
25
 
24
26
  ## 安装
25
27
 
26
- <Alert>第一次使用这个框架,请看<Link to="/refactor">老项目接入流程</Link></Alert>
28
+ 如果你的项目还在使用 require.ensure,请使用 v1.15.0 版本
29
+
30
+ 第一次使用这个框架,请看[老项目接入流程](/refactor)
27
31
 
28
32
  ```shell
29
33
  npm i @qse/edu-scripts -D
package/app.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ /// <reference types="node" />
2
+
1
3
  declare namespace NodeJS {
2
4
  interface ProcessEnv {
3
5
  readonly NODE_ENV: 'development' | 'production'