@oclif/plugin-update 4.2.4 → 4.2.5
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 +1 -1
- package/npm-shrinkwrap.json +909 -196
- package/oclif.manifest.json +1 -1
- package/package.json +7 -8
- package/oclif.lock +0 -6330
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-update",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"author": "Salesforce",
|
|
5
5
|
"bugs": "https://github.com/oclif/plugin-update/issues",
|
|
6
6
|
"dependencies": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"debug": "^4.3.1",
|
|
11
11
|
"filesize": "^6.1.0",
|
|
12
12
|
"http-call": "^5.3.0",
|
|
13
|
-
"inquirer": "^9.2.
|
|
13
|
+
"inquirer": "^9.2.18",
|
|
14
14
|
"lodash.throttle": "^4.1.1",
|
|
15
15
|
"semver": "^7.6.0",
|
|
16
16
|
"tar-fs": "^2.1.1"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"got": "^13.0.0",
|
|
40
40
|
"husky": "^9",
|
|
41
41
|
"lint-staged": "^15",
|
|
42
|
-
"mocha": "^10.
|
|
42
|
+
"mocha": "^10.4.0",
|
|
43
43
|
"nock": "^13.5.4",
|
|
44
44
|
"oclif": "^4",
|
|
45
45
|
"prettier": "^3.2.5",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"sinon": "^17",
|
|
48
48
|
"strip-ansi": "^7.1.0",
|
|
49
49
|
"ts-node": "^10.9.2",
|
|
50
|
-
"typescript": "^5.4.
|
|
50
|
+
"typescript": "^5.4.5"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=18.0.0"
|
|
@@ -55,8 +55,7 @@
|
|
|
55
55
|
"files": [
|
|
56
56
|
"oclif.manifest.json",
|
|
57
57
|
"/dist",
|
|
58
|
-
"npm-shrinkwrap.json"
|
|
59
|
-
"oclif.lock"
|
|
58
|
+
"npm-shrinkwrap.json"
|
|
60
59
|
],
|
|
61
60
|
"homepage": "https://github.com/oclif/plugin-update",
|
|
62
61
|
"keywords": [
|
|
@@ -78,12 +77,12 @@
|
|
|
78
77
|
"repository": "oclif/plugin-update",
|
|
79
78
|
"scripts": {
|
|
80
79
|
"build": "shx rm -rf lib && tsc",
|
|
81
|
-
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json
|
|
80
|
+
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
|
|
82
81
|
"compile": "tsc",
|
|
83
82
|
"lint": "eslint . --ext .ts",
|
|
84
83
|
"postpack": "yarn run clean",
|
|
85
84
|
"posttest": "yarn lint",
|
|
86
|
-
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap
|
|
85
|
+
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap",
|
|
87
86
|
"prepare": "husky && yarn build",
|
|
88
87
|
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
|
|
89
88
|
"test:integration:sf": "mocha --forbid-only \"test/integration/sf.integration.ts\" --timeout 900000",
|