@oclif/plugin-which 0.0.0 → 1.0.3
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 +29 -0
- package/README.md +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
## [1.0.3](https://github.com/oclif/plugin-which/compare/v1.0.2...v1.0.3) (2018-10-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove greenkeeper badge ([281ab74](https://github.com/oclif/plugin-which/commit/281ab74))
|
|
7
|
+
|
|
8
|
+
## [1.0.2](https://github.com/oclif/plugin-which/compare/v1.0.1...v1.0.2) (2018-09-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* lint issue ([47b0f5b](https://github.com/oclif/plugin-which/commit/47b0f5b))
|
|
14
|
+
|
|
15
|
+
<a name="1.0.1"></a>
|
|
16
|
+
## [1.0.1](https://github.com/oclif/plugin-which/compare/v1.0.0...v1.0.1) (2018-05-22)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* bust circle cache ([4021744](https://github.com/oclif/plugin-which/commit/4021744))
|
|
22
|
+
|
|
23
|
+
<a name="1.0.0"></a>
|
|
24
|
+
# 1.0.0 (2018-05-22)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* added which command ([9a63dbd](https://github.com/oclif/plugin-which/commit/9a63dbd))
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @oclif/plugin-which
|
|
|
21
21
|
$ oclif-example COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ oclif-example (-v|--version|version)
|
|
24
|
-
@oclif/plugin-which/
|
|
24
|
+
@oclif/plugin-which/1.0.3 linux-x64 node-v10.12.0
|
|
25
25
|
$ oclif-example --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ oclif-example COMMAND
|
|
@@ -41,5 +41,5 @@ USAGE
|
|
|
41
41
|
$ oclif-example which COMMAND
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
_See code: [src/commands/which.ts](https://github.com/oclif/plugin-which/blob/
|
|
44
|
+
_See code: [src/commands/which.ts](https://github.com/oclif/plugin-which/blob/v1.0.3/src/commands/which.ts)_
|
|
45
45
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"
|
|
1
|
+
{"version":"1.0.3","commands":{"which":{"id":"which","description":"show which plugin a command is in","pluginName":"@oclif/plugin-which","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"command","required":true}]}}}
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-which",
|
|
3
3
|
"description": "find which plugin a command is in",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-which/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/command": "^1",
|
|
9
|
-
"@oclif/config": "^1",
|
|
10
|
-
"cli-ux": "^4.
|
|
11
|
-
"tslib": "^1"
|
|
8
|
+
"@oclif/command": "^1.5.4",
|
|
9
|
+
"@oclif/config": "^1.8.7",
|
|
10
|
+
"cli-ux": "^4.9.1",
|
|
11
|
+
"tslib": "^1.9.3"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oclif/dev-cli": "^1",
|
|
15
|
-
"@oclif/plugin-help": "^1",
|
|
16
|
-
"@oclif/test": "^1",
|
|
17
|
-
"@oclif/tslint": "^1",
|
|
18
|
-
"@types/chai": "^4",
|
|
19
|
-
"@types/mocha": "^5",
|
|
20
|
-
"@types/node": "^10",
|
|
21
|
-
"chai": "^4",
|
|
14
|
+
"@oclif/dev-cli": "^1.19.1",
|
|
15
|
+
"@oclif/plugin-help": "^2.1.2",
|
|
16
|
+
"@oclif/test": "^1.2.1",
|
|
17
|
+
"@oclif/tslint": "^3.1.0",
|
|
18
|
+
"@types/chai": "^4.1.6",
|
|
19
|
+
"@types/mocha": "^5.2.5",
|
|
20
|
+
"@types/node": "^10.11.7",
|
|
21
|
+
"chai": "^4.2.0",
|
|
22
22
|
"globby": "^8",
|
|
23
23
|
"mocha": "^5",
|
|
24
|
-
"nyc": "^
|
|
25
|
-
"ts-node": "^
|
|
26
|
-
"tslint": "^5",
|
|
27
|
-
"typescript": "^
|
|
24
|
+
"nyc": "^13.0.1",
|
|
25
|
+
"ts-node": "^7.0.1",
|
|
26
|
+
"tslint": "^5.11.0",
|
|
27
|
+
"typescript": "^3.1.3"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=8.0.0"
|