@forge/cli 0.0.0-experimental-2b3dfe1 → 0.0.0-experimental-034f51a
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/CHANGELOG.md +12 -2
- package/package.json +3 -53
- package/npm-shrinkwrap.json +0 -1662
- package/out/analytics-client/analytics-client.d.ts +0 -4
- package/out/analytics-client/analytics-client.d.ts.map +0 -1
- package/out/analytics-client/analytics-client.js +0 -6
- package/out/analytics-client/analytics-message-handler.d.ts +0 -17
- package/out/analytics-client/analytics-message-handler.d.ts.map +0 -1
- package/out/analytics-client/analytics-message-handler.js +0 -15
- package/out/autocomplete/autocomplete-config.json +0 -3
- package/out/autocomplete/index.d.ts +0 -5
- package/out/autocomplete/index.d.ts.map +0 -1
- package/out/autocomplete/index.js +0 -40
- package/out/autocomplete/isSupportedShell.d.ts +0 -2
- package/out/autocomplete/isSupportedShell.d.ts.map +0 -1
- package/out/autocomplete/isSupportedShell.js +0 -11
- package/out/autocomplete/types.d.ts +0 -14
- package/out/autocomplete/types.d.ts.map +0 -1
- package/out/autocomplete/types.js +0 -2
- package/out/autocomplete/util.d.ts +0 -6
- package/out/autocomplete/util.d.ts.map +0 -1
- package/out/autocomplete/util.js +0 -13
- package/out/bin/postinstall.d.ts +0 -1
- package/out/bin/postinstall.d.ts.map +0 -1
- package/out/bin/postinstall.js +0 -2
- package/out/storage/local-file-storage.d.ts +0 -17
- package/out/storage/local-file-storage.d.ts.map +0 -1
- package/out/storage/local-file-storage.js +0 -53
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# @forge/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-experimental-
|
|
3
|
+
## 0.0.0-experimental-034f51a
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- ebb857c01: Add keytar to shrinkwrap package list
|
|
8
|
+
|
|
9
|
+
## 4.5.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [2ae0afe]
|
|
14
|
+
- @forge/manifest@3.9.1-next.0
|
|
15
|
+
- @forge/cli-shared@2.6.1-next.0
|
|
16
|
+
- @forge/lint@3.2.1-next.0
|
|
17
|
+
- @forge/bundler@3.0.10-next.0
|
|
8
18
|
|
|
9
19
|
## 4.5.0
|
|
10
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-034f51a",
|
|
4
4
|
"description": "A command line interface for managing Atlassian-hosted apps",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -14,60 +14,10 @@
|
|
|
14
14
|
"compile": "tsc -b -v",
|
|
15
15
|
"dev": "NODE_ENV=development ts-node src/bin/cli.ts",
|
|
16
16
|
"inspect": "node -r ts-node/register --inspect-brk src/bin/cli.ts",
|
|
17
|
-
"postbuild": "chmod +x out/bin/*.js"
|
|
18
|
-
"postinstall": "node -e \"process.exitCode = fs.existsSync('./out/bin/postinstall.js')\" || node ./out/bin/postinstall.js"
|
|
17
|
+
"postbuild": "chmod +x out/bin/*.js"
|
|
19
18
|
},
|
|
20
19
|
"dependencies": {
|
|
21
|
-
"
|
|
22
|
-
"archiver": "^5.2.0",
|
|
23
|
-
"case": "^1.6.2",
|
|
24
|
-
"cheerio": "^0.22.0",
|
|
25
|
-
"cli-table3": "^0.6.1",
|
|
26
|
-
"command-exists": "^1.2.8",
|
|
27
|
-
"commander": "^7.0.0",
|
|
28
|
-
"cross-spawn": "^7.0.1",
|
|
29
|
-
"dayjs": "^1.9.7",
|
|
30
|
-
"didyoumean": "^1.2.1",
|
|
31
|
-
"env-paths": "^2.2.0",
|
|
32
|
-
"fs-extra": "^8.1.0",
|
|
33
|
-
"hidefile": "^3.0.0",
|
|
34
|
-
"latest-version": "^5.1.0",
|
|
35
|
-
"lodash": "^4.17.20",
|
|
36
|
-
"mkdirp": "^1.0.3",
|
|
37
|
-
"node-fetch": "2.6.1",
|
|
38
|
-
"node-machine-id": "^1.1.12",
|
|
39
|
-
"omelette": "^0.4.15-1",
|
|
40
|
-
"ora": "^4.0.3",
|
|
41
|
-
"portfinder": "^1.0.25",
|
|
42
|
-
"sanitize-filename": "^1.6.3",
|
|
43
|
-
"semver": "^6.3.0",
|
|
44
|
-
"tmp": "^0.1.0",
|
|
45
|
-
"tslib": "^1.11.0",
|
|
46
|
-
"uuid": "^3.4.0"
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@types/archiver": "^5.1.0",
|
|
50
|
-
"@types/cheerio": "^0.22.21",
|
|
51
|
-
"@types/command-exists": "^1.2.0",
|
|
52
|
-
"@types/cross-spawn": "^6.0.1",
|
|
53
|
-
"@types/didyoumean": "^1.2.0",
|
|
54
|
-
"@types/fs-extra": "^8.0.1",
|
|
55
|
-
"@types/hidefile": "^3.0.0",
|
|
56
|
-
"@types/inquirer": "^6.5.0",
|
|
57
|
-
"@types/jest": "^26.0.0",
|
|
58
|
-
"@types/js-yaml": "^3.12.2",
|
|
59
|
-
"@types/minimatch": "^3.0.3",
|
|
60
|
-
"@types/mkdirp": "^1.0.0",
|
|
61
|
-
"@types/node": "^12.12.63",
|
|
62
|
-
"@types/node-fetch": "^2.5.7",
|
|
63
|
-
"@types/omelette": "^0.4.1",
|
|
64
|
-
"@types/semver": "^6.0.1",
|
|
65
|
-
"@types/tmp": "^0.1.0",
|
|
66
|
-
"@types/unzipper": "^0.10.1",
|
|
67
|
-
"@types/uuid": "^3.4.7",
|
|
68
|
-
"@types/webpack": "^5.28.0",
|
|
69
|
-
"jest-fixtures": "^0.6.0",
|
|
70
|
-
"memfs": "^3.4.1"
|
|
20
|
+
"tmp": "^0.1.0"
|
|
71
21
|
},
|
|
72
22
|
"optionalDependencies": {
|
|
73
23
|
"keytar": "^7.9.0"
|