Skip to content

Commit 1254b43

Browse files
committed
chore(release): 13.0.0
1 parent 5e12817 commit 1254b43

File tree

5 files changed

+2919
-2877
lines changed

5 files changed

+2919
-2877
lines changed

packages/bootstrap/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/bootstrap",
3-
"version": "0.11.1",
3+
"version": "0.12.0",
44
"description": "API for getting quickly set up with the TypeScript Compiler API.",
55
"keywords": ["typescript", "compiler", "bootstrap"],
66
"main": "dist/ts-morph-bootstrap.js",

packages/ts-morph/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
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+
<a name="13.0.0"></a>
6+
# [13.0.0](https://github.com/dsherret/ts-morph/compare/12.2.0...13.0.0) (2021-11-20)
7+
8+
9+
### Bug Fixes
10+
11+
* Do not throw an error if decorator expr is wrapped in a paren expr ([c77db30](https://github.com/dsherret/ts-morph/commit/c77db30)), closes [#1214](https://github.com/dsherret/ts-morph/issues/1214)
12+
13+
14+
### Chores
15+
16+
* Target ES2018 instead of ES2015 ([519b139](https://github.com/dsherret/ts-morph/commit/519b139))
17+
18+
19+
### Code Refactoring
20+
21+
* `Node.isXNode(node)` static type guard methods are now `Node.isX(node)` ([e5bcba9](https://github.com/dsherret/ts-morph/commit/e5bcba9)), closes [#1166](https://github.com/dsherret/ts-morph/issues/1166)
22+
* Remove already deprecated `WriterFunctions` and `TypeGuards` exports. ([be87373](https://github.com/dsherret/ts-morph/commit/be87373))
23+
24+
25+
### Features
26+
27+
* Add `AssertClause` and `AssertEntry` ([#1224](https://github.com/dsherret/ts-morph/issues/1224)) ([bcf694f](https://github.com/dsherret/ts-morph/commit/bcf694f))
28+
* Add `Node.hasStructure` type guard. ([0f7d9be](https://github.com/dsherret/ts-morph/commit/0f7d9be))
29+
* Change `readDirSync` to return directory entries instead of file paths ([f22a50d](https://github.com/dsherret/ts-morph/commit/f22a50d))
30+
* Make `Structure.isX` function more flexible ([a54dd69](https://github.com/dsherret/ts-morph/commit/a54dd69)), closes [#1219](https://github.com/dsherret/ts-morph/issues/1219)
31+
* Type only methods for `ImportSpecifier` and `ExportSpecifier` ([e93c96e](https://github.com/dsherret/ts-morph/commit/e93c96e))
32+
* TypeScript 4.5 support ([#1220](https://github.com/dsherret/ts-morph/issues/1220)) ([526e0dd](https://github.com/dsherret/ts-morph/commit/526e0dd))
33+
* Wrap more JS doc nodes ([5107999](https://github.com/dsherret/ts-morph/commit/5107999))
34+
35+
36+
### BREAKING CHANGES
37+
38+
* `Node.isXNode(node)` static type guard methods are now `Node.isX(node)` to reduce verbosity.
39+
* Targeting ES2018 instead of ES2015
40+
* Upgraded to TS 4.5
41+
* Removed already deprecated `WriterFunctions` and `TypeGuards` exports. Use `Writers` and `Node` instead.
42+
* `readDirSync` now returns directory entries.
43+
44+
45+
546
<a name="12.2.0"></a>
647
# [12.2.0](https://github.com/dsherret/ts-morph/compare/12.1.0...12.2.0) (2021-11-02)
748

packages/ts-morph/breaking-changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ View [CHANGELOG.md](CHANGELOG.md) for more detail on releases. This file is only
88
- Node type guards like `Node.isXNode(node)` have dropped the `Node` suffix because it was overly verbose—use `Node.isX(node)` now (ex. `Node.isAmbientable(node)`).
99
- The already deprecated `WriterFunctions` and `TypeGuards` exports were removed. Use `Writers` and `Node`.
1010
- `FileSystemHost#readDirSync` returns directory entries instead of file and dir path names.
11+
- Target ES2018 instead of ES2015.
1112

1213
## Version 12
1314

0 commit comments

Comments
 (0)