Fix TypeDoc parse error on DeferredPromise typedef - #4125
Merged
Merged
Conversation
✅ Deploy Preview for dev-prismjs-com ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
DmitrySharabin
added a commit
to PrismJS/website
that referenced
this pull request
Sep 22, 2026
Picks up typedoc 0.28.20 and other patch/minor bumps. Needed to retrigger the deploy preview now that PrismJS/prism#4125 (the TypeDoc parse-error fix) has landed upstream. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
DmitrySharabin
added a commit
to PrismJS/website
that referenced
this pull request
Sep 22, 2026
* Ditch the `prism-` prefix from the names of the files with examples * Add `postinstall.mjs` * Remove redundant dependencies in favor of the `postinstall` script * Adjust 11ty settings accordingly * Update `.gitignore` * Fix the API docs URL * Update scripts - `examples.js` - `theme-swithcher.js` * Make the theme switcher work correctly * Adjust the download page * Update deps * Improve plugin downloads * Use the file highlight plugin * Use another Prism source file for the showcase * Adjust API docs generation * Better handle plugin docs + generate `_redirects` * Improve the postinstall script * Update dependencies Picks up typedoc 0.28.20 and other patch/minor bumps. Needed to retrigger the deploy preview now that PrismJS/prism#4125 (the TypeDoc parse-error fix) has landed upstream. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TypeDoc cannot parse a type parameter on a
@typedefname itself (DeferredPromise<T>); the generic has to come only from@template T. This broke TypeDoc for anyone building docs against this source, e.g. the website repo'snpm run build:apidocsstep.Verified: cloning this branch instead of the default branch and running the website's
typedocbuild goes from 3 errors to 0.Co-Authored-By: Claude Sonnet 5 noreply@anthropic.com