From e7ef249b1d24a031059c78fb127d93a719966bc4 Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Sun, 11 Jul 2021 16:02:18 +0200 Subject: [PATCH] chore: update netlify configuration --- .netlify/netlify-plugin-pnpm/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.netlify/netlify-plugin-pnpm/index.js b/.netlify/netlify-plugin-pnpm/index.js index 90717145d..3ec3a1efb 100644 --- a/.netlify/netlify-plugin-pnpm/index.js +++ b/.netlify/netlify-plugin-pnpm/index.js @@ -2,7 +2,7 @@ module.exports = { onPreBuild: async ({ utils: { build, run } }) => { try { await run.command("npm install -g pnpm") - await run.command("pnpm install") + await run.command("pnpm install --ignore-scripts --frozen-lockfile") } catch (error) { return build.failBuild(error) }