@oclif/plugin-commands 3.1.7 → 3.2.1

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.
@@ -135,5 +135,5 @@
135
135
  ]
136
136
  }
137
137
  },
138
- "version": "3.1.7"
138
+ "version": "3.2.1"
139
139
  }
package/package.json CHANGED
@@ -1,46 +1,43 @@
1
1
  {
2
2
  "name": "@oclif/plugin-commands",
3
3
  "description": "plugin to show the list of all the commands",
4
- "version": "3.1.7",
4
+ "version": "3.2.1",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-commands/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^3.20.0",
8
+ "@oclif/core": "^3.26.0",
9
9
  "lodash.pickby": "^4.6.0",
10
10
  "lodash.sortby": "^4.7.0",
11
11
  "lodash.template": "^4.5.0",
12
12
  "lodash.uniqby": "^4.7.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@commitlint/config-conventional": "^17.8.1",
16
- "@oclif/plugin-help": "^5.2.20",
15
+ "@commitlint/config-conventional": "^18",
16
+ "@oclif/plugin-help": "^6",
17
17
  "@oclif/prettier-config": "^0.2.1",
18
- "@oclif/test": "^3.2.1",
18
+ "@oclif/test": "^3.2.5",
19
19
  "@types/chai": "^4.3.11",
20
20
  "@types/lodash.pickby": "^4.6.9",
21
21
  "@types/lodash.sortby": "^4.7.9",
22
22
  "@types/lodash.template": "^4.5.3",
23
23
  "@types/lodash.uniqby": "^4.7.9",
24
24
  "@types/mocha": "^10.0.6",
25
- "@types/nock": "^11.1.0",
26
25
  "@types/node": "^18",
27
26
  "chai": "^4.4.1",
28
- "commitlint": "^17.8.1",
29
- "eslint": "^8.56.0",
30
- "eslint-config-oclif": "^5.0.0",
31
- "eslint-config-oclif-typescript": "^3.0.48",
27
+ "commitlint": "^18",
28
+ "eslint": "^8.57.0",
29
+ "eslint-config-oclif": "^5.1.0",
30
+ "eslint-config-oclif-typescript": "^3.1.2",
32
31
  "eslint-config-prettier": "^9.1.0",
33
- "globby": "^11",
34
- "husky": "^8.0.3",
35
- "lint-staged": "^14.0.1",
32
+ "husky": "^9",
33
+ "lint-staged": "^15",
36
34
  "mocha": "^10.3.0",
37
- "nock": "^13.5.4",
38
35
  "nyc": "^15.1.0",
39
- "oclif": "^4.4.17",
36
+ "oclif": "^4.5.2",
40
37
  "prettier": "^3.2.5",
41
38
  "shx": "^0.3.3",
42
39
  "ts-node": "^10.9.2",
43
- "typescript": "^5.3.3"
40
+ "typescript": "^5.4.2"
44
41
  },
45
42
  "engines": {
46
43
  "node": ">=18.0.0"
@@ -49,8 +46,8 @@
49
46
  "files": [
50
47
  "/lib",
51
48
  "/oclif.manifest.json",
52
- "/yarn.lock",
53
- "/oclif.lock"
49
+ "npm-shrinkwrap.json",
50
+ "oclif.lock"
54
51
  ],
55
52
  "homepage": "https://github.com/oclif/plugin-commands",
56
53
  "keywords": [
@@ -68,13 +65,15 @@
68
65
  "repository": "oclif/plugin-commands",
69
66
  "scripts": {
70
67
  "build": "shx rm -rf lib && tsc",
68
+ "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json oclif.lock",
69
+ "compile": "tsc",
71
70
  "lint": "eslint . --ext .ts",
72
- "postpack": "shx rm -f oclif.manifest.json oclif.lock",
71
+ "postpack": "yarn run clean",
73
72
  "posttest": "yarn lint",
74
- "prepack": "shx rm -rf lib && tsc && oclif lock && oclif manifest . && oclif readme",
75
- "prepare": "husky install && yarn build",
76
- "pretest": "yarn build && tsc -p test --noEmit",
77
- "test": "mocha \"test/**/*.test.ts\"",
73
+ "prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap && oclif lock",
74
+ "prepare": "husky && yarn build",
75
+ "pretest": "yarn build --noEmit && tsc -p test --noEmit",
76
+ "test": "mocha --forbid-only \"test/**/*.test.ts\"",
78
77
  "version": "oclif readme && git add README.md"
79
78
  },
80
79
  "type": "module"