This repository was archived by the owner on Jun 8, 2021. It is now read-only.
forked from apache/cordova-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.txt
More file actions
35 lines (23 loc) · 1.72 KB
/
plugin.txt
File metadata and controls
35 lines (23 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Synopsis
cordova-cli plugin <command> [options]
Manage project plugins
add <pluginid>|<directory>|<giturl> [...] ..... add specified plugins
pluginid will be matched in --searchpath / registry
directory is a directory containing a plugin
giturl is a git repo containing a plugin
[--searchpath <directory>] ................ when looking up plugins by ID, look in this directory and
each of its subdirectories for the plugin before hitting the registry.
Multiple search paths can be used by either specifying the flag multiple
times, or by separating paths with a delimiter (: on 'nix, ; on Windows).
[--noregistry] ............................ don't search the registry for plugins
[--link] .................................. create a symbolic link to the plugin instead of copying files
remove <pluginid> [...] ....................... remove plugins with the given IDs
list .......................................... list currently installed plugins
search [<keyword>] [...] ...................... search the plugin registry for plugins matching the keywords
aliases:
plugins -> plugin
rm -> remove
ls -> list
Experimental Flags
--browserify .......................... Plugins javascript gets loaded at build time instead of runtime using browserify.
Replaces cordovajs file with one that includes the JS of the installed plugins.