@oclif/plugin-update 4.1.16 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -88,5 +88,5 @@
88
88
  ]
89
89
  }
90
90
  },
91
- "version": "4.1.16"
91
+ "version": "4.2.1"
92
92
  }
package/package.json CHANGED
@@ -1,56 +1,53 @@
1
1
  {
2
2
  "name": "@oclif/plugin-update",
3
- "version": "4.1.16",
3
+ "version": "4.2.1",
4
4
  "author": "Salesforce",
5
5
  "bugs": "https://github.com/oclif/plugin-update/issues",
6
6
  "dependencies": {
7
- "@oclif/core": "^3.20.0",
7
+ "@oclif/core": "^3.21.0",
8
8
  "chalk": "^5",
9
9
  "cross-spawn": "^7.0.3",
10
10
  "debug": "^4.3.1",
11
11
  "filesize": "^6.1.0",
12
12
  "http-call": "^5.3.0",
13
- "inquirer": "^9.2.15",
13
+ "inquirer": "^9.2.16",
14
14
  "lodash.throttle": "^4.1.1",
15
15
  "semver": "^7.6.0",
16
16
  "tar-fs": "^2.1.1"
17
17
  },
18
18
  "devDependencies": {
19
- "@commitlint/config-conventional": "^17.8.1",
20
- "@oclif/plugin-help": "^5.2.17",
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
- "@types/semver": "^7.5.7",
33
- "@types/supports-color": "^7.2.0",
31
+ "@types/semver": "^7.5.8",
34
32
  "@types/tar-fs": "^2.0.2",
35
33
  "chai": "^4.4.1",
36
- "commitlint": "^17.8.1",
37
- "eslint": "^8.57.0",
38
- "eslint-config-oclif": "^5.0.2",
39
- "eslint-config-oclif-typescript": "^3.0.48",
34
+ "commitlint": "^18",
35
+ "eslint-config-oclif-typescript": "^3.1.0",
36
+ "eslint-config-oclif": "^5.1.1",
40
37
  "eslint-config-prettier": "^9.1.0",
38
+ "eslint": "^8.57.0",
41
39
  "got": "^13.0.0",
42
- "husky": "^8.0.3",
43
- "lint-staged": "^14.0.1",
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
- "qqjs": "^0.3.11",
49
- "quibble": "^0.9.1",
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
- "typescript": "^5.3.3"
50
+ "typescript": "^5.4.2"
54
51
  },
55
52
  "engines": {
56
53
  "node": ">=18.0.0"
@@ -58,7 +55,8 @@
58
55
  "files": [
59
56
  "oclif.manifest.json",
60
57
  "/dist",
61
- "/oclif.lock"
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": "rm -f oclif.manifest.json",
84
+ "postpack": "yarn run clean",
85
85
  "posttest": "yarn lint",
86
- "prepack": "yarn build && oclif lock && oclif manifest . && oclif lock",
87
- "prepare": "husky install && yarn build",
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\"",