@wbc-ui/core2 1.0.0-r01 → 1.0.0-r02
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 +2 -2
- package/dist-free/build-info.json +2 -2
- package/package.json +40 -5
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
11
11
|
<a href="https://www.npmjs.com/package/@wbc-ui/core2"><img src="https://img.shields.io/npm/v/@wbc-ui/core2?color=1976D2" alt="npm"></a>
|
|
12
|
-
<a href="https://www.npmjs.com/package/@wbc-ui/core2"><img src="https://img.shields.io/npm/dm/@wbc-ui/core2?color=1976D2" alt="downloads"></a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/@wbc-ui/core2?activeTab=versions"><img src="https://img.shields.io/npm/dm/@wbc-ui/core2?color=1976D2" alt="downloads"></a>
|
|
13
13
|
<a href="LICENSE"><img src="https://img.shields.io/npm/l/@wbc-ui/core2?color=blue" alt="license"></a>
|
|
14
14
|
<a href="https://vuejs.org"><img src="https://img.shields.io/badge/vue-2.7%2B-42b883" alt="vue"></a>
|
|
15
15
|
</p>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<p align="center">
|
|
18
18
|
<a href="https://flow.wbc-ui.com">📘 Docs</a> ·
|
|
19
19
|
<a href="https://github.com/wbc-ui/core2">🐙 GitHub</a> ·
|
|
20
|
-
<a href="https://
|
|
20
|
+
<a href="https://demo.wbc-ui.com/lab">▶️ Playground</a> ·
|
|
21
21
|
<a href="https://wbc-ui.com">💎 Pro</a>
|
|
22
22
|
</p>
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wbc-ui/core2",
|
|
3
|
-
"version": "1.0.0-
|
|
4
|
-
"description": "Advanced Dynamic UI Engine for Vue 2
|
|
3
|
+
"version": "1.0.0-r02",
|
|
4
|
+
"description": "Advanced Dynamic UI Engine for Vue 2 \u2014 Part of the @wbc-ui ecosystem",
|
|
5
5
|
"author": "Wissem Boughamoura <wissemb11@gmail.com> (https://www.wi-bg.com)",
|
|
6
6
|
"homepage": "https://wbc-ui.com",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/wbc-ui/core2.git"
|
|
11
|
-
"directory": "frontEnd/wbc-ui/core2/packages/wb-core"
|
|
10
|
+
"url": "git+https://github.com/wbc-ui/core2.git"
|
|
12
11
|
},
|
|
13
12
|
"bugs": {
|
|
14
13
|
"url": "https://github.com/wbc-ui/core2/issues"
|
|
15
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build:dev": "vite build",
|
|
17
|
+
"build:free": "cross-env WBC_PRO=false vite build",
|
|
18
|
+
"build:pro": "cross-env WBC_PRO=true vite build",
|
|
19
|
+
"build:full-embed:dev": "vite build --mode full-embed",
|
|
20
|
+
"build:full-embed:free": "cross-env WBC_PRO=false vite build --mode full-embed",
|
|
21
|
+
"build:full-embed:pro": "cross-env WBC_PRO=true vite build --mode full-embed",
|
|
22
|
+
"build:all:dev": "npm run clean:dev && npm run build:dev && npm run build:full-embed:dev",
|
|
23
|
+
"build:all:free": "npm run clean:free && npm run build:free && npm run build:full-embed:free",
|
|
24
|
+
"build:all:pro": "npm run clean:pro && npm run build:pro && npm run build:full-embed:pro",
|
|
25
|
+
"clean": "npm run clean:dev",
|
|
26
|
+
"clean:dev": "rm -rf dist-dev",
|
|
27
|
+
"clean:free": "rm -rf dist-free",
|
|
28
|
+
"clean:pro": "rm -rf dist-pro",
|
|
29
|
+
"clean:all": "npm run clean:dev && npm run clean:free && npm run clean:pro",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"build": "vite build",
|
|
32
|
+
"build:full-embed": "vite build --mode full-embed",
|
|
33
|
+
"build:all": "npm run build:dev && npm run build:free && npm run build:pro",
|
|
34
|
+
"serve_vite": "vite",
|
|
35
|
+
"serve_vite:free": "cross-env WBC_PRO=false vite",
|
|
36
|
+
"serve_vite:pro": "cross-env WBC_PRO=true vite",
|
|
37
|
+
"build:with-prettier": "vite build --mode with-prettier",
|
|
38
|
+
"serve_vite:dev": "vite",
|
|
39
|
+
"release": "node ../../../tools/pkg_cli/publish_lib.js",
|
|
40
|
+
"prepublishOnly": "npm run clean:all && npm run build:all && npm test",
|
|
41
|
+
"prepack": "npm run build:all && node tools/prepublish-clean.mjs --prepare",
|
|
42
|
+
"postpack": "node tools/prepublish-clean.mjs --restore"
|
|
43
|
+
},
|
|
16
44
|
"main": "dist-free/core2.umd.js",
|
|
17
45
|
"module": "dist-free/core2.es.js",
|
|
18
46
|
"exports": {
|
|
@@ -77,6 +105,13 @@
|
|
|
77
105
|
"optional": true
|
|
78
106
|
}
|
|
79
107
|
},
|
|
108
|
+
"devDependencies": {
|
|
109
|
+
"@vitejs/plugin-vue2": "^2.3.4",
|
|
110
|
+
"cross-env": "^7.0.3",
|
|
111
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
112
|
+
"vite": "^6.4.1",
|
|
113
|
+
"vite-plugin-css-injected-by-js": "^3.5.2"
|
|
114
|
+
},
|
|
80
115
|
"publishConfig": {
|
|
81
116
|
"access": "public",
|
|
82
117
|
"tag": "next"
|
|
@@ -97,4 +132,4 @@
|
|
|
97
132
|
"vuetify"
|
|
98
133
|
],
|
|
99
134
|
"sideEffects": false
|
|
100
|
-
}
|
|
135
|
+
}
|