Add npm ci to plugin builds

This commit is contained in:
Gregory Schier
2024-07-19 14:41:59 -07:00
parent 77825ee89e
commit cc3cb6d14f

View File

@@ -13,6 +13,7 @@ async function main() {
const pkg = JSON.parse(readFileSync(path.join(pluginDir, 'package.json'), 'utf8'));
console.log('Building plugin', pkg.name, pluginDir);
execSync(`npm ci`, {cwd: pluginDir});
execSync(`npm run build`, {cwd: pluginDir});
}
}