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
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