Skip to content

Commit

Permalink
Ignore scripts when pnpm installing?
Browse files Browse the repository at this point in the history
  • Loading branch information
abrenneke committed Oct 17, 2023
1 parent 991da3f commit d829c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/hooks/useLoadPackagePlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export function useLoadPackagePlugin(options: { onLog?: (message: string) => voi
// TODO not working
log('Installing NPM dependencies...\n');

const command = Command.sidecar('../sidecars/pnpm/pnpm', ['install', '--prod'], {
const command = Command.sidecar('../sidecars/pnpm/pnpm', ['install', '--prod', '--ignore-scripts'], {
cwd: pluginFilesPath,
});

Expand Down

0 comments on commit d829c49

Please sign in to comment.