-
-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also pass the caller option to loadPartialConfig (#685)
* Also pass the caller option to loadPartialConfig * Remove unecessary call to injectCaller before transform
- Loading branch information
1 parent
a507914
commit 7d8500c
Showing
3 changed files
with
44 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
const babel = require("@babel/core"); | ||
|
||
module.exports = function injectCaller(opts) { | ||
if (!supportsCallerOption()) return opts; | ||
|
||
return Object.assign({}, opts, { | ||
caller: Object.assign( | ||
{ | ||
name: "babel-loader", | ||
|
||
// Webpack >= 2 supports ESM and dynamic import. | ||
supportsStaticESM: true, | ||
supportsDynamicImport: true, | ||
}, | ||
opts.caller, | ||
), | ||
}); | ||
}; | ||
|
||
// TODO: We can remove this eventually, I'm just adding it so that people have | ||
// a little time to migrate to the newer RCs of @babel/core without getting | ||
// hard-to-diagnose errors about unknown 'caller' options. | ||
let supportsCallerOptionFlag = undefined; | ||
function supportsCallerOption() { | ||
if (supportsCallerOptionFlag === undefined) { | ||
try { | ||
// Rather than try to match the Babel version, we just see if it throws | ||
// when passed a 'caller' flag, and use that to decide if it is supported. | ||
babel.loadPartialConfig({ | ||
caller: undefined, | ||
babelrc: false, | ||
configFile: false, | ||
}); | ||
supportsCallerOptionFlag = true; | ||
} catch (err) { | ||
supportsCallerOptionFlag = false; | ||
} | ||
} | ||
|
||
return supportsCallerOptionFlag; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters