You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ adapt search {name or partial name of plugin to search for}
35
35
36
36
##### Installing a plugin into your current directory
37
37
```
38
+
adapt install
39
+
```
40
+
When run without arguments this command looks for the `adapt.json` manifest. The command will attempt to install all plugins that it lists, prefering the latest compatible version of each. Run `adapt help install` for more information. To install specific plugins provide the names as a space separated list:
41
+
```
38
42
adapt install {name of plugin}
39
43
```
40
44
Additionally you can install a specific version of a plugin.
@@ -48,12 +52,20 @@ Therefore these commands are equivalent:
48
52
adapt install adapt-my-plugin
49
53
adapt install my-plugin
50
54
```
51
-
Installed plugins are saved to `adapt.json`.
52
55
53
-
##### Installing plugins previously saved in adapt.json
56
+
##### Updating plugins
54
57
```
55
-
adapt install
58
+
adapt update
59
+
```
60
+
When run without arguments this command attempts to update all installed plugins to their latest compatible versions. To update specific plugins provide the names as a space separated list:
61
+
```
62
+
adapt update {name of plugin}
63
+
```
64
+
You can also update specific plugins groups:
65
+
```
66
+
adapt update components extensions
56
67
```
68
+
Run `adapt help update` for more information.
57
69
58
70
##### Uninstalling a plugin from your current directory
59
71
```
@@ -107,6 +119,7 @@ The package will be renamed if the authenticated user is a collaborator on the e
107
119
108
120
Release History
109
121
===============
122
+
- 2.1.2 - Updated documentation and corrected JSON formatting
110
123
- 2.1.1 - Integrated PR 48 and fixed issue with adapt create command
111
124
- 2.1.0 - Fully updated update and install commands
0 commit comments