@oclif/plugin-which 2.0.0 → 2.0.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.
- package/CHANGELOG.md +13 -0
- package/README.md +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [2.0.1](https://github.com/oclif/plugin-which/compare/v2.0.0...v2.0.1) (2021-12-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* bump core version ([49edb83](https://github.com/oclif/plugin-which/commit/49edb83b744e2de27fc0a0ed16447b75368c4086))
|
|
11
|
+
* get deps aligned ([9396b57](https://github.com/oclif/plugin-which/commit/9396b5768f946286c97d9239120bd5fb58defdbf))
|
|
12
|
+
* pin oclif ([377c6fa](https://github.com/oclif/plugin-which/commit/377c6fa2d3a175cd8ffa52552bb266c2ef7ebf85))
|
|
13
|
+
|
|
1
14
|
## [1.0.3](https://github.com/oclif/plugin-which/compare/v1.0.2...v1.0.3) (2018-10-13)
|
|
2
15
|
|
|
3
16
|
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-which
|
|
|
20
20
|
$ oclif-example COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ oclif-example (--version)
|
|
23
|
-
@oclif/plugin-which/2.0.
|
|
23
|
+
@oclif/plugin-which/2.0.1 linux-x64 node-v12.22.7
|
|
24
24
|
$ oclif-example --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ oclif-example COMMAND
|
|
@@ -43,5 +43,5 @@ DESCRIPTION
|
|
|
43
43
|
show which plugin a command is in
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
_See code: [src/commands/which.ts](https://github.com/oclif/plugin-which/blob/v2.0.
|
|
46
|
+
_See code: [src/commands/which.ts](https://github.com/oclif/plugin-which/blob/v2.0.1/src/commands/which.ts)_
|
|
47
47
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.0.
|
|
1
|
+
{"version":"2.0.1","commands":{"which":{"id":"which","description":"show which plugin a command is in","strict":true,"pluginName":"@oclif/plugin-which","pluginAlias":"@oclif/plugin-which","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"command","required":true}]}}}
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-which",
|
|
3
3
|
"description": "find which plugin a command is in",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"author": "
|
|
4
|
+
"version": "2.0.1",
|
|
5
|
+
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-which/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^0.
|
|
9
|
-
"cli-ux": "^
|
|
8
|
+
"@oclif/core": "^1.0.7",
|
|
9
|
+
"cli-ux": "^6.0.3",
|
|
10
10
|
"tslib": "^2.0.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@oclif/plugin-help": "^5.1.
|
|
14
|
-
"@oclif/test": "^
|
|
13
|
+
"@oclif/plugin-help": "^5.1.7",
|
|
14
|
+
"@oclif/test": "^2.0.2",
|
|
15
15
|
"@types/chai": "^4.1.6",
|
|
16
|
-
"@types/mocha": "^
|
|
16
|
+
"@types/mocha": "^9",
|
|
17
17
|
"@types/node": "^14.0.14",
|
|
18
18
|
"chai": "^4.2.0",
|
|
19
|
-
"eslint": "^7.
|
|
20
|
-
"eslint-config-oclif": "^
|
|
21
|
-
"eslint-config-oclif-typescript": "^0.2
|
|
19
|
+
"eslint": "^7.32.0",
|
|
20
|
+
"eslint-config-oclif": "^4.0.0",
|
|
21
|
+
"eslint-config-oclif-typescript": "^1.0.2",
|
|
22
22
|
"globby": "^11",
|
|
23
|
-
"mocha": "^
|
|
23
|
+
"mocha": "^9",
|
|
24
24
|
"nyc": "^15.1.0",
|
|
25
|
-
"oclif": "
|
|
25
|
+
"oclif": "2.0.0-main.11",
|
|
26
26
|
"ts-node": "^9.0.0",
|
|
27
27
|
"typescript": "4.4.3"
|
|
28
28
|
},
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
54
54
|
"version": "oclif readme && git add README.md",
|
|
55
55
|
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
56
|
-
"pretest": "yarn build
|
|
56
|
+
"pretest": "yarn build && tsc -p test --noEmit",
|
|
57
57
|
"build": "rm -rf lib && tsc"
|
|
58
58
|
}
|
|
59
59
|
}
|