hbte-saas-ui 1.7.5 → 1.7.7
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 +16 -0
- package/lib/hbte-ui.common.js +4406 -20993
- package/lib/hbte-ui.css +1 -1
- package/lib/hbte-ui.umd.js +4406 -20993
- package/lib/hbte-ui.umd.min.js +10 -286
- package/package.json +9 -10
package/README.md
CHANGED
|
@@ -22,6 +22,22 @@ npm i hbte-saas-ui --save
|
|
|
22
22
|
npm run serve 本地测试组件
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
## 发布前可以测试
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
全局安装 yalc
|
|
29
|
+
npm install -g yalc
|
|
30
|
+
|
|
31
|
+
在组件库中
|
|
32
|
+
yalc publish
|
|
33
|
+
|
|
34
|
+
在测试项目中
|
|
35
|
+
yalc add hbte-saas-ui
|
|
36
|
+
npm install # 模拟真实安装
|
|
37
|
+
取消安装
|
|
38
|
+
yalc remove hbte-saas-ui
|
|
39
|
+
```
|
|
40
|
+
|
|
25
41
|
```
|
|
26
42
|
有问题叫梅神 =_=
|
|
27
43
|
```
|