@wlnt-ui/icons-vue 1.0.24 → 1.0.25
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/dist/global.cjs +540 -513
- package/dist/global.iife.js +540 -513
- package/dist/global.iife.min.js +2 -2
- package/dist/global.js +0 -0
- package/dist/global.min.cjs +2 -2
- package/dist/global.min.js +2 -2
- package/dist/index.cjs +544 -513
- package/dist/index.iife.js +544 -513
- package/dist/index.iife.min.js +2 -2
- package/dist/index.js +0 -0
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/power-station.vue.d.ts +3 -0
- package/package.json +12 -12
@@ -124,6 +124,7 @@ export { default as Pie } from './pie.vue';
|
|
124
124
|
export { default as Plane } from './plane.vue';
|
125
125
|
export { default as Platform } from './platform.vue';
|
126
126
|
export { default as Plus } from './plus.vue';
|
127
|
+
export { default as PowerStation } from './power-station.vue';
|
127
128
|
export { default as PropertyFilled } from './property-filled.vue';
|
128
129
|
export { default as Property } from './property.vue';
|
129
130
|
export { default as Rank } from './rank.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wlnt-ui/icons-vue",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.25",
|
4
4
|
"description": "Vue components of Wlnt Ui Icons collection.",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
@@ -38,13 +38,6 @@
|
|
38
38
|
"unpkg": "dist/index.iife.min.js",
|
39
39
|
"jsdelivr": "dist/index.iife.min.js",
|
40
40
|
"sideEffects": false,
|
41
|
-
"scripts": {
|
42
|
-
"build": "gulp --require @esbuild-kit/cjs-loader -f gulpfile.ts",
|
43
|
-
"build:release": "pnpm run build build:release",
|
44
|
-
"build:generate": "tsx build/generate.ts",
|
45
|
-
"build:build": "tsx build/build.ts",
|
46
|
-
"build:types": "vue-tsc --declaration --emitDeclarationOnly"
|
47
|
-
},
|
48
41
|
"author": {
|
49
42
|
"name": "to0simple",
|
50
43
|
"email": "zhilongqiu2020@gmail.com",
|
@@ -62,8 +55,6 @@
|
|
62
55
|
"@types/gulp": "^4.0.13",
|
63
56
|
"@types/node": "^18.16.17",
|
64
57
|
"@types/prettier": "^3.0.0",
|
65
|
-
"@wlnt-ui/icons-svg": "workspace:*",
|
66
|
-
"@wlnt/build-utils": "workspace:*",
|
67
58
|
"camelcase": "^8.0.0",
|
68
59
|
"chalk": "^5.3.0",
|
69
60
|
"consola": "^3.2.3",
|
@@ -79,6 +70,15 @@
|
|
79
70
|
"typescript": "^5.2.2",
|
80
71
|
"unplugin-vue": "^4.3.5",
|
81
72
|
"vue": "^3.3.4",
|
82
|
-
"vue-tsc": "^1.6.5"
|
73
|
+
"vue-tsc": "^1.6.5",
|
74
|
+
"@wlnt-ui/icons-svg": "0.0.1",
|
75
|
+
"@wlnt/build-utils": "0.0.1"
|
76
|
+
},
|
77
|
+
"scripts": {
|
78
|
+
"build": "gulp --require @esbuild-kit/cjs-loader -f gulpfile.ts",
|
79
|
+
"build:release": "pnpm run build build:release",
|
80
|
+
"build:generate": "tsx build/generate.ts",
|
81
|
+
"build:build": "tsx build/build.ts",
|
82
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly"
|
83
83
|
}
|
84
|
-
}
|
84
|
+
}
|