Skip to content

Commit 061a3fe

Browse files
authored
24.0.0 (#1577)
1 parent d7bad92 commit 061a3fe

File tree

9 files changed

+3747
-317
lines changed

9 files changed

+3747
-317
lines changed

package-lock.json

Lines changed: 3720 additions & 305 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ts-morph/bootstrap",
3-
"version": "0.24.0",
3+
"version": "0.25.0",
44
"description": "API for getting quickly set up with the TypeScript Compiler API.",
55
"keywords": [
66
"typescript",
@@ -24,7 +24,7 @@
2424
"rollup": "rollup -c"
2525
},
2626
"dependencies": {
27-
"@ts-morph/common": "~0.24.0"
27+
"@ts-morph/common": "~0.25.0"
2828
},
2929
"devDependencies": {
3030
"@rollup/plugin-typescript": "^11.1.6",

packages/bootstrap/scripts/buildDeno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fileSystem.writeFileSync(
4545
fileSystem.writeFileSync(
4646
`${destPath}/basic_test.ts`,
4747
`
48-
import { assertEquals } from "jsr:@std/assert@0.225.3";
48+
import { assertEquals } from "jsr:@std/assert@1";
4949
import { createProjectSync } from "./mod.ts";
5050
5151
// todo: Eventually all tests run for the node package should also be run for Deno

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ts-morph/common",
3-
"version": "0.24.0",
3+
"version": "0.25.0",
44
"description": "Common functionality for ts-morph packages.",
55
"main": "dist/ts-morph-common.js",
66
"author": "David Sherret",

packages/common/scripts/buildDeno.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ fileSystem.writeFileSync(
6565
"license": "MIT",
6666
"exports": "./mod.ts",
6767
"imports": {
68-
"@std/fs": "jsr:@std/fs@^0.229.3",
69-
"@std/path": "jsr:@std/path@^0.225.2",
68+
"@std/fs": "jsr:@std/fs@1",
69+
"@std/path": "jsr:@std/path@1",
7070
},
7171
},
7272
null,

packages/common/src/runtimes/DenoRuntime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export class DenoRuntime {
2424
return stdPath.globToRegExp(pattern, {
2525
extended: true,
2626
globstar: true,
27-
os: "linux", // use the same behaviour across all operating systems
2827
}).test(path);
2928
}
3029
}

packages/ts-morph/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,23 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5-
## [23.0.0](https://github.com/dsherret/ts-morph/compare/22.0.0...23.0.0) (2024-06-23)
5+
## [24.0.0](https://github.com/dsherret/ts-morph/compare/23.0.0...24.0.0) (2024-10-05)
6+
7+
### BREAKING CHANGES
8+
9+
* Upgraded to TypeScript 5.6
10+
11+
### Features
612

13+
* TypeScript 5.6 ([#1576](https://github.com/dsherret/ts-morph/issues/1576)) ([d7bad92](https://github.com/dsherret/ts-morph/commit/d7bad92f6922c4043ede5872ded3dc4a46f25587))
14+
15+
16+
### Bug Fixes
17+
18+
* getBodyText() doesn't work as would be expected ([#1560](https://github.com/dsherret/ts-morph/issues/1560)) ([81dc87d](https://github.com/dsherret/ts-morph/commit/81dc87dc3705b2827dd188e35c47e21d46130175))
19+
* getDerivedClasses() isn't correct in some cases ([#1557](https://github.com/dsherret/ts-morph/issues/1557)) ([0d38985](https://github.com/dsherret/ts-morph/commit/0d38985c3a701fa38c379332e188812f5302d503))
20+
21+
## [23.0.0](https://github.com/dsherret/ts-morph/compare/22.0.0...23.0.0) (2024-06-23)
722

823
### BREAKING CHANGES
924

packages/ts-morph/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-morph",
3-
"version": "23.0.0",
3+
"version": "24.0.0",
44
"description": "TypeScript compiler wrapper for static analysis and code manipulation.",
55
"main": "dist/ts-morph.js",
66
"typings": "lib/ts-morph.d.ts",
@@ -44,8 +44,8 @@
4444
},
4545
"homepage": "https://github.com/dsherret/ts-morph#readme",
4646
"dependencies": {
47-
"@ts-morph/common": "~0.24.0",
48-
"code-block-writer": "^13.0.1"
47+
"@ts-morph/common": "~0.25.0",
48+
"code-block-writer": "^13.0.3"
4949
},
5050
"devDependencies": {
5151
"@rollup/plugin-typescript": "^11.1.6",
@@ -58,6 +58,7 @@
5858
"cross-env": "^7.0.3",
5959
"diff": "^5.2.0",
6060
"mocha": "10.4.0",
61+
"standard-version": "^9.5.0",
6162
"rimraf": "^5.0.7",
6263
"rollup": "=4.18.0",
6364
"ts-node": "10.9.2",

packages/ts-morph/scripts/buildDeno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Note: These modules are not tested that well as I have not implemented a way to
7676
fileSystem.writeFileSync(
7777
`${destPath}/basic_test.ts`,
7878
`
79-
import { assertEquals } from "jsr:@std/assert@0.225.3";
79+
import { assertEquals } from "jsr:@std/assert@1";
8080
import { Project } from "./mod.ts";
8181
8282
// todo: Eventually all tests run for the node package should also be run for Deno

0 commit comments

Comments
 (0)