mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 04:43:09 +02:00
95a3565d1c
* Add --force to yarn in the installation script * CHAGELOG
27 lines
661 B
JavaScript
27 lines
661 B
JavaScript
const execa = require('execa');
|
|
|
|
(async () => {
|
|
console.log('installing dependencies of packages/backend ...');
|
|
|
|
await execa('yarn', ['--force', 'install'], {
|
|
cwd: __dirname + '/../packages/backend',
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
|
|
console.log('installing dependencies of packages/client ...');
|
|
|
|
await execa('yarn', ['install'], {
|
|
cwd: __dirname + '/../packages/client',
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
|
|
console.log('installing dependencies of packages/sw ...');
|
|
|
|
await execa('yarn', ['install'], {
|
|
cwd: __dirname + '/../packages/sw',
|
|
stdout: process.stdout,
|
|
stderr: process.stderr,
|
|
});
|
|
})();
|