@lonersyk/record-grid 1.0.20 → 1.0.22
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 +0 -51
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,57 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
> 📖 **第三方系统使用指南**:详细的使用说明请查看 [USAGE_GUIDE.md](./USAGE_GUIDE.md)
|
|
8
8
|
|
|
9
|
-
## 📦 安装
|
|
10
|
-
|
|
11
|
-
### 方式一:从 Git 仓库安装(推荐)
|
|
12
|
-
|
|
13
|
-
如果项目未发布到 npm registry,可以直接从 Git 仓库安装:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
# 从 GitLab 仓库安装
|
|
17
|
-
npm install git+https://gitlab.drigle.com/david.yang/record-grid.git
|
|
18
|
-
|
|
19
|
-
# 或指定分支/标签
|
|
20
|
-
npm install git+https://gitlab.drigle.com/david.yang/record-grid.git#main
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
在 `package.json` 中配置:
|
|
24
|
-
|
|
25
|
-
```json
|
|
26
|
-
{
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@streams/record-grid": "git+https://gitlab.drigle.com/david.yang/record-grid.git#main"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### 方式二:从 npm registry 安装
|
|
34
|
-
|
|
35
|
-
如果已发布到 npm registry:
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
npm install @streams/record-grid
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
### 方式三:本地开发(使用文件路径)
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
npm install /path/to/record-grid-package
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
或在 `package.json` 中:
|
|
48
|
-
|
|
49
|
-
```json
|
|
50
|
-
{
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@streams/record-grid": "file:../record-grid-package"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
> 💡 **提示**:详细安装说明请参考 [GIT_INSTALL_GUIDE.md](./GIT_INSTALL_GUIDE.md)
|
|
58
|
-
|
|
59
|
-
## 🔧 依赖要求
|
|
60
9
|
|
|
61
10
|
### 完全自包含设计
|
|
62
11
|
|