@uipath/solution-tool 1.195.0 → 1.196.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 +32 -0
- package/dist/deploy.js +5973 -5348
- package/dist/init.js +2922 -2718
- package/dist/models/pack-command-types.d.ts +6 -3
- package/dist/pack.js +143885 -170652
- package/dist/publish.js +6830 -4888
- package/dist/resource.js +4623 -4306
- package/dist/services/auth-helper.d.ts +3 -0
- package/dist/services/deploy-activate-service.d.ts +2 -0
- package/dist/services/deploy-list-service.d.ts +2 -0
- package/dist/services/deploy-run-service.d.ts +22 -4
- package/dist/services/deploy-uninstall-service.d.ts +2 -0
- package/dist/services/folder-helper.d.ts +3 -0
- package/dist/services/packages-list-service.d.ts +2 -0
- package/dist/services/personal-workspace-deploy.d.ts +28 -0
- package/dist/services/personal-workspace-resolver.d.ts +1 -1
- package/dist/services/publish-service.d.ts +26 -8
- package/dist/services/resource-refresh-service.d.ts +3 -1
- package/dist/templates/AGENTS.md +11 -9
- package/dist/tool.js +10753 -73968
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -55,3 +55,35 @@ auth context is active — `uip login`, `UIPATH_CLI_ENABLE_ENV_AUTH`, or
|
|
|
55
55
|
terminals, CI pipelines, and Studio Desktop-spawned invocations. Service
|
|
56
56
|
principals or robot accounts without a Personal Workspace produce a clear
|
|
57
57
|
"not configured" error.
|
|
58
|
+
|
|
59
|
+
### Excluding directories from the bundle
|
|
60
|
+
|
|
61
|
+
`uip solution pack` and `uip solution upload` skip developer-local
|
|
62
|
+
directories that don't belong in a published solution. The defaults are
|
|
63
|
+
always applied:
|
|
64
|
+
|
|
65
|
+
- `.venv` — Python virtualenvs (per-agent under `<solution>/<agent>/.venv`).
|
|
66
|
+
- `node_modules` — Node dependency caches.
|
|
67
|
+
- `__pycache__` — Python bytecode caches.
|
|
68
|
+
- `.git` — VCS metadata.
|
|
69
|
+
|
|
70
|
+
To skip additional directories, add a `.uipignore` file at the solution
|
|
71
|
+
root (next to the `.uipx` file). One directory name per line; `#` starts a
|
|
72
|
+
line or trailing comment; blank lines and whitespace-only lines are
|
|
73
|
+
ignored. Each entry matches by exact directory name at any depth — the
|
|
74
|
+
same semantics as the built-in defaults. Path separators (`/`, `\`) are
|
|
75
|
+
not supported yet.
|
|
76
|
+
|
|
77
|
+
Example `.uipignore`:
|
|
78
|
+
|
|
79
|
+
```gitignore
|
|
80
|
+
# project-specific build artifacts
|
|
81
|
+
dist
|
|
82
|
+
coverage
|
|
83
|
+
|
|
84
|
+
# vendored deps we don't want shipped
|
|
85
|
+
vendor
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
The bundler logs which additional excludes are being applied at upload
|
|
89
|
+
time so the effective set is visible in CI logs.
|