diff --git a/local-cli/dependencies/dependencies.js b/local-cli/dependencies/dependencies.js index 36034be37..f491e7f01 100644 --- a/local-cli/dependencies/dependencies.js +++ b/local-cli/dependencies/dependencies.js @@ -19,7 +19,7 @@ const {ASSET_REGISTRY_PATH} = require('../core/Constants'); function dependencies(argv, config, args, packagerInstance) { const rootModuleAbsolutePath = args.entryFile; if (!fs.existsSync(rootModuleAbsolutePath)) { - return Promise.reject(`File ${rootModuleAbsolutePath} does not exist`); + return Promise.reject(new Error(`File ${rootModuleAbsolutePath} does not exist`)); } const transformModulePath = diff --git a/local-cli/library/library.js b/local-cli/library/library.js index 6a8d36920..9dacc1134 100644 --- a/local-cli/library/library.js +++ b/local-cli/library/library.js @@ -35,7 +35,7 @@ function library(argv, config, args) { } if (fs.existsSync(libraryDest)) { - return Promise.reject(`Library already exists in ${libraryDest}`); + return Promise.reject(new Error(`Library already exists in ${libraryDest}`)); } walk(source).forEach(f => {