Skip to content

Commit

Permalink
[Fix] ExportMap: pass languageOptions through in child context
Browse files Browse the repository at this point in the history
- utils/parse.js has support with tests for languageOptions,
  but languageOptions were never passed along in ExportMap
  • Loading branch information
timmywil authored and ljharb committed Jul 13, 2023
1 parent 3e1dd0b commit 1e912ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ExportMap.js
Expand Up @@ -791,7 +791,7 @@ let prevSettings = '';
* also calculate a cacheKey, where parts of the cacheKey hash are memoized
*/
function childContext(path, context) {
const { settings, parserOptions, parserPath } = context;
const { settings, parserOptions, parserPath, languageOptions } = context;

if (JSON.stringify(settings) !== prevSettings) {
settingsHash = hashObject({ settings }).digest('hex');
Expand All @@ -805,6 +805,7 @@ function childContext(path, context) {

return {
cacheKey: String(parserPath) + parserOptionsHash + settingsHash + String(path),
languageOptions,
settings,
parserOptions,
parserPath,
Expand Down

0 comments on commit 1e912ff

Please sign in to comment.