sync
This commit is contained in:
parent
ceb79c786a
commit
0ff8bfe1d9
1 changed files with 3 additions and 1 deletions
|
|
@ -287,7 +287,9 @@ export namespace Config {
|
||||||
|
|
||||||
// Install any additional dependencies defined in the package.json
|
// Install any additional dependencies defined in the package.json
|
||||||
// This allows local plugins and custom tools to use external packages
|
// This allows local plugins and custom tools to use external packages
|
||||||
await Npm.install(dir)
|
await Npm.install(dir).catch((err: any) => {
|
||||||
|
log.warn("failed to install dependencies", { dir, error: err.message })
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async function isWritable(dir: string) {
|
async function isWritable(dir: string) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue