@endevco/aube-linux-x64-musl 1.2.1 → 1.4.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 +20 -3
- package/bin/aube +0 -0
- package/bin/aubr +0 -0
- package/bin/aubx +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
## Why Try It
|
|
22
22
|
|
|
23
23
|
<!-- BENCH_RATIOS:START -->
|
|
24
|
-
**[Fast installs](https://aube.en.dev/benchmarks).** Warm installs are about
|
|
24
|
+
**[Fast installs](https://aube.en.dev/benchmarks).** Warm installs are about 9x faster than pnpm and about 3x faster than Bun in the current benchmarks. Repeat test commands run up to 101x faster than pnpm and up to 4x faster than Bun.
|
|
25
25
|
<!-- BENCH_RATIOS:END -->
|
|
26
26
|
|
|
27
27
|
**[Existing lockfiles](https://aube.en.dev/package-manager/lockfiles).** Reads and writes `pnpm-lock.yaml`, `package-lock.json`, `npm-shrinkwrap.json`, `yarn.lock`, and `bun.lock` in place.
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
**[Less disk use](https://aube.en.dev/package-manager/node-modules).** A global content-addressable store lets projects share package files instead of keeping a full copy of the same dependencies in every checkout.
|
|
32
32
|
|
|
33
|
-
**[Secure defaults](https://aube.en.dev/
|
|
33
|
+
**[Secure defaults](https://aube.en.dev/security).** Out of the box, exotic transitive deps are blocked, lifecycle scripts wait for approval, trust downgrades fail at resolve, and brand-new releases sit in a 24h cooling window. One `paranoid: true` line adds the build jail and turns the soft gates into hard fails.
|
|
34
34
|
|
|
35
35
|
## Install
|
|
36
36
|
|
|
@@ -40,6 +40,15 @@ The recommended path is mise:
|
|
|
40
40
|
mise use -g aube
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
mise can also manage the [Node.js versions](https://mise.jdx.dev/lang/node.html)
|
|
44
|
+
your projects need. If your projects already pin Node through `package.json`
|
|
45
|
+
(`devEngines.runtime`), `.nvmrc`, or `.node-version`, enable mise's
|
|
46
|
+
idiomatic version-file support for Node:
|
|
47
|
+
|
|
48
|
+
```sh
|
|
49
|
+
mise settings add idiomatic_version_file_enable_tools node
|
|
50
|
+
```
|
|
51
|
+
|
|
43
52
|
Check that it is on your `PATH`:
|
|
44
53
|
|
|
45
54
|
```sh
|
|
@@ -55,9 +64,15 @@ mise use aube
|
|
|
55
64
|
aube is also published on npm:
|
|
56
65
|
|
|
57
66
|
```sh
|
|
58
|
-
npm install -g @endevco/aube
|
|
67
|
+
npm install -g --ignore-scripts=false @endevco/aube
|
|
68
|
+
npx --ignore-scripts=false @endevco/aube --version
|
|
59
69
|
```
|
|
60
70
|
|
|
71
|
+
The npm package uses an install script to fetch native binaries for
|
|
72
|
+
performance. The npm commands above include the flag that keeps that
|
|
73
|
+
working even if your npm config disables scripts. We still recommend mise
|
|
74
|
+
for the smoothest install and runtime management path.
|
|
75
|
+
|
|
61
76
|
Homebrew installs come from the Endev tap:
|
|
62
77
|
|
|
63
78
|
```sh
|
|
@@ -201,6 +216,8 @@ You can inspect packages whose scripts were skipped:
|
|
|
201
216
|
aube ignored-builds
|
|
202
217
|
```
|
|
203
218
|
|
|
219
|
+
For approved packages, `jailBuilds: true` runs lifecycle scripts with a scrubbed env and temporary `HOME`. It defaults to `false` today and is planned to default to `true` in the next major version. Use package globs in `jailBuildPermissions` or `jailBuildExclusions` for packages that need specific env vars, paths, network, or a full opt-out.
|
|
220
|
+
|
|
204
221
|
## Package Layout
|
|
205
222
|
|
|
206
223
|
aube uses an isolated `node_modules` layout. Packages are linked through `node_modules/.aube/`, and package files are stored once in `$XDG_DATA_HOME/aube/store/` (defaulting to `~/.local/share/aube/store/`).
|
package/bin/aube
CHANGED
|
Binary file
|
package/bin/aubr
CHANGED
|
Binary file
|
package/bin/aubx
CHANGED
|
Binary file
|