@oclif/plugin-version 2.0.13 → 2.0.15
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 +28 -0
- package/npm-shrinkwrap.json +10842 -0
- package/oclif.lock +2296 -4534
- package/oclif.manifest.json +1 -1
- package/package.json +13 -14
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-version",
|
|
3
3
|
"description": "A command that shows the CLI version",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.15",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-version/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
8
|
+
"@oclif/core": "^3.26.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@commitlint/config-conventional": "^
|
|
11
|
+
"@commitlint/config-conventional": "^18",
|
|
12
12
|
"@oclif/plugin-help": "^6",
|
|
13
13
|
"@oclif/prettier-config": "^0.2.1",
|
|
14
14
|
"@oclif/test": "^3",
|
|
@@ -16,14 +16,13 @@
|
|
|
16
16
|
"@types/mocha": "^10",
|
|
17
17
|
"@types/node": "^18",
|
|
18
18
|
"chai": "^4.4.1",
|
|
19
|
-
"commitlint": "^
|
|
20
|
-
"eslint": "^8.
|
|
19
|
+
"commitlint": "^18",
|
|
20
|
+
"eslint": "^8.57.0",
|
|
21
21
|
"eslint-config-oclif": "^5",
|
|
22
22
|
"eslint-config-oclif-typescript": "^3",
|
|
23
23
|
"eslint-config-prettier": "^9.1.0",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"lint-staged": "^14.0.1",
|
|
24
|
+
"husky": "^9",
|
|
25
|
+
"lint-staged": "^15",
|
|
27
26
|
"mocha": "^10.3.0",
|
|
28
27
|
"oclif": "^4",
|
|
29
28
|
"prettier": "^3.2.5",
|
|
@@ -36,6 +35,7 @@
|
|
|
36
35
|
},
|
|
37
36
|
"files": [
|
|
38
37
|
"oclif.manifest.json",
|
|
38
|
+
"npm-shrinkwrap.json",
|
|
39
39
|
"oclif.lock",
|
|
40
40
|
"/lib"
|
|
41
41
|
],
|
|
@@ -54,15 +54,14 @@
|
|
|
54
54
|
"repository": "oclif/plugin-version",
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "shx rm -rf lib && tsc",
|
|
57
|
-
"clean": "shx rm -f oclif.manifest.json oclif.lock",
|
|
58
|
-
"
|
|
57
|
+
"clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json oclif.lock",
|
|
58
|
+
"compile": "tsc",
|
|
59
59
|
"lint": "eslint . --ext .ts",
|
|
60
|
-
"
|
|
60
|
+
"postpack": "yarn run clean",
|
|
61
61
|
"posttest": "yarn lint",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
62
|
+
"prepack": "yarn build && oclif manifest && oclif readme && npm shrinkwrap && oclif lock",
|
|
63
|
+
"prepare": "husky && yarn build",
|
|
64
64
|
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
|
|
65
|
-
"preversion": "yarn run clean",
|
|
66
65
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
67
66
|
"version": "oclif readme && git add README.md"
|
|
68
67
|
},
|