mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
pnpm_{8,9}.fetchDeps: put all pnpm install arguments in separate lines
This commit is contained in:
parent
8fd90cd714
commit
27424c4c88
@ -60,7 +60,10 @@
|
||||
pnpm config set update-notifier false
|
||||
# pnpm is going to warn us about using --force
|
||||
# --force allows us to fetch all dependencies including ones that aren't meant for our host platform
|
||||
pnpm install --frozen-lockfile --ignore-script --force
|
||||
pnpm install \
|
||||
--force \
|
||||
--ignore-script \
|
||||
--frozen-lockfile
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
@ -24,7 +24,11 @@ pnpmConfigHook() {
|
||||
|
||||
echo "Installing dependencies"
|
||||
|
||||
pnpm install --offline --frozen-lockfile --ignore-script
|
||||
pnpm install \
|
||||
--offline \
|
||||
--ignore-script \
|
||||
--frozen-lockfile
|
||||
|
||||
|
||||
echo "Patching scripts"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user