Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix generated docs for distribution, not just for building docs #174

Merged
merged 1 commit into from
Mar 22, 2025
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/dist/
/out/
/generated/webgpu.ts
node_modules
.DS_Store
284 changes: 146 additions & 138 deletions dist/index.d.ts

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions fix-generated-comments.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import fs from 'fs';

async function main() {
let ts = fs.readFileSync('generated/index.d.ts', { encoding: 'utf-8' });
ts = ts
// convert [[#anchor]] to {@link spec_url}
// convert [[#anchor|text]] to {@link spec_url|text}
.replace(/([^#])\[\[([^\[].*?)\]\]/g, '$1{@link https://www.w3.org/TR/webgpu/$2}')

// convert {{ref}} to {@link ref}
// convert {{ref|text}} to {@link ref|text}
.replace(/\{\{(.*?)\}\}/g, '{@link $1}')

// convert {@link foo/method(...)} to {@link foo#method}
.replace(/\{@link ([^[}]+)\/(.*?)\(.*?\)}/g, '{@link $1#$2}')

// convert {@link foo#[[bar]]} to {@link foo}.`[[bar]]`
.replace(/\{@link ([^[}]+)#\[\[(.*?)]]}/g, '{@link $1}.`[[$2]]`')

// convert {@link foo#"bar"} to {@link foo} `"bar"`
.replace(/\{@link ([^[}]+)#"(.*?)"}/g, '{@link $1} `"$2"`')

// fix links of the form {@link foo|text} -> {@link foo | text}
.replace(/\{@link ([^}|]+)\|([^}|]+)\}/g, '{@link $1 | $2}')

// remove items that are known not to be linkable
.replace(/{@link Promise}/g, 'Promise')
.replace(/{@link ArrayBuffer}/g, 'ArrayBuffer')
.replace(/{@link Uint32Array}/g, 'Uint32Array')
.replace(/{@link RenderState}/g, 'RenderState')
.replace(/{@link double}/g, '`double`')

.replace(/<pre highlight=['"]?(.*)['"]?>/g, '```$1')
.replace(/<\/pre>/g, '```');

fs.writeFileSync('generated/index.d.ts', ts);
}

main();
134 changes: 67 additions & 67 deletions generated/index.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"scripts": {
"test": "for t in tests/*/ ; do (cd \"$t\" && npm i && npm test); done",
"build-docs": "cd tsdoc-src && npm ci && npm run build",
"generate": "bikeshed-to-ts --in ./gpuweb/spec/index.bs --out ./generated/index.d.ts --forceGlobal --nominal && prettier -w generated/index.d.ts",
"generate": "bikeshed-to-ts --in ./gpuweb/spec/index.bs --out ./generated/index.d.ts --forceGlobal --nominal && node fix-generated-comments.mjs && prettier -w generated/index.d.ts",
"format": "prettier -w dist/index.d.ts"
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion tsdoc-src/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/out
/webgpu.ts
38 changes: 0 additions & 38 deletions tsdoc-src/generate-webgpu-ts.mjs

This file was deleted.

2 changes: 1 addition & 1 deletion tsdoc-src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"scripts": {
"build": "node generate-webgpu-ts.mjs && typedoc --treatWarningsAsErrors ./webgpu.ts"
"build": "typedoc --treatWarningsAsErrors ../dist/index.d.ts"
},
"devDependencies": {
"@types/dom-webcodecs": "0.1.3",
Expand Down
2 changes: 1 addition & 1 deletion tsdoc-src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
},
"include": [
"./webgpu.ts"
"../dist/index.d.ts"
],
"exclude": [
"node_modules",
Expand Down
9 changes: 0 additions & 9 deletions tsdoc-src/typedoc.json

This file was deleted.

Loading