Skip to content

Commit

Permalink
[Fix] 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 committed Jul 13, 2023
1 parent 3a5ad34 commit a59d1f9
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 { languageOptions, settings, parserOptions, parserPath } = 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 a59d1f9

Please sign in to comment.