@endevco/aube-linux-x64-musl 0.0.0 → 1.0.0-beta.12

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 ADDED
@@ -0,0 +1,255 @@
1
+ <p align="center">
2
+ <a href="https://aube.en.dev">
3
+ <img src="assets/logo.svg" alt="aube logo" width="140" height="140">
4
+ </a>
5
+ </p>
6
+
7
+ <h1 align="center">aube</h1>
8
+
9
+ <p align="center">
10
+ A fast Node.js package manager that drops into existing projects.
11
+ </p>
12
+
13
+ <p align="center">
14
+ <strong>aube</strong> means dawn in French. Pronounced <code>/ob/</code>, like "ohb".
15
+ </p>
16
+
17
+ <p align="center">
18
+ <strong><a href="https://aube.en.dev">Read the docs</a></strong>
19
+ </p>
20
+
21
+ ## Why Try It
22
+
23
+ **[Fast installs](https://aube.en.dev/benchmarks).** Warm CI is about 7x faster than pnpm and 3x faster than Bun in the current benchmarks. Across the fixture set, aube runs up to ~22x faster than pnpm and up to 3x faster than Bun.
24
+
25
+ **[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.
26
+
27
+ **[Cheap repeat commands](https://aube.en.dev/package-manager/scripts).** `aube run test`, `aube test`, and `aube exec vitest` auto-install when dependencies are stale, then skip that work when nothing changed.
28
+
29
+ **[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.
30
+
31
+ **[Secure defaults](https://aube.en.dev/package-manager/configuration).** aube defaults to safer installs: new releases wait out a minimum age, exotic transitive dependencies are blocked, and dependency lifecycle scripts require approval.
32
+
33
+ ## Install
34
+
35
+ The recommended path is mise:
36
+
37
+ ```sh
38
+ mise use -g aube
39
+ ```
40
+
41
+ Check that it is on your `PATH`:
42
+
43
+ ```sh
44
+ aube --version
45
+ ```
46
+
47
+ Inside a project, you can also pin aube with mise:
48
+
49
+ ```sh
50
+ mise use aube
51
+ ```
52
+
53
+ aube is also published on npm:
54
+
55
+ ```sh
56
+ npm install -g @endevco/aube
57
+ ```
58
+
59
+ While aube is beta, Homebrew installs come from the Endev tap:
60
+
61
+ ```sh
62
+ brew install endevco/tap/aube
63
+ ```
64
+
65
+ See [other install methods](https://aube.en.dev/installation).
66
+
67
+ ## First Install
68
+
69
+ Run aube in an existing Node.js project:
70
+
71
+ ```sh
72
+ aube install
73
+ ```
74
+
75
+ If the project already has a supported lockfile, aube reads it and writes updates back to the same file. That makes it easy to try aube locally without forcing the rest of the team to switch package managers first.
76
+
77
+ For a new project with no lockfile, aube creates `aube-lock.yaml`.
78
+
79
+ ## Daily Commands
80
+
81
+ ```sh
82
+ aube install # install dependencies
83
+ aube add react # add a dependency
84
+ aube add -D vitest # add a dev dependency
85
+ aube remove react # remove a dependency
86
+ aube update # update dependencies within package.json ranges
87
+ aube run build # run a package.json script
88
+ aube test # run the test script, auto-installing first if needed
89
+ aube exec vitest # run a local binary
90
+ aube dlx cowsay hi # run a package in a throwaway environment
91
+ aube ci # clean, frozen install for CI
92
+ ```
93
+
94
+ You can also run scripts directly:
95
+
96
+ ```sh
97
+ aube dev
98
+ aube build
99
+ aube lint
100
+ ```
101
+
102
+ If the script exists in `package.json`, aube treats that as `aube run <script>`.
103
+
104
+ ### Shortcuts: `aubr` and `aubx`
105
+
106
+ `aubr` and `aubx` are multicall shims for `aube run` and `aube dlx`. They
107
+ share a binary with `aube` and dispatch purely on `argv[0]`, so every flag
108
+ that works on the full command also works on the shim:
109
+
110
+ ```sh
111
+ aubr build # aube run build
112
+ aubx cowsay hi # aube dlx cowsay hi
113
+ ```
114
+
115
+ The release archives ship all three binaries side by side; no extra
116
+ setup is needed when you install aube via mise or the tarball.
117
+
118
+ ## CI
119
+
120
+ Use `aube ci` when the lockfile must be treated as the source of truth:
121
+
122
+ ```sh
123
+ aube ci
124
+ ```
125
+
126
+ It removes `node_modules`, verifies the lockfile is fresh for the current `package.json`, then installs.
127
+
128
+ For Docker layers or workflows where you only want to update the lockfile:
129
+
130
+ ```sh
131
+ aube install --lockfile-only
132
+ ```
133
+
134
+ For production-only installs:
135
+
136
+ ```sh
137
+ aube install --prod
138
+ ```
139
+
140
+ ## Workspaces
141
+
142
+ aube supports workspace projects and the `workspace:` protocol.
143
+
144
+ ```sh
145
+ aube install -r
146
+ aube run test -r
147
+ aube add zod --filter @acme/api
148
+ ```
149
+
150
+ If a project already uses `pnpm-workspace.yaml`, aube can read and write it. New aube-first workspaces can use `aube-workspace.yaml`.
151
+
152
+ ## Lockfile Compatibility
153
+
154
+ | File | Reads | Writes in place |
155
+ | --- | --- | --- |
156
+ | `aube-lock.yaml` | yes | yes |
157
+ | `pnpm-lock.yaml` v9 | yes | yes |
158
+ | `package-lock.json` v2/v3 | yes | yes |
159
+ | `npm-shrinkwrap.json` | yes | yes |
160
+ | `yarn.lock` (v1 classic + v2+ berry) | yes | yes |
161
+ | `bun.lock` | yes | yes |
162
+
163
+ aube is not compatible with every historical lockfile shape. Older pnpm v5/v6 lockfiles should be upgraded with pnpm before switching. Yarn PnP projects need to move to a `node_modules` linker first — aube writes `node_modules`, not `.pnp.cjs`.
164
+
165
+ When more than one lockfile exists, prefer keeping one canonical lockfile for the project so teammates and CI do not fight over dependency state.
166
+
167
+ ## Dependency Scripts
168
+
169
+ aube skips dependency lifecycle scripts by default. That protects installs from unexpected build steps in transitive packages.
170
+
171
+ To allow packages that need build scripts:
172
+
173
+ ```sh
174
+ aube approve-builds
175
+ ```
176
+
177
+ You can inspect packages whose scripts were skipped:
178
+
179
+ ```sh
180
+ aube ignored-builds
181
+ ```
182
+
183
+ ## Package Layout
184
+
185
+ 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/`).
186
+
187
+ That means:
188
+
189
+ - several projects with similar dependencies share package files and use less disk space;
190
+ - dependencies stay isolated, so phantom dependencies are harder to rely on accidentally;
191
+ - repeated installs can reuse package files already on disk.
192
+
193
+ ## Commands You May Recognize
194
+
195
+ aube supports the common package-manager surface:
196
+
197
+ ```sh
198
+ aube list
199
+ aube why react
200
+ aube outdated
201
+ aube audit
202
+ aube pack
203
+ aube publish
204
+ aube link
205
+ aube unlink
206
+ aube config get registry
207
+ aube store path
208
+ aube store prune
209
+ ```
210
+
211
+ Some pnpm commands are intentionally out of scope. Runtime-management commands such as `env`, `runtime`, `setup`, and `self-update` belong in tools like mise. Registry account helpers such as `whoami`, `token`, `owner`, `search`, `pkg`, and `set-script` are compatibility stubs that point you to the npm command instead.
212
+
213
+ ## Learn More
214
+
215
+ - [Documentation](https://aube.en.dev)
216
+ - [Benchmarks](https://aube.en.dev/benchmarks)
217
+ - [Lockfile compatibility](https://aube.en.dev/package-manager/lockfiles)
218
+ - [Run scripts and binaries](https://aube.en.dev/package-manager/scripts)
219
+
220
+ ## CI
221
+
222
+ <p>
223
+ <a href="https://buildkite.com">
224
+ <img src="assets/buildkite-logo.svg" alt="Buildkite" width="180">
225
+ </a>
226
+ </p>
227
+
228
+ Thanks to [Buildkite](https://buildkite.com) for providing CI for aube.
229
+
230
+ ## Star History
231
+
232
+ <a href="https://www.star-history.com/?repos=endevco%2Faube&type=date&legend=top-left">
233
+ <picture>
234
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=endevco/aube&type=date&theme=dark&legend=top-left" />
235
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=endevco/aube&type=date&legend=top-left" />
236
+ <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=endevco/aube&type=date&legend=top-left" />
237
+ </picture>
238
+ </a>
239
+
240
+ ## Contributors
241
+
242
+ [![Contributors](https://contrib.rocks/image?repo=endevco/aube)](https://github.com/endevco/aube/graphs/contributors)
243
+
244
+ <p>
245
+ <a href="https://en.dev">
246
+ <img src="https://github.com/endevco.png?size=96" alt="en.dev" width="42" height="42" align="left">
247
+ </a>
248
+ Built by <a href="https://en.dev">en.dev</a>.
249
+ </p>
250
+
251
+ <br clear="left">
252
+
253
+ ## License
254
+
255
+ MIT
package/bin/aube ADDED
Binary file
package/bin/aubr ADDED
Binary file
package/bin/aubx ADDED
Binary file
package/package.json CHANGED
@@ -1,10 +1,29 @@
1
1
  {
2
2
  "name": "@endevco/aube-linux-x64-musl",
3
- "version": "0.0.0",
4
- "description": "Placeholder for Trusted Publishing bootstrap see @endevco/aube.",
3
+ "version": "1.0.0-beta.12",
4
+ "description": "Platform binaries for aube do not install directly, see @endevco/aube.",
5
+ "homepage": "https://aube.en.dev",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/endevco/aube"
9
+ },
5
10
  "license": "MIT",
6
- "os": ["linux"],
7
- "cpu": ["x64"],
8
- "libc": ["musl"],
9
- "repository": { "type": "git", "url": "https://github.com/endevco/aube" }
11
+ "bin": {
12
+ "aube": "bin/aube",
13
+ "aubr": "bin/aubr",
14
+ "aubx": "bin/aubx"
15
+ },
16
+ "files": [
17
+ "bin",
18
+ "README.md"
19
+ ],
20
+ "os": [
21
+ "linux"
22
+ ],
23
+ "cpu": [
24
+ "x64"
25
+ ],
26
+ "libc": [
27
+ "musl"
28
+ ]
10
29
  }
@@ -1,10 +0,0 @@
1
- {
2
- "name": "@endevco/aube-linux-arm64-musl",
3
- "version": "0.0.0",
4
- "description": "Placeholder for Trusted Publishing bootstrap — see @endevco/aube.",
5
- "license": "MIT",
6
- "os": ["linux"],
7
- "cpu": ["arm64"],
8
- "libc": ["musl"],
9
- "repository": { "type": "git", "url": "https://github.com/endevco/aube" }
10
- }
package/x64/package.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "name": "@endevco/aube-linux-x64-musl",
3
- "version": "0.0.0",
4
- "description": "Placeholder for Trusted Publishing bootstrap — see @endevco/aube.",
5
- "license": "MIT",
6
- "os": ["linux"],
7
- "cpu": ["x64"],
8
- "libc": ["musl"],
9
- "repository": { "type": "git", "url": "https://github.com/endevco/aube" }
10
- }