diff --git a/scripts/run-registry.ts b/scripts/run-registry.ts index 8684ec1bad75..27a4c9628a05 100755 --- a/scripts/run-registry.ts +++ b/scripts/run-registry.ts @@ -108,7 +108,7 @@ const publish = (packages: { name: string; location: string }[], url: string) => () => new Promise((res, rej) => { logger.log(`🛫 publishing ${name} (${location})`); - const command = `cd ${location} && npm publish --registry ${url} --force --access restricted`; + const command = `cd ${location} && npm publish --registry ${url} --force --access restricted --ignore-scripts`; exec(command, (e) => { if (e) { rej(e);