@giteeteam/apps-cli 0.2.13 → 0.3.0
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/index.js +1 -1
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ $ npm install @giteeteam/apps-cli -g
|
|
|
8
8
|
## 创建应用
|
|
9
9
|
```bash
|
|
10
10
|
// uikit-app为项目名称
|
|
11
|
-
$ giteeteam-apps
|
|
11
|
+
$ giteeteam-apps init
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
## 打包应用
|
|
@@ -19,4 +19,4 @@ $ giteeteam-apps build
|
|
|
19
19
|
## 调试插件function
|
|
20
20
|
```bash
|
|
21
21
|
$ giteeteam-apps dev
|
|
22
|
-
```
|
|
22
|
+
```
|
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var execa__default = /*#__PURE__*/_interopDefaultLegacy(execa);
|
|
|
30
30
|
var child_process__default = /*#__PURE__*/_interopDefaultLegacy(child_process);
|
|
31
31
|
var chokidar__default = /*#__PURE__*/_interopDefaultLegacy(chokidar);
|
|
32
32
|
|
|
33
|
-
var version = "0.
|
|
33
|
+
var version = "0.3.0";
|
|
34
34
|
|
|
35
35
|
const packageApp = async ({ outputDir, manifest, copyFiles }) => {
|
|
36
36
|
const { resources } = manifest;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@giteeteam/apps-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Giteeteam Apps cli",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -16,30 +16,29 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"bugs": {
|
|
19
|
-
"url": "https://github.com/moriahq/
|
|
19
|
+
"url": "https://github.com/moriahq/proxima/issues"
|
|
20
20
|
},
|
|
21
|
-
"homepage": "https://github.com/moriahq/
|
|
21
|
+
"homepage": "https://github.com/moriahq/proxima/tree/develop/giteeteam/packages/giteeteam/packages/apps-cli",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/moriahq/
|
|
24
|
+
"url": "git+https://github.com/moriahq/proxima.git"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "tsc -w",
|
|
28
28
|
"build": "rimraf dist && rollup -c",
|
|
29
|
-
"
|
|
29
|
+
"prepublish": "pnpm build",
|
|
30
30
|
"unlink": "yarn unlink",
|
|
31
31
|
"link": "chmod +x ./dist/index.js && yarn link && yarn link '@giteeteam/apps-cli' -g",
|
|
32
32
|
"build-link": "pnpm build && yarn run link"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
|
-
"allowBranch": "master",
|
|
36
35
|
"conventionalCommits": true,
|
|
37
36
|
"access": "public",
|
|
38
37
|
"registry": "https://registry.npmjs.org/"
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
|
-
"@giteeteam/apps-bundler": "^0.
|
|
42
|
-
"@giteeteam/apps-manifest": "^0.
|
|
40
|
+
"@giteeteam/apps-bundler": "^0.2.0",
|
|
41
|
+
"@giteeteam/apps-manifest": "^0.2.0",
|
|
43
42
|
"archiver": "^5.3.1",
|
|
44
43
|
"chalk": "^4.1.2",
|
|
45
44
|
"chokidar": "^3.5.3",
|
|
@@ -58,5 +57,5 @@
|
|
|
58
57
|
"@types/inquirer": "^8.2.1",
|
|
59
58
|
"@types/uuid": "^8.3.4"
|
|
60
59
|
},
|
|
61
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "7a25af980b42c6d96e5f2bdb8345ec817a45d9b4"
|
|
62
61
|
}
|