Skip to content

aube add

  • Usage: aube add [FLAGS] [PACKAGES]…

Add a dependency

Arguments

[PACKAGES]…

Package(s) to add

Flags

-D --save-dev

Add as dev dependency

-E --save-exact

Pin the exact resolved version (no ^ prefix)

-g --global

Install the package globally (into the aube/pnpm global directory) and link its binaries into the global bin directory. Mirrors pnpm add -g

-O --save-optional

Add as optional dependency

--ignore-scripts

Skip lifecycle scripts (no-op; aube already skips by default)

--save-peer

Add as a peer dependency (written to peerDependencies in package.json). By convention you usually pair this with --save-dev so the peer is also installed for local development; that's what pnpm does

Released under the MIT License.