Skip to content

Commit

Permalink
[Fix] ExportMap: add caching after parsing for an ambiguous module
Browse files Browse the repository at this point in the history
  • Loading branch information
stenin-nikita committed Aug 24, 2022
1 parent 7cb6fcd commit 82a3ea7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ExportMap.js
Expand Up @@ -346,7 +346,11 @@ ExportMap.for = function (context) {
exportMap = ExportMap.parse(path, content, context);

// ambiguous modules return null
if (exportMap == null) return null;
if (exportMap == null) {
log('ignored path due to ambiguous parse:', path);
exportCache.set(cacheKey, null);
return null;
}

exportMap.mtime = stats.mtime;

Expand Down
3 changes: 3 additions & 0 deletions tests/files/typescript-declare-module.ts
@@ -0,0 +1,3 @@
declare module "typescript-declare-module-foo" {
export const foo: string;
}
13 changes: 13 additions & 0 deletions tests/src/core/getExports.js
Expand Up @@ -431,6 +431,19 @@ describe('ExportMap', function () {
ExportMap.parse('./baz.ts', 'export const baz = 5', differentContext);
expect(tsConfigLoader.tsConfigLoader.callCount).to.equal(2);
});

it('should cache after parsing for an ambiguous module', function () {
const source = './typescript-declare-module.ts';
const parseSpy = sinon.spy(ExportMap, 'parse');

expect(ExportMap.get(source, context)).to.be.null;

ExportMap.get(source, context);

expect(parseSpy.callCount).to.equal(1);

parseSpy.restore();
});
});
});
});
Expand Down

0 comments on commit 82a3ea7

Please sign in to comment.