pnpm install
Алиасы: i
pnpm install
используется для установки всех зависимостей проекта.
В среде CI установка завершается неудачно, если присутствует локфайл, но требуется его обновление.
Внутри воркспейса, pnpm install
устанавливает все зависимости во всех проектах. Если вы хотите отключить это поведение, задайте для recursive-install
значение false
.
TL;DR
Команда | Обозначение |
---|---|
pnpm i --offline | Установить оффлайн используя только хранилище (CAS) |
pnpm i --frozen-lockfile | pnpm-lock.yaml не будет обновлён |
pnpm i --lockfile-only | Только pnpm-lock.yaml будет обновлён |
Опции
--offline
- По умолчанию: false
- Тип: Boolean
If true
, pnpm will use only packages already available in the store. Если пакет не будет найден локально, установка завершится неудачно.
--prefer-offline
Добавлено в: v1.28.0
- По умолчанию: ложно
- Тип: Boolean
If true
, staleness checks for cached data will be bypassed, but missing data will be requested from the server. To force full offline mode, use --offline
.
--ignore-scripts
- По умолчанию: ложно
- Тип: Boolean
Не выполнять скрипты, определенные в package.json
в корне проекта и в его зависимостях.
Этот флаг не препятствует выполнению .pnpmfile.cjs
--prod, -P
pnpm will not install any package listed in devDependencies
if the NODE_ENV
environment variable is set to production. Use this flag to instruct pnpm to ignore NODE_ENV
and take its production status from this flag instead.
--dev, -D
Only devDependencies
are installed regardless of the NODE_ENV
.
--no-optional
optionalDependencies
are not installed.
--lockfile-only
Добавлено в: v1.26.0 (изначально называлось shrinkwrap-only
)
- По умолчанию: false
- Тип: Boolean
When used, only updates pnpm-lock.yaml
and package.json
. Nothing gets written to the node_modules
directory.
--fix-lockfile
Added in: v6.15.0
Fix broken lockfile entries automatically.
--frozen-lockfile
Добавлено в: v1.37.1 (изначально называлось frozen-shrinkwrap
)
- По умолчанию:
- For non-CI: false
- For CI: true, if a lockfile is present
- Тип: Boolean
If true
, pnpm doesn't generate a lockfile and fails to install if the lockfile is out of sync with the manifest / an update is needed or no lockfile is present.
--reporter=<название>
- По умолчанию:
- For TTY stdout: default
- For non-TTY stdout: append-only
- Type: default, append-only, ndjson, silent
Allows you to choose the reporter that will log debug info to the terminal about the installation progress.
- silent - no output is logged to the console, except fatal errors
- default - the default reporter when the stdout is TTY
- append-only (Added in v1.29.1) - the output is always appended to the end. No cursor manipulations are performed
- ndjson - the most verbose reporter. Prints all logs in ndjson format
--use-store-server
Добавлено в: v1.30.0
- По умолчанию: false
- Тип: Boolean
Starts a store server in the background. The store server will keep running after installation is done. To stop the store server, run pnpm server stop
--shamefully-hoist
- По умолчанию: false
- Тип: Boolean
Creates a flat node_modules
structure, similar to that of npm
or yarn
. WARNING: This is highly discouraged.