mirror of https://github.com/status-im/metro.git
[react-packager] fix a typo s/pacakge/package
Summary: Closes https://github.com/facebook/react-native/pull/83 Github Author: Chengyin Liu <chengyin.liu@gmail.com> Test Plan: Imported from GitHub, without a `Test Plan:` line.
This commit is contained in:
parent
4e8a8e5a0e
commit
3d65001426
|
@ -147,7 +147,7 @@ DependecyGraph.prototype.resolveDependency = function(
|
||||||
dep = this._graph[modulePath];
|
dep = this._graph[modulePath];
|
||||||
if (dep == null) {
|
if (dep == null) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
'Cannot find package main file for pacakge: ' + packageJson._root
|
'Cannot find package main file for package: ' + packageJson._root
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return dep;
|
return dep;
|
||||||
|
|
Loading…
Reference in New Issue