Skip to content

fix(deps): update dependency ts-morph to v28#135

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ts-morph-28.x
Open

fix(deps): update dependency ts-morph to v28#135
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ts-morph-28.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 19, 2026

This PR contains the following updates:

Package Change Age Confidence
ts-morph ^27.0.2^28.0.0 age confidence

Release Notes

dsherret/ts-morph (ts-morph)

v28.0.0

Compare Source

What's Changed

Note there are some breaking changes due to TypeScript 6.0. Read more here: https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/

As part of this release, structures can now be printed to a string using the printStructure function.

import { printStructure, StructureKind } from "ts-morph";

const code = printStructure({
  kind: StructureKind.Class,
  name: "MyClass",
  isExported: true,
  properties: [{ name: "myProp", type: "string" }],
  methods: [{
    name: "myMethod",
    parameters: [{ name: "param", type: "number" }],
    returnType: "void",
  }],
});
console.log(code);

Outputs:

export class MyClass {
  myProp: string;

  myMethod(param: number): void {
  }
}

New Contributors

Full Changelog: dsherret/ts-morph@27.0.2...28.0.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Apr 19, 2026

Open in StackBlitz

npm i https://pkg.pr.new/zinfer@135

commit: b74ed3e

@renovate renovate Bot force-pushed the renovate/ts-morph-28.x branch from 03fdd6a to f27f08c Compare April 29, 2026 09:53
Copy link
Copy Markdown

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no potential bugs to report.

View in Devin Review to see 1 additional finding.

Open in Devin Review

@renovate renovate Bot force-pushed the renovate/ts-morph-28.x branch from f27f08c to a9bdee3 Compare May 12, 2026 10:14
@renovate renovate Bot force-pushed the renovate/ts-morph-28.x branch from a9bdee3 to b74ed3e Compare May 18, 2026 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants