We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a7733 commit a77ae69Copy full SHA for a77ae69
src/Module.php
@@ -191,7 +191,7 @@ public function createBuildContext(): Context
191
$context->run('cd /build && composer config platform-check false');
192
$context->run('cd /build && composer install --no-autoloader --ignore-platform-reqs --prefer-dist');
193
if (file_exists("$basePath/package-lock.json")) {
194
- $context->run('cd /build && npm ci --no-audit');
+ $context->run('cd /build && npm ci --ignore-scripts --no-audit');
195
// Recursively compress individual files in node_modules
196
$context->run('gzip -r /build/node_modules -k -f');
197
}
0 commit comments