@uipath/solution-tool 0.1.5
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 +30 -0
- package/dist/index.js +70706 -0
- package/dist/tool.js +86429 -0
- package/package.json +57 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Solution Tool
|
|
2
|
+
|
|
3
|
+
`uip` plugin for for managing UiPath Automation Solutions.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Commands
|
|
7
|
+
|
|
8
|
+
### Upload
|
|
9
|
+
|
|
10
|
+
Upload a solution package (zip file) to UiPath
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
uip solution upload <package-path>
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### Pack
|
|
17
|
+
|
|
18
|
+
Pack a UiPath solution from a folder or .uis file
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
uip solution pack <solutionPath>
|
|
22
|
+
```
|
|
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
|