cargo-hauler 0.4.7 → 0.4.8
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/CHANGELOG.md +6 -0
- package/README.md +4 -1
- package/artifact/agent-bundle.manifest.json +1 -1
- package/artifact/claude/.claude-plugin/marketplace.json +1 -1
- package/artifact/claude/.claude-plugin/plugin.json +1 -1
- package/artifact/claude/INSTALL.md +1 -1
- package/artifact/claude/bin/cargo-hauler-flight.mjs +4 -4
- package/artifact/claude/bin/cargo-hauler.mjs +6 -6
- package/artifact/claude/hooks/event-route-session-start.mjs +2 -2
- package/artifact/claude/hooks/event-route-stop.mjs +2 -2
- package/artifact/claude/hooks/event-route-tool-after.mjs +2 -2
- package/artifact/claude/hooks/event-route-tool-before.mjs +2 -2
- package/artifact/claude/hooks/hooks-flight.mjs +4 -4
- package/artifact/claude/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
- package/artifact/claude/mcp/mcp-hauler-2b8242f9.mjs +8 -8
- package/artifact/claude/mcp-apps/dashboard.html +1 -1
- package/artifact/claude/scripts/hauler.mjs +4 -4
- package/artifact/codex/.codex-plugin/plugin.json +1 -1
- package/artifact/codex/INSTALL.md +1 -1
- package/artifact/codex/bin/cargo-hauler-flight.mjs +4 -4
- package/artifact/codex/bin/cargo-hauler.mjs +6 -6
- package/artifact/codex/hooks/event-route-session-start.mjs +2 -2
- package/artifact/codex/hooks/event-route-stop.mjs +2 -2
- package/artifact/codex/hooks/event-route-tool-after.mjs +2 -2
- package/artifact/codex/hooks/event-route-tool-before.mjs +2 -2
- package/artifact/codex/hooks/hooks-flight.mjs +4 -4
- package/artifact/codex/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
- package/artifact/codex/mcp/mcp-hauler-2b8242f9.mjs +8 -8
- package/artifact/codex/mcp-apps/dashboard.html +1 -1
- package/artifact/codex/scripts/hauler.mjs +4 -4
- package/artifact/cursor/.cursor-plugin/plugin.json +1 -1
- package/artifact/cursor/INSTALL.md +1 -1
- package/artifact/cursor/bin/cargo-hauler-flight.mjs +4 -4
- package/artifact/cursor/bin/cargo-hauler.mjs +6 -6
- package/artifact/cursor/hooks/event-route-session-start.mjs +2 -2
- package/artifact/cursor/hooks/event-route-stop.mjs +2 -2
- package/artifact/cursor/hooks/event-route-tool-after.mjs +2 -2
- package/artifact/cursor/hooks/event-route-tool-before.mjs +2 -2
- package/artifact/cursor/hooks/hooks-flight.mjs +4 -4
- package/artifact/cursor/install.mjs +1 -1
- package/artifact/cursor/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
- package/artifact/cursor/mcp/mcp-hauler-2b8242f9.mjs +8 -8
- package/artifact/cursor/mcp-apps/dashboard.html +1 -1
- package/artifact/cursor/scripts/hauler.mjs +4 -4
- package/artifact/portable/INSTALL.md +1 -1
- package/artifact/portable/bin/cargo-hauler-flight.mjs +4 -4
- package/artifact/portable/bin/cargo-hauler.mjs +6 -6
- package/artifact/portable/install.mjs +1 -1
- package/artifact/portable/mcp/mcp-hauler-2b8242f9-flight.mjs +5 -5
- package/artifact/portable/mcp/mcp-hauler-2b8242f9.mjs +7 -7
- package/artifact/portable/mcp-apps/dashboard.html +1 -1
- package/artifact/portable/plugin.json +1 -1
- package/artifact/portable/scripts/hauler.mjs +4 -4
- package/dist/bin/cargo-hauler-flight.mjs +4 -4
- package/dist/bin/cargo-hauler.js +6 -6
- package/dist/bin/hauler.js +4 -4
- package/package.json +12 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3ad6b7e: Declare no runtime `dependencies`: `npm install -g cargo-hauler` fetches one tarball and nothing else. 0.4.7 listed the build-time stack (`@agent-bundle/runtime` as a pkg.pr.new tarball, `bashjsast` as a `github:` ref, `effect`, `react`, `zod`, …) under `dependencies` even though every shipped file bundles what it uses, so npm 12's default `allow-remote=none` / `allow-git=none` refused the install (`EALLOWREMOTE` for the tarball, `EALLOWGIT` for the git ref). The whole stack now lives under `devDependencies`; the emitted packs and `dist/bin` executables are unchanged. (#82)
|
|
8
|
+
|
|
3
9
|
## 0.4.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -393,7 +393,10 @@ The npm package ships one plugin per host under `artifact/<host>` — the
|
|
|
393
393
|
Claude Code plugin with its local marketplace, the Codex plugin, and the Cursor
|
|
394
394
|
plugin with its `install.mjs` — plus three executables: `hauler` (the CLI),
|
|
395
395
|
`cargo-hauler` (the routed commands), and `cargo-hauler-install`. Every pack
|
|
396
|
-
also contains an `INSTALL.md` with the exact commands for that host.
|
|
396
|
+
also contains an `INSTALL.md` with the exact commands for that host. The
|
|
397
|
+
package declares no runtime dependencies — every library the packs and
|
|
398
|
+
executables use is bundled into them — so `npm install` fetches this one
|
|
399
|
+
tarball and nothing else.
|
|
397
400
|
|
|
398
401
|
### With the bundled installer
|
|
399
402
|
|