-
-
Notifications
You must be signed in to change notification settings - Fork 734
crashes when upgrading from 0.26.11 to 0.27.0 or 0.27.1 #2789
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
Comments
This is happening for the PlayCanvas API reference too after the same upgrade. |
This appears to be because of the older TS version - I really need to get some automation in place to properly test with older TS versions... |
Annoyingly small patch with patch-package to make it work... will make a release with this later today. diff --git a/node_modules/typedoc/dist/lib/models/types.js b/node_modules/typedoc/dist/lib/models/types.js
index 15ce050..136db9e 100644
--- a/node_modules/typedoc/dist/lib/models/types.js
+++ b/node_modules/typedoc/dist/lib/models/types.js
@@ -1,4 +1,4 @@
-import * as ts from "typescript";
+import ts from "typescript";
import { getQualifiedName } from "../utils/tsutils.js";
import { ReflectionSymbolId } from "./reflections/ReflectionSymbolId.js";
import { findPackageForPath } from "../utils/fs.js"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Search terms
Expected Behavior
Should not crash.
Actual Behavior
Crashes.
Steps to reproduce the bug
You can see the behavior in this pull request: authts/oidc-client-ts#1757
Error:
Environment
The text was updated successfully, but these errors were encountered: