@omnidist/omnidist-linux-x64 0.1.36 → 0.1.37
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 +11 -2
- package/bin/omnidist +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -85,17 +85,26 @@ profiles:
|
|
|
85
85
|
|
|
86
86
|
The `npm` and `uv` sections select those two backends. Add or remove `npm`, `uv`, and `gem` sections to define the canonical aggregate set. Existing files with a non-empty `enabled-distributions` selector remain readable, but every selected backend must have its own section. Aggregate commands always execute in npm → uv → gem order. `--only` can narrow the configured set but cannot enable an unavailable backend; backend-specific commands also require an explicit section.
|
|
87
87
|
|
|
88
|
-
To
|
|
88
|
+
To offer both unscoped and scoped install names while publishing one shared platform package set, configure the unscoped package as primary, add the scoped name to `aliases`, and use the scoped base for platform packages:
|
|
89
89
|
|
|
90
90
|
```yaml
|
|
91
91
|
distributions:
|
|
92
92
|
npm:
|
|
93
93
|
package: omnidist
|
|
94
|
+
aliases:
|
|
95
|
+
- "@omnidist/omnidist"
|
|
94
96
|
platform-package: "@omnidist/omnidist"
|
|
95
97
|
access: public
|
|
96
98
|
```
|
|
97
99
|
|
|
98
|
-
|
|
100
|
+
Users can then install either equivalent meta package:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
npm install -g omnidist
|
|
104
|
+
npm install -g @omnidist/omnidist
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Both meta packages reference platform packages such as `@omnidist/omnidist-linux-x64`; the binaries are not duplicated under each meta-package name. `package` is published first among meta packages, followed by `aliases` in configured order, after all unique platform packages. If `aliases` is omitted, Omnidist publishes only `package`. If `platform-package` is omitted or blank, it defaults to `package`, preserving existing package names. The configured npm identity must be allowed to publish every meta and platform name; trusted publishing must be configured for every generated package.
|
|
99
108
|
|
|
100
109
|
## Release flow
|
|
101
110
|
|
package/bin/omnidist
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"cpu": [
|
|
3
3
|
"x64"
|
|
4
4
|
],
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "omnidist binary for linux/amd64",
|
|
6
6
|
"files": [
|
|
7
7
|
"bin",
|
|
8
8
|
"README.md",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"type": "git",
|
|
18
18
|
"url": "git+https://github.com/metalagman/omnidist.git"
|
|
19
19
|
},
|
|
20
|
-
"version": "0.1.
|
|
20
|
+
"version": "0.1.37"
|
|
21
21
|
}
|