sks-plugin-el-erp 1.0.4-beta.2 → 1.0.4-beta.3
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
CHANGED
|
@@ -7,8 +7,20 @@ npm publish
|
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## 测试版
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"version": "1.0.4-beta.2",
|
|
14
|
+
"package.json": "发布时文件中的版本号,下个测试版最后面的版本号+1,例如 1.0.4-beta.3"
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
### 发布测试版
|
|
18
|
+
```shell
|
|
19
|
+
npm publish --tag beta1
|
|
20
|
+
```
|
|
21
|
+
### 按照测试版
|
|
10
22
|
```shell
|
|
11
|
-
npm
|
|
23
|
+
npm install sks-plugin-el-erp@beta1
|
|
12
24
|
```
|
|
13
25
|
|
|
14
26
|
## 撤销发布包
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sks-plugin-el-erp",
|
|
3
|
-
"version": "1.0.4-beta.
|
|
3
|
+
"version": "1.0.4-beta.3",
|
|
4
4
|
"description": "用于erp的element扩展",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "shoukaiseki",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"devDependencies": {
|
|
16
|
+
"node-scss": "7.0.3",
|
|
17
|
+
"sass": "1.54.8",
|
|
18
|
+
"sass-loader": "13.0.2",
|
|
19
|
+
"sortablejs": "1.15.0",
|
|
16
20
|
"@vue/component-compiler-utils": "3.3.0",
|
|
17
21
|
"@vuepress/markdown": "1.9.7",
|
|
18
22
|
"@vuepress/plugin-active-header-links": "2.0.0-beta.36",
|
|
@@ -29,10 +33,5 @@
|
|
|
29
33
|
"vuepress": "1.9.7",
|
|
30
34
|
"vuepress-plugin-demo-container": "0.2.0"
|
|
31
35
|
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"node-scss": "^7.0.3",
|
|
34
|
-
"sass": "^1.54.8",
|
|
35
|
-
"sass-loader": "^13.0.2",
|
|
36
|
-
"sortablejs": "^1.15.0"
|
|
37
|
-
}
|
|
36
|
+
"dependencies": {}
|
|
38
37
|
}
|