@regenbio/regenbio-components-react 1.2.78 → 1.2.80
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 +8 -7
- package/build/index.js +3 -3
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
## Regenerative Bio Components
|
|
2
2
|
微前端 <b>公共组件</b> 项目。
|
|
3
3
|
|
|
4
|
-
### 1️⃣
|
|
4
|
+
### 1️⃣ 我们发布在哪里?
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
https://www.
|
|
9
|
-
|
|
10
|
-
https://www.iconfont.cn/collections/detail?spm=a313x.collections_index.i1.d9df05512.19153a81VxA1eJ&cid=42739
|
|
8
|
+
https://www.npmjs.com/package/@regenbio/regenbio-components-react?activeTab=readme
|
|
11
9
|
|
|
12
10
|
### 2️⃣ 如何使用
|
|
13
11
|
|
|
@@ -21,12 +19,15 @@ yarn install
|
|
|
21
19
|
npm run reinstall
|
|
22
20
|
```
|
|
23
21
|
|
|
24
|
-
####
|
|
22
|
+
#### 发布
|
|
25
23
|
```bash
|
|
26
|
-
npm
|
|
24
|
+
npm publish
|
|
27
25
|
```
|
|
28
26
|
|
|
29
|
-
####
|
|
27
|
+
#### 本地测试
|
|
30
28
|
```bash
|
|
31
29
|
npm run build
|
|
30
|
+
yarn link
|
|
31
|
+
# 在应用项目,如果更新则需要移除原有的 node_modules 的包
|
|
32
|
+
yarn link "@regenbio/regenbio-components-react"
|
|
32
33
|
```
|