@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 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.