@uipath/solution-tool 0.1.12 → 0.2.0
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/README.md +24 -21
- package/dist/index.js +2146 -5
- package/dist/tool.js +65650 -40763
- package/package.json +13 -20
package/README.md
CHANGED
|
@@ -1,30 +1,33 @@
|
|
|
1
1
|
# Solution Tool
|
|
2
2
|
|
|
3
|
-
`uip`
|
|
4
|
-
|
|
3
|
+
`uip` tool for managing UiPath Automation Solutions.
|
|
5
4
|
|
|
6
5
|
## Commands
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
7
|
+
| Command | Description |
|
|
8
|
+
|---------|-------------|
|
|
9
|
+
| `pack` | Pack a UiPath solution |
|
|
10
|
+
| `publish` | Publish solution package |
|
|
11
|
+
| `new` | Create a new solution |
|
|
12
|
+
| `bundle` | Bundle solution components |
|
|
13
|
+
| `upload` | Upload a solution package |
|
|
14
|
+
| `deploy run` | Deploy solution to environment |
|
|
15
|
+
| `deploy status` | Check deployment status |
|
|
16
|
+
| `deploy activate` | Activate deployed solution |
|
|
17
|
+
| `deploy uninstall` | Remove solution |
|
|
18
|
+
| `deploy list` | List deployments |
|
|
19
|
+
| `deploy config get/set/link/unlink` | Manage deployment configuration |
|
|
20
|
+
| `project add/import/remove` | Manage projects within a solution |
|
|
21
|
+
| `packages list/delete` | Manage solution packages |
|
|
22
|
+
|
|
23
|
+
### Examples
|
|
19
24
|
|
|
20
25
|
```bash
|
|
21
26
|
uip solution pack <solutionPath>
|
|
27
|
+
uip solution publish <packagePath>
|
|
28
|
+
uip solution new --name MySolution
|
|
29
|
+
uip solution upload <packagePath>
|
|
30
|
+
uip solution deploy run --solution-name MySolution
|
|
31
|
+
uip solution deploy status --solution-name MySolution
|
|
32
|
+
uip solution project add --name MyProject
|
|
22
33
|
```
|
|
23
|
-
|
|
24
|
-
## Changes
|
|
25
|
-
|
|
26
|
-
### solution-tool 0.0.1
|
|
27
|
-
- Added `upload` support
|
|
28
|
-
|
|
29
|
-
### solution-tool 0.0.2
|
|
30
|
-
- Added `pack` command
|