@qse/edu-scripts 2.0.3 → 2.0.4

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,17 @@
1
1
  # 更新日志
2
2
 
3
- ## 2.0.3 (2926-03-10)
3
+ ## 2.0.4 (2026-03-10)
4
+
5
+ - feat: 增加 @types/node 依赖
6
+ - feat: 删除 tailwindcss 的 peer 依赖,当前目标是兼容性与开箱即用,不需要动态配
7
+
8
+ ## 2.0.3 (2026-03-10)
4
9
 
5
10
  - feat: 增加 cache 配置项
6
11
  - feat: 增加 override 迁移提示
7
12
  - fix: 修复 dll 在 pnpm 环境下失效
8
13
 
9
- ## 2.0.2 (2926-03-10)
14
+ ## 2.0.2 (2026-03-10)
10
15
 
11
16
  - fix: 修复 react 兼容问题
12
17
  - fix: 修复 mock 失效
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'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qse/edu-scripts",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "author": "Kinoko",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -44,6 +44,7 @@
44
44
  "@swc-node/register": "^1.11.1",
45
45
  "@swc/helpers": "^0.5.19",
46
46
  "@types/express": "^4.17.25",
47
+ "@types/node": "^24.12.0",
47
48
  "chalk": "^4.1.2",
48
49
  "chokidar": "^3.6.0",
49
50
  "cookie-parser": "^1.4.7",
@@ -96,13 +97,5 @@
96
97
  "rimraf": "^6.1.3",
97
98
  "tsdown": "^0.20.3",
98
99
  "vitepress": "^1.6.4"
99
- },
100
- "peerDependencies": {
101
- "tailwindcss": "^3.0.0"
102
- },
103
- "peerDependenciesMeta": {
104
- "tailwindcss": {
105
- "optional": true
106
- }
107
100
  }
108
101
  }