@oclif/plugin-help 6.0.9-dev.1 → 6.0.9-dev.2

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@oclif/plugin-help",
3
- "version": "6.0.8",
3
+ "version": "6.0.9-dev.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@oclif/plugin-help",
9
- "version": "6.0.8",
9
+ "version": "6.0.9-dev.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@oclif/core": "^3.13.1"
@@ -929,28 +929,10 @@
929
929
  "read-package-json-fast": "^2.0.1"
930
930
  }
931
931
  },
932
- "node_modules/@oclif/color": {
933
- "version": "1.0.9",
934
- "resolved": "https://registry.npmjs.org/@oclif/color/-/color-1.0.9.tgz",
935
- "integrity": "sha512-ntc/fZwuf4NRfYbXVoUNFyMB9IxVx/ls/WbSLKbkD9UpsmwY1I3J4DJKKRFRpenmTuxGQW8Lyzm7X3vhzHpDQA==",
936
- "extraneous": true,
937
- "license": "MIT",
938
- "dependencies": {
939
- "ansi-styles": "^4.2.1",
940
- "chalk": "^4.1.0",
941
- "strip-ansi": "^6.0.1",
942
- "supports-color": "^8.1.1",
943
- "tslib": "^2"
944
- },
945
- "engines": {
946
- "node": ">=12.0.0"
947
- }
948
- },
949
932
  "node_modules/@oclif/core": {
950
- "version": "3.14.1",
951
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.14.1.tgz",
952
- "integrity": "sha512-HLFL2s45DFdqYI2CFjVS/CIQ4cQ4yZqH0XqO9nnwcRWYboz2rEW/vLmidjIYGDjh6xA/k5psiAL3O1KEjqSHuQ==",
953
- "license": "MIT",
933
+ "version": "3.13.1",
934
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.13.1.tgz",
935
+ "integrity": "sha512-bpnF6BL+j7D0k0T+dZ4g7LwcZzctCoKjIYm8zcSNgrItS2pgIlvsRf8SdkGNu6djzRD7vzM657ZO9fWU6goz0g==",
954
936
  "dependencies": {
955
937
  "ansi-escapes": "^4.3.2",
956
938
  "ansi-styles": "^4.3.0",
@@ -39,5 +39,5 @@
39
39
  ]
40
40
  }
41
41
  },
42
- "version": "6.0.9-dev.1"
42
+ "version": "6.0.9-dev.2"
43
43
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/plugin-help",
3
3
  "description": "Standard help for oclif.",
4
- "version": "6.0.9-dev.1",
4
+ "version": "6.0.9-dev.2",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-help/issues",
7
7
  "dependencies": {
@@ -36,7 +36,6 @@
36
36
  "files": [
37
37
  "oclif.manifest.json",
38
38
  "/lib",
39
- "/oclif.lock",
40
39
  "npm-shrinkwrap.json"
41
40
  ],
42
41
  "homepage": "https://github.com/oclif/plugin-help",
@@ -53,12 +52,14 @@
53
52
  "repository": "oclif/plugin-help",
54
53
  "scripts": {
55
54
  "build": "shx rm -rf lib && tsc",
55
+ "commitlint": "commitlint --edit $1",
56
56
  "lint": "eslint . --ext .ts",
57
- "postpack": "shx rm oclif.manifest.json oclif.lock",
58
- "posttest": "yarn lint",
59
- "prepack": "yarn run build && oclif manifest . && oclif lock",
60
- "prepare": "husky install && yarn build",
61
- "pretest": "yarn build && tsc --noEmit",
57
+ "lint-staged": "lint-staged",
58
+ "postpack": "shx rm oclif.manifest.json",
59
+ "posttest": "npm run lint",
60
+ "prepack": "npm run build && oclif manifest .",
61
+ "prepare": "husky install && npm run build",
62
+ "pretest": "npm build && tsc --noEmit",
62
63
  "test": "mocha --forbid-only \"test/**/*.test.ts\""
63
64
  },
64
65
  "type": "module",