mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 03:26:07 +00:00
Reject local-cli promises with Error objects
Reviewed By: davidaurelio Differential Revision: D5581520 fbshipit-source-id: 4929906ac79271c17e65fbdf5ba635f06efefd76
This commit is contained in:
parent
b65fd09b91
commit
cc4de7abc4
@ -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 =
|
||||
|
@ -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 => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user