-
-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add list dependencies #1661
Add list dependencies #1661
Conversation
ping @ikoevska for the documentation |
|
||
canExecute(args: string[]): IFuture<boolean> { | ||
return (() => { | ||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can use:
canExecute(args: string[]): IFuture<boolean> {
return Future.fromResult(true);
}
ada63b0
to
154e919
Compare
run ci |
|
||
Usage | Synopsis | ||
---|--- | ||
Finds NativeScript plugins in npm | `$ tns plugin find [<PluginName>] [--all] [--count <Count>]` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finds NativeScript plugins in npm -> General
Unless there are multiple entries and combos of options which do different things, we usually go with General
On a side note, you can break it down to:
General (syntax without the PluginName attribute)
Find plugin by name (syntax with the PluginName attribute)
In addition to my other comments, you need to add plugin find and plugin search in index.md as well. |
Finds NativeScript plugins in npm. | ||
|
||
### Options | ||
* `--all` - Specifies that all results will be displayed at once. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specifies that all results will be shown at once.
154e919
to
cd7a3a1
Compare
👍 |
Add list plugins registered in package.json file when executing tns plugin in project.
Add plugin find command to list the nativescript plugins available in npm. The command has --all and --count flags to change the output format.
cd7a3a1
to
2ac30c8
Compare
Add list plugins registered in package.json file when executing tns plugin in project.
Add plugin find command to list the nativescript plugins available in npm. The command has --all and --count flags to change the output format.
Fixes #1231
Implements #1665