mirror of https://github.com/status-im/metro.git
packager: Package.js: make read()-based API sync
Reviewed By: davidaurelio Differential Revision: D4745885 fbshipit-source-id: 3d327e5ca91fcbe7ec1d30ff8e6135b415074aa4
This commit is contained in:
parent
fc95a312b9
commit
ebd732784b
|
@ -232,7 +232,7 @@ class ResolutionRequest {
|
|||
|
||||
let p = fromModule.getPackage();
|
||||
if (p) {
|
||||
p = p.redirectRequire(toModuleName);
|
||||
p = Promise.resolve(p.redirectRequire(toModuleName));
|
||||
} else {
|
||||
p = Promise.resolve(toModuleName);
|
||||
}
|
||||
|
@ -470,12 +470,10 @@ class ResolutionRequest {
|
|||
|
||||
const packageJsonPath = path.join(potentialDirPath, 'package.json');
|
||||
if (this._hasteFS.exists(packageJsonPath)) {
|
||||
return this._moduleCache.getPackage(packageJsonPath)
|
||||
.getMain().then(
|
||||
main => this._tryResolve(
|
||||
const main = this._moduleCache.getPackage(packageJsonPath).getMain();
|
||||
return this._tryResolve(
|
||||
() => this._loadAsFile(main, fromModule, toModule),
|
||||
() => this._loadAsDir(main, fromModule, toModule)
|
||||
)
|
||||
() => this._loadAsDir(main, fromModule, toModule),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,13 @@ const path = require('path');
|
|||
|
||||
import type Cache from './Cache';
|
||||
|
||||
type PackageContent = {
|
||||
name: string,
|
||||
'react-native': mixed,
|
||||
browser: mixed,
|
||||
main: ?string,
|
||||
};
|
||||
|
||||
class Package {
|
||||
|
||||
path: string;
|
||||
|
@ -24,12 +31,7 @@ class Package {
|
|||
type: string;
|
||||
_cache: Cache;
|
||||
|
||||
_reading: Promise<{
|
||||
name: string,
|
||||
'react-native': mixed,
|
||||
browser: mixed,
|
||||
main: ?string,
|
||||
}>;
|
||||
_content: ?PackageContent;
|
||||
|
||||
constructor({file, cache}: {
|
||||
file: string,
|
||||
|
@ -39,10 +41,11 @@ class Package {
|
|||
this.root = path.dirname(this.path);
|
||||
this.type = 'Package';
|
||||
this._cache = cache;
|
||||
this._content = null;
|
||||
}
|
||||
|
||||
getMain() {
|
||||
return this.read().then(json => {
|
||||
const json = this.read();
|
||||
var replacements = getReplacements(json);
|
||||
if (typeof replacements === 'string') {
|
||||
return path.join(this.root, replacements);
|
||||
|
@ -60,18 +63,17 @@ class Package {
|
|||
|
||||
/* $FlowFixMe: `getReplacements` doesn't validate the return value. */
|
||||
return path.join(this.root, main);
|
||||
});
|
||||
}
|
||||
|
||||
isHaste() {
|
||||
return this._cache.get(this.path, 'package-haste', () =>
|
||||
this.read().then(json => !!json.name)
|
||||
Promise.resolve(!!this.read().name)
|
||||
);
|
||||
}
|
||||
|
||||
getName(): Promise<string> {
|
||||
return this._cache.get(this.path, 'package-name', () =>
|
||||
this.read().then(json => json.name)
|
||||
Promise.resolve(this.read().name)
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -79,9 +81,9 @@ class Package {
|
|||
this._cache.invalidate(this.path);
|
||||
}
|
||||
|
||||
redirectRequire(name: string) {
|
||||
return this.read().then(json => {
|
||||
var replacements = getReplacements(json);
|
||||
redirectRequire(name: string): string | false {
|
||||
const json = this.read();
|
||||
const replacements = getReplacements(json);
|
||||
|
||||
if (!replacements || typeof replacements !== 'object') {
|
||||
return name;
|
||||
|
@ -92,6 +94,7 @@ class Package {
|
|||
// support exclude with "someDependency": false
|
||||
return replacement === false
|
||||
? false
|
||||
/* $FlowFixMe: type of replacements is not being validated */
|
||||
: replacement || name;
|
||||
}
|
||||
|
||||
|
@ -124,21 +127,17 @@ class Package {
|
|||
}
|
||||
|
||||
return name;
|
||||
});
|
||||
}
|
||||
|
||||
read() {
|
||||
if (!this._reading) {
|
||||
this._reading = new Promise(
|
||||
resolve => resolve(JSON.parse(fs.readFileSync(this.path, 'utf8')))
|
||||
);
|
||||
read(): PackageContent {
|
||||
if (this._content == null) {
|
||||
this._content = JSON.parse(fs.readFileSync(this.path, 'utf8'));
|
||||
}
|
||||
|
||||
return this._reading;
|
||||
return this._content;
|
||||
}
|
||||
}
|
||||
|
||||
function getReplacements(pkg) {
|
||||
function getReplacements(pkg: PackageContent): mixed {
|
||||
let rn = pkg['react-native'];
|
||||
let browser = pkg.browser;
|
||||
if (rn == null) {
|
||||
|
|
Loading…
Reference in New Issue