mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
* makes closure compiler threaded * Dans PR with a closure compiler java version * Remove unused dep * Pin GCC * Prettier * Nit rename * Fix error handling * Name plugins consistently * Fix lint * Maybe this works? * or this * AppVeyor * Fix lint
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const semver = require('semver');
|
|
|
|
function resolveRelatively(importee, importer) {
|
|
if (semver.gte(process.version, '8.9.0')) {
|
|
return require.resolve(importee, {
|
|
paths: [path.dirname(importer)],
|
|
});
|
|
} else {
|
|
// `paths` argument is not available in older Node.
|
|
// This works though.
|
|
// https://github.com/nodejs/node/issues/5963
|
|
const Module = require('module');
|
|
return Module._findPath(importee, [
|
|
path.dirname(importer),
|
|
...module.paths,
|
|
]);
|
|
}
|
|
}
|
|
|
|
let resolveCache = new Map();
|
|
function useForks(forks) {
|
|
let resolvedForks = new Map();
|
|
Object.keys(forks).forEach(srcModule => {
|
|
const targetModule = forks[srcModule];
|
|
resolvedForks.set(
|
|
require.resolve(srcModule),
|
|
require.resolve(targetModule)
|
|
);
|
|
});
|
|
return {
|
|
name: 'scripts/rollup/plugins/use-forks-plugin',
|
|
resolveId(importee, importer) {
|
|
if (!importer || !importee) {
|
|
return null;
|
|
}
|
|
if (importee.startsWith('\u0000')) {
|
|
// Internal Rollup reference, ignore.
|
|
// Passing that to Node file functions can fatal.
|
|
return null;
|
|
}
|
|
let resolvedImportee = null;
|
|
let cacheKey = `${importer}:::${importee}`;
|
|
if (resolveCache.has(cacheKey)) {
|
|
// Avoid hitting file system if possible.
|
|
resolvedImportee = resolveCache.get(cacheKey);
|
|
} else {
|
|
try {
|
|
resolvedImportee = resolveRelatively(importee, importer);
|
|
} catch (err) {
|
|
// Not our fault, let Rollup fail later.
|
|
}
|
|
if (resolvedImportee) {
|
|
resolveCache.set(cacheKey, resolvedImportee);
|
|
}
|
|
}
|
|
if (resolvedImportee && resolvedForks.has(resolvedImportee)) {
|
|
// We found a fork!
|
|
return resolvedForks.get(resolvedImportee);
|
|
}
|
|
return null;
|
|
},
|
|
};
|
|
}
|
|
|
|
module.exports = useForks;
|