Hogsend
CLI Reference

hogsend eject

Vendor a @hogsend/* package's source into vendor/<name> and rewrite the consumer dependency to a local file: reference.

Copy a @hogsend/* package's source into vendor/<name> and rewrite the consumer dependency to file:./vendor/<name>. Every other dependency keeps upgrading.

hogsend eject <package> [--force] [--cwd <dir>]

Eject is the last rung of the Extend → Patch → Eject editability ladder — reach for it only when you need to own a package's source outright. See Upgrading & Customizing for the full ladder.

Options

OptionDescription
--forceOverwrite an existing vendor/<name>.
--cwd <dir>Consumer repo root (defaults to the current directory).
-h, --helpShow this help.

Examples

hogsend eject @hogsend/email
hogsend eject @hogsend/email --force

After ejecting, install so the new local dependency is linked:

pnpm install

On this page