mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
const { spawn, execSync } = require('child_process');
|
||
|
const enginePaths = execSync('ls -d $PWD/addons/*').toString().split('\n').filter((p) => !!p);
|
||
|
enginePaths.forEach(enginePath => {
|
||
|
spawn('yarn', ['install'], {
|
||
|
env: process.env,
|
||
|
cwd: enginePath,
|
||
|
stdio: 'inherit'
|
||
|
});
|
||
|
});
|