mirror of https://github.com/abpframework/abp.git
2 changed files with 16 additions and 2 deletions
@ -0,0 +1,14 @@ |
|||
// ESM syntax is supported.
|
|||
import execa from 'execa'; |
|||
import fse from 'fs-extra'; |
|||
|
|||
(async () => { |
|||
try { |
|||
await execa('yarn', ['install-new-dependencies'], { stdout: 'inherit' }); |
|||
} catch (error) { |
|||
console.error(error.stderr); |
|||
process.exit(1); |
|||
} |
|||
|
|||
process.exit(0); |
|||
})(); |
|||
Loading…
Reference in new issue