@uipath/cli-meta 0.0.0-bootstrap.0 → 1.196.0-20260608T133008Z
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 +45 -0
- package/cli-versions.json +1 -1
- package/package.json +10 -3
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @uipath/cli-meta
|
|
2
|
+
|
|
3
|
+
Source metadata for UiPath CLI version selection.
|
|
4
|
+
|
|
5
|
+
`cli-versions.json` maps UiPath environments to the CLI version line that should
|
|
6
|
+
be used for that environment. The CLI version sync flow consumes this data to
|
|
7
|
+
align installed CLI versions after login and during daily auto-update checks.
|
|
8
|
+
`package.json` owns the package metadata and aligned base version.
|
|
9
|
+
|
|
10
|
+
## Schema
|
|
11
|
+
|
|
12
|
+
```json
|
|
13
|
+
{
|
|
14
|
+
"schemaVersion": 1,
|
|
15
|
+
"generated_at": "2026-06-08T12:23:37Z",
|
|
16
|
+
"environments": {
|
|
17
|
+
"alpha": {
|
|
18
|
+
"cliVersion": "1.2"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- `schemaVersion` is the metadata schema version understood by the CLI.
|
|
25
|
+
- `generated_at` is the UTC timestamp for the generated metadata.
|
|
26
|
+
- `environments` maps environment names to their CLI version line.
|
|
27
|
+
- `cliVersion` is a major/minor version pin.
|
|
28
|
+
|
|
29
|
+
## Publishing
|
|
30
|
+
|
|
31
|
+
Changes to the cli-meta source files trigger the `publish-cli-meta` job in
|
|
32
|
+
`.github/workflows/publish-npm.yml`. That job validates the JSON and publishes
|
|
33
|
+
the `@uipath/cli-meta` package.
|
|
34
|
+
|
|
35
|
+
The source `package.json` is private so it is not published by the broad package
|
|
36
|
+
publish loop. The `publish-cli-meta` job stages a publishable package from these
|
|
37
|
+
source files and derives the npm version from the package version plus a UTC
|
|
38
|
+
timestamp suffix:
|
|
39
|
+
|
|
40
|
+
```text
|
|
41
|
+
<package-json-version>-YYYYMMDDTHHMMSSZ
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
For example, package version `1.196.0` publishes as a snapshot version such as
|
|
45
|
+
`1.196.0-20260608T122337Z`.
|
package/cli-versions.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/cli-meta",
|
|
3
|
-
"
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"version": "1.196.0-20260608T133008Z",
|
|
4
5
|
"description": "UiPath CLI versions by environment.",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -17,7 +18,13 @@
|
|
|
17
18
|
"./cli-versions.json": "./cli-versions.json"
|
|
18
19
|
},
|
|
19
20
|
"files": [
|
|
20
|
-
"cli-versions.json"
|
|
21
|
+
"cli-versions.json",
|
|
22
|
+
"README.md"
|
|
21
23
|
],
|
|
22
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "4832a69bf066117c533ebc0ebb6f2c0e3770be00",
|
|
25
|
+
"maintainers": [
|
|
26
|
+
"aoltean16",
|
|
27
|
+
"mihaigirleanu",
|
|
28
|
+
"vlad-uipath"
|
|
29
|
+
]
|
|
23
30
|
}
|