Skip to content

Commit e1e568c

Browse files
committed
fixup!
1 parent 6aec954 commit e1e568c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/generators/ast/index.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import { globSync } from 'glob';
66
import { read } from 'to-vfile';
77

88
import { getRemark } from '../../utils/remark.mjs';
9+
import createQueries from '../utils/queries/index.mjs';
910

11+
const { updateStabilityPrefixToLink } = createQueries();
1012
const remarkProcessor = getRemark();
1113

1214
/**
@@ -40,6 +42,8 @@ export default {
4042
filePaths.map(async path => {
4143
const vfile = await read(path);
4244

45+
updateStabilityPrefixToLink(vfile);
46+
4347
return {
4448
tree: remarkProcessor.parse(vfile),
4549
file: { stem: vfile.stem, basename: vfile.basename },

0 commit comments

Comments
 (0)