mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-03 15:06:27 +09:00
Fix Cannot find module
issue (#8770)
* Add --force to yarn in the installation script * CHAGELOG
This commit is contained in:
@ -3,7 +3,7 @@ const execa = require('execa');
|
||||
(async () => {
|
||||
console.log('installing dependencies of packages/backend ...');
|
||||
|
||||
await execa('yarn', ['install'], {
|
||||
await execa('yarn', ['--force', 'install'], {
|
||||
cwd: __dirname + '/../packages/backend',
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
|
Reference in New Issue
Block a user