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 2504e3d commit 36055cdCopy full SHA for 36055cd
src/generators/api-links/index.mjs
@@ -2,10 +2,6 @@
2
3
import { basename, dirname, join } from 'node:path';
4
import { writeFile } from 'node:fs/promises';
5
-import {
6
- getBaseGitHubUrl,
7
- getCurrentGitHash,
8
-} from './utils/getBaseGitHubUrl.mjs';
9
import { extractExports } from './utils/extractExports.mjs';
10
import { findDefinitions } from './utils/findDefinitions.mjs';
11
import { checkIndirectReferences } from './utils/checkIndirectReferences.mjs';
@@ -56,7 +52,7 @@ export default {
56
52
57
53
const repository = 'https://github.com/nodejs/node';
58
54
59
- const tag = getCurrentGitHash(repositoryDirectory);
55
+ const tag = 'HEAD';
60
61
baseGithubLink = `${repository}/blob/${tag}`;
62
}
0 commit comments