We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73a0c3 commit 6ef0b5bCopy full SHA for 6ef0b5b
.npmignore
@@ -1,4 +1,6 @@
1
src
2
jest.config.js
3
+tsconfig.json
4
.eslintrc
-tsconfig.json
5
+.cache
6
+.github
src/index.ts
@@ -88,7 +88,7 @@ export = async function plugin(
88
visited = await mdxCache.get(key);
89
}
90
91
- if (visited && setAt <= visited.setAt) {
+ if (visited && setAt >= visited.setAt) {
92
linksMap[visited.path] = visited.links;
93
headingsMap[visited.path] = visited.headings;
94
continue;
0 commit comments