@veltra/icons 1.0.2 → 1.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/.turbo/turbo-build.log +6 -2
- package/CHANGELOG.md +8 -0
- package/package.json +1 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -514,7 +514,11 @@ $ bun ./scripts/build-vue-icons.ts
|
|
|
514
514
|
[34mℹ[39m [2mdist/[22m[32mvue/normal/pin.vue.d.ts[39m [2m 0.44 kB[22m [2m│ gzip: 0.26 kB[22m
|
|
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
|
-
[33m[PLUGIN_TIMINGS] Warning:[0m Your build spent significant time in
|
|
517
|
+
[33m[PLUGIN_TIMINGS] Warning:[0m Your build spent significant time in plugins. Here is a breakdown:
|
|
518
|
+
- rolldown-plugin-dts:generate (65%)
|
|
519
|
+
- unplugin-vue (12%)
|
|
520
|
+
- rolldown-plugin-dts:resolver (11%)
|
|
521
|
+
See https://rolldown.rs/options/checks#plugintimings for more details.
|
|
518
522
|
|
|
519
|
-
[32m✔[39m Build complete in [
|
|
523
|
+
[32m✔[39m Build complete in [32m6492ms[39m
|
|
520
524
|
icons 构建完成(tsdown unbundle + dts.vue);具名导出入口: index + normal + colorful
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltra/icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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
|
},
|