Bump plugin deps

This commit is contained in:
Gregory Schier
2024-08-22 11:27:57 -07:00
parent d1871b19ee
commit 5ba11ca788
20 changed files with 66 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
const {readdirSync, readFileSync} = require('node:fs');
const {execSync} = require('node:child_process');
const { readdirSync, readFileSync } = require('node:fs');
const { execSync } = require('node:child_process');
const path = require('node:path');
async function main() {
@@ -13,8 +13,8 @@ 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});
execSync(`npm install`, { cwd: pluginDir });
execSync(`npm run build`, { cwd: pluginDir });
}
}