@oclif/plugin-version 2.2.20 → 2.2.22
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 +1 -1
- package/lib/commands/version.d.ts +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ FLAG DESCRIPTIONS
|
|
|
27
27
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
_See code: [src/commands/version.ts](https://github.com/oclif/plugin-version/blob/v2.2.
|
|
30
|
+
_See code: [src/commands/version.ts](https://github.com/oclif/plugin-version/blob/v2.2.22/src/commands/version.ts)_
|
|
31
31
|
<!-- commandsstop -->
|
|
32
32
|
|
|
33
33
|
# Contributing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command, Interfaces } from '@oclif/core';
|
|
2
|
-
export type VersionDetail = {
|
|
2
|
+
export type VersionDetail = Omit<Interfaces.VersionDetails, 'pluginVersions'> & {
|
|
3
3
|
pluginVersions?: string[];
|
|
4
|
-
}
|
|
4
|
+
};
|
|
5
5
|
export default class Version extends Command {
|
|
6
6
|
static enableJsonFlag: boolean;
|
|
7
7
|
static flags: {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-version",
|
|
3
3
|
"description": "A command that shows the CLI version",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.22",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-version/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^4",
|
|
9
|
-
"ansis": "^3.
|
|
9
|
+
"ansis": "^3.10.0"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@commitlint/config-conventional": "^19",
|
|
13
|
+
"@eslint/compat": "^1.2.6",
|
|
13
14
|
"@oclif/plugin-help": "^6",
|
|
14
15
|
"@oclif/prettier-config": "^0.2.1",
|
|
15
16
|
"@oclif/test": "^4",
|
|
@@ -18,10 +19,9 @@
|
|
|
18
19
|
"@types/node": "^18",
|
|
19
20
|
"chai": "^4.5.0",
|
|
20
21
|
"commitlint": "^19",
|
|
21
|
-
"eslint": "^
|
|
22
|
-
"eslint-config-oclif": "^
|
|
23
|
-
"eslint-config-
|
|
24
|
-
"eslint-config-prettier": "^9.1.0",
|
|
22
|
+
"eslint": "^9.19.0",
|
|
23
|
+
"eslint-config-oclif": "^6.0.0",
|
|
24
|
+
"eslint-config-prettier": "^10.0.1",
|
|
25
25
|
"husky": "^9.1.7",
|
|
26
26
|
"lint-staged": "^15",
|
|
27
27
|
"mocha": "^10.8.2",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"build": "shx rm -rf lib && tsc",
|
|
56
56
|
"clean": "shx rm -f oclif.manifest.json",
|
|
57
57
|
"compile": "tsc",
|
|
58
|
-
"lint": "eslint
|
|
58
|
+
"lint": "eslint",
|
|
59
59
|
"postpack": "yarn run clean",
|
|
60
60
|
"posttest": "yarn lint",
|
|
61
61
|
"prepack": "yarn build && oclif manifest && oclif readme",
|