@oclif/plugin-update 4.1.16 → 4.2.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 +5 -8
- package/npm-shrinkwrap.json +17771 -0
- package/oclif.lock +1721 -1752
- package/oclif.manifest.json +1 -1
- package/package.json +19 -19
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-update",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"author": "Salesforce",
|
|
5
5
|
"bugs": "https://github.com/oclif/plugin-update/issues",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@oclif/core": "^3.
|
|
7
|
+
"@oclif/core": "^3.21.0",
|
|
8
8
|
"chalk": "^5",
|
|
9
9
|
"cross-spawn": "^7.0.3",
|
|
10
10
|
"debug": "^4.3.1",
|
|
@@ -16,38 +16,35 @@
|
|
|
16
16
|
"tar-fs": "^2.1.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@commitlint/config-conventional": "^
|
|
20
|
-
"@oclif/plugin-help": "^
|
|
19
|
+
"@commitlint/config-conventional": "^18",
|
|
20
|
+
"@oclif/plugin-help": "^6",
|
|
21
21
|
"@oclif/prettier-config": "^0.2.1",
|
|
22
22
|
"@oclif/test": "^3",
|
|
23
23
|
"@types/chai": "^4.3.11",
|
|
24
24
|
"@types/cross-spawn": "^6.0.6",
|
|
25
25
|
"@types/debug": "^4.1.12",
|
|
26
26
|
"@types/execa": "^0.9.0",
|
|
27
|
-
"@types/glob": "^7.1.3",
|
|
28
27
|
"@types/inquirer": "^9.0.7",
|
|
29
28
|
"@types/lodash.throttle": "^4.1.9",
|
|
30
29
|
"@types/mocha": "^10",
|
|
31
30
|
"@types/node": "^18",
|
|
32
31
|
"@types/semver": "^7.5.7",
|
|
33
|
-
"@types/supports-color": "^7.2.0",
|
|
34
32
|
"@types/tar-fs": "^2.0.2",
|
|
35
33
|
"chai": "^4.4.1",
|
|
36
|
-
"commitlint": "^
|
|
37
|
-
"eslint": "^8.57.0",
|
|
38
|
-
"eslint-config-oclif": "^5.0.2",
|
|
34
|
+
"commitlint": "^18",
|
|
39
35
|
"eslint-config-oclif-typescript": "^3.0.48",
|
|
36
|
+
"eslint-config-oclif": "^5.0.2",
|
|
40
37
|
"eslint-config-prettier": "^9.1.0",
|
|
38
|
+
"eslint": "^8.57.0",
|
|
41
39
|
"got": "^13.0.0",
|
|
42
|
-
"husky": "^
|
|
43
|
-
"lint-staged": "^
|
|
40
|
+
"husky": "^9",
|
|
41
|
+
"lint-staged": "^15",
|
|
44
42
|
"mocha": "^10.3.0",
|
|
45
43
|
"nock": "^13.5.4",
|
|
46
44
|
"oclif": "^4",
|
|
47
45
|
"prettier": "^3.2.5",
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"sinon": "^16.1.3",
|
|
46
|
+
"shx": "^0.3.4",
|
|
47
|
+
"sinon": "^17",
|
|
51
48
|
"strip-ansi": "^7.1.0",
|
|
52
49
|
"ts-node": "^10.9.2",
|
|
53
50
|
"typescript": "^5.3.3"
|
|
@@ -58,7 +55,8 @@
|
|
|
58
55
|
"files": [
|
|
59
56
|
"oclif.manifest.json",
|
|
60
57
|
"/dist",
|
|
61
|
-
"
|
|
58
|
+
"npm-shrinkwrap.json",
|
|
59
|
+
"oclif.lock"
|
|
62
60
|
],
|
|
63
61
|
"homepage": "https://github.com/oclif/plugin-update",
|
|
64
62
|
"keywords": [
|
|
@@ -79,12 +77,14 @@
|
|
|
79
77
|
},
|
|
80
78
|
"repository": "oclif/plugin-update",
|
|
81
79
|
"scripts": {
|
|
82
|
-
"build": "rm -rf lib && tsc",
|
|
80
|
+
"build": "shx rm -rf lib && tsc",
|
|
81
|
+
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json oclif.lock",
|
|
82
|
+
"compile": "tsc",
|
|
83
83
|
"lint": "eslint . --ext .ts",
|
|
84
|
-
"postpack": "
|
|
84
|
+
"postpack": "yarn run clean",
|
|
85
85
|
"posttest": "yarn lint",
|
|
86
|
-
"prepack": "yarn build && oclif
|
|
87
|
-
"prepare": "husky
|
|
86
|
+
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap && oclif lock",
|
|
87
|
+
"prepare": "husky && yarn build",
|
|
88
88
|
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
|
|
89
89
|
"test:integration:sf": "mocha --forbid-only \"test/integration/sf.integration.ts\" --timeout 900000",
|
|
90
90
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|