Skip to content

aube install

  • Usage: aube install [FLAGS]

Install all dependencies

Flags

-P --prod

Skip devDependencies; install only production deps

--dangerously-allow-all-builds

Allow every dependency's lifecycle scripts to run. Bypasses the allowBuilds allowlist. Do not use in CI

--frozen-lockfile

Error if the lockfile drifts from package.json (default in CI)

--ignore-scripts

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

--lockfile-only

Resolve dependencies and write the lockfile, but don't link node_modules. Useful for CI workflows that only update the lockfile

--no-frozen-lockfile

Always re-resolve, even if the lockfile is up to date

--no-optional

Skip optionalDependencies; don't install optional native modules

--offline

Fail if any metadata or tarball isn't already in the local cache. Never hits the network

--prefer-frozen-lockfile

Use lockfile when fresh, re-resolve when stale (default outside CI)

--prefer-offline

Prefer cached metadata over revalidation; only hit the network on a miss

--resolution-mode <MODE>

How to resolve version ranges: highest (pnpm's classic behavior) or time-based (pick the lowest satisfying direct dep and constrain transitives by a publish-date cutoff). Accepts pnpm's aliases time and lowest-direct. When omitted, falls back to the resolution-mode key in .npmrc / pnpm-workspace.yaml

Released under the MIT License.