@oclif/plugin-commands 3.3.3 → 3.3.4

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 CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @oclif/plugin-commands
21
21
  $ oclif-example COMMAND
22
22
  running command...
23
23
  $ oclif-example (--version)
24
- @oclif/plugin-commands/3.3.3 linux-x64 node-v20.12.2
24
+ @oclif/plugin-commands/3.3.4 linux-x64 node-v20.12.2
25
25
  $ oclif-example --help [COMMAND]
26
26
  USAGE
27
27
  $ oclif-example COMMAND
@@ -65,7 +65,7 @@ DESCRIPTION
65
65
  list all the commands
66
66
  ```
67
67
 
68
- _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.3.3/src/commands/commands.ts)_
68
+ _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.3.4/src/commands/commands.ts)_
69
69
  <!-- commandsstop -->
70
70
 
71
71
  # Contributing
@@ -135,5 +135,5 @@
135
135
  ]
136
136
  }
137
137
  },
138
- "version": "3.3.3"
138
+ "version": "3.3.4"
139
139
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@oclif/plugin-commands",
3
3
  "description": "plugin to show the list of all the commands",
4
- "version": "3.3.3",
4
+ "version": "3.3.4",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-commands/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^3.26.5",
8
+ "@oclif/core": "^3.26.6",
9
9
  "lodash": "^4.17.21"
10
10
  },
11
11
  "devDependencies": {
@@ -26,7 +26,7 @@
26
26
  "lint-staged": "^15",
27
27
  "mocha": "^10.4.0",
28
28
  "nyc": "^15.1.0",
29
- "oclif": "^4.10.1",
29
+ "oclif": "^4.10.7",
30
30
  "prettier": "^3.2.5",
31
31
  "shx": "^0.3.3",
32
32
  "ts-node": "^10.9.2",
@@ -38,8 +38,7 @@
38
38
  "exports": "./lib/index.js",
39
39
  "files": [
40
40
  "/lib",
41
- "/oclif.manifest.json",
42
- "npm-shrinkwrap.json"
41
+ "/oclif.manifest.json"
43
42
  ],
44
43
  "homepage": "https://github.com/oclif/plugin-commands",
45
44
  "keywords": [
@@ -57,12 +56,12 @@
57
56
  "repository": "oclif/plugin-commands",
58
57
  "scripts": {
59
58
  "build": "shx rm -rf lib && tsc",
60
- "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
59
+ "clean": "shx rm -f oclif.manifest.json",
61
60
  "compile": "tsc",
62
61
  "lint": "eslint . --ext .ts",
63
62
  "postpack": "yarn run clean",
64
63
  "posttest": "yarn lint",
65
- "prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap",
64
+ "prepack": "yarn build && oclif manifest && oclif readme",
66
65
  "prepare": "husky && yarn build",
67
66
  "pretest": "yarn build --noEmit && tsc -p test --noEmit",
68
67
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",