dlzn-ui 1.60.0 → 1.64.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/README.md +11 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
1
|
- 当在 workspace(工作区)中发布包时,工作区根目录的 LICENSE 文件将与包一起打包(除非包本身有自己的许可证)
|
|
2
|
-
-
|
|
2
|
+
- pnpm build
|
|
3
|
+
│
|
|
4
|
+
├─ ① pnpm 11 默认 verifyDepsBeforeRun: install
|
|
5
|
+
│ 发现 package.json / lockfile 和 node_modules 不一致
|
|
6
|
+
│ → 自动执行 pnpm install
|
|
7
|
+
│ → Scope: all 11 workspace projects
|
|
8
|
+
│ → 根目录 postinstall: pnpm stub
|
|
9
|
+
│
|
|
10
|
+
└─ ② 才执行 package.json 里的 build
|
|
11
|
+
→ pnpm run -C internal/build start
|
|
12
|
+
→ jiti buildfile.ts(clean / vite / copy)
|
package/package.json
CHANGED
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"@tsconfig/node-lts": "^24.0.0",
|
|
31
31
|
"@types/node": "^26.1.2",
|
|
32
32
|
"@vue/tsconfig": "^0.9.1",
|
|
33
|
+
"tailwindcss": "^4.3.3",
|
|
33
34
|
"tdesign-vue-next": "^1.20.5",
|
|
34
35
|
"typescript": "^6.0.3",
|
|
35
36
|
"vue": "^3.5.41",
|
|
@@ -49,5 +50,5 @@
|
|
|
49
50
|
"> 1%",
|
|
50
51
|
"not dead"
|
|
51
52
|
],
|
|
52
|
-
"version": "1.
|
|
53
|
+
"version": "1.64.0"
|
|
53
54
|
}
|