@veltra/icons 1.0.1 → 1.0.3
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/.turbo/turbo-build.log +4 -3
- package/CHANGELOG.md +12 -0
- package/package.json +1 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -515,9 +515,10 @@ $ bun ./scripts/build-vue-icons.ts
|
|
|
515
515
|
[34mℹ[39m [2mdist/[22m[32mvue/normal/sun.vue.d.ts[39m [2m 0.44 kB[22m [2m│ gzip: 0.26 kB[22m
|
|
516
516
|
[34mℹ[39m 505 files, total: 492.27 kB
|
|
517
517
|
[33m[PLUGIN_TIMINGS] Warning:[0m Your build spent significant time in plugins. Here is a breakdown:
|
|
518
|
-
-
|
|
519
|
-
- rolldown-plugin-dts:
|
|
518
|
+
- rolldown-plugin-dts:generate (60%)
|
|
519
|
+
- rolldown-plugin-dts:resolver (17%)
|
|
520
|
+
- unplugin-vue (11%)
|
|
520
521
|
See https://rolldown.rs/options/checks#plugintimings for more details.
|
|
521
522
|
|
|
522
|
-
[32m✔[39m Build complete in [
|
|
523
|
+
[32m✔[39m Build complete in [32m6380ms[39m
|
|
523
524
|
icons 构建完成(tsdown unbundle + dts.vue);具名导出入口: index + normal + colorful
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
1
|
# @veltra/icons
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix published package manifests to strip `exports.development` conditions from npm tarballs during release.
|
|
8
|
+
|
|
9
|
+
## 1.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 修复发布流程,确保发布到 npm 的内部包依赖不会保留 `workspace:*`,而是展开为对应版本号。
|
|
14
|
+
|
|
3
15
|
## 1.0.1
|
package/package.json
CHANGED
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltra/icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"development": "./src/index.ts",
|
|
10
9
|
"import": "./dist/index.js"
|
|
11
10
|
},
|
|
12
11
|
"./normal": {
|
|
13
12
|
"types": "./dist/normal.d.ts",
|
|
14
|
-
"development": "./src/normal.ts",
|
|
15
13
|
"import": "./dist/normal.js"
|
|
16
14
|
},
|
|
17
15
|
"./colorful": {
|
|
18
16
|
"types": "./dist/colorful.d.ts",
|
|
19
|
-
"development": "./src/colorful.ts",
|
|
20
17
|
"import": "./dist/colorful.js"
|
|
21
18
|
}
|
|
22
19
|
},
|