Skip to content

Update dependency ts-morph to v28 - #2042

Merged
udondan merged 1 commit into
mainfrom
renovate/ts-morph-28.x
Aug 11, 2026
Merged

Update dependency ts-morph to v28#2042
udondan merged 1 commit into
mainfrom
renovate/ts-morph-28.x

Conversation

@renovate

@renovate renovate Bot commented Apr 12, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ts-morph ^27.0.0^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 is behind base branch, 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.

@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 16 times, most recently from 98818b1 to b00bb70 Compare April 19, 2026 12:47
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 11 times, most recently from fbacd3c to 3ff39d8 Compare April 28, 2026 01:42
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 3 times, most recently from 42fbd6d to 062f5e7 Compare April 30, 2026 03:11
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 8 times, most recently from e06638c to 9213f84 Compare May 16, 2026 01:42
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 5 times, most recently from ad75477 to 08d0dc1 Compare May 22, 2026 01:48
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 10 times, most recently from e0a4dd5 to ada1c14 Compare June 2, 2026 02:06
@renovate
renovate Bot force-pushed the renovate/ts-morph-28.x branch 6 times, most recently from 26b7c14 to ee41a73 Compare June 5, 2026 01:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant