[frameworks] add pnpm to framework install placeholders (#7587)

Add `pnpm` commands to framework `installCommand.placeholders` so that it appears in the UI.

Additionally, adds the `pnpm-lock.yaml` file to an ignore list like the other lock files.
This commit is contained in:
Ethan Arrowood
2022-03-22 12:52:07 -06:00
committed by GitHub
parent cdd2d69e07
commit cf477d45b2
2 changed files with 34 additions and 33 deletions

View File

@@ -694,6 +694,7 @@ export const build: BuildV2 = async ({
'node_modules/**',
'yarn.lock',
'package-lock.json',
'pnpm-lock.yaml',
'package.json',
'.vercel_build_output',
];