@wlnt-ui/icons-vue 1.0.30 → 1.0.31

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.
@@ -109,6 +109,7 @@ export { default as HeatPower } from './heat-power.vue';
109
109
  export { default as Heating } from './heating.vue';
110
110
  export { default as HistoryAlert } from './history-alert.vue';
111
111
  export { default as History } from './history.vue';
112
+ export { default as Industry } from './industry.vue';
112
113
  export { default as Iot } from './iot.vue';
113
114
  export { default as Lighting } from './lighting.vue';
114
115
  export { default as List } from './list.vue';
@@ -0,0 +1,3 @@
1
+ import { DefineComponent } from 'vue';
2
+ declare const _default: DefineComponent;
3
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wlnt-ui/icons-vue",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
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
+ }