Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Fix] ExportMap: pass languageOptions through in child context
- utils/parse.js has support with tests for languageOptions,
  but languageOptions were never passed along in ExportMap
  • Loading branch information
timmywil committed Aug 20, 2023
commit 6148a43ff2279d1dbec7052fb22d8afe5f7375ee
3 changes: 2 additions & 1 deletion src/ExportMap.js
Original file line number Diff line number Diff line change
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