Skip to content

Commit

Permalink
chore(release): 13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Nov 20, 2021
1 parent 5e12817 commit 1254b43
Show file tree
Hide file tree
Showing 5 changed files with 2,919 additions and 2,877 deletions.
2 changes: 1 addition & 1 deletion packages/bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-morph/bootstrap",
"version": "0.11.1",
"version": "0.12.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": ["typescript", "compiler", "bootstrap"],
"main": "dist/ts-morph-bootstrap.js",
Expand Down
41 changes: 41 additions & 0 deletions packages/ts-morph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,47 @@

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.

<a name="13.0.0"></a>
# [13.0.0](https://github.com/dsherret/ts-morph/compare/12.2.0...13.0.0) (2021-11-20)


### Bug Fixes

* 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)


### Chores

* Target ES2018 instead of ES2015 ([519b139](https://github.com/dsherret/ts-morph/commit/519b139))


### Code Refactoring

* `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)
* Remove already deprecated `WriterFunctions` and `TypeGuards` exports. ([be87373](https://github.com/dsherret/ts-morph/commit/be87373))


### Features

* Add `AssertClause` and `AssertEntry` ([#1224](https://github.com/dsherret/ts-morph/issues/1224)) ([bcf694f](https://github.com/dsherret/ts-morph/commit/bcf694f))
* Add `Node.hasStructure` type guard. ([0f7d9be](https://github.com/dsherret/ts-morph/commit/0f7d9be))
* Change `readDirSync` to return directory entries instead of file paths ([f22a50d](https://github.com/dsherret/ts-morph/commit/f22a50d))
* 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)
* Type only methods for `ImportSpecifier` and `ExportSpecifier` ([e93c96e](https://github.com/dsherret/ts-morph/commit/e93c96e))
* TypeScript 4.5 support ([#1220](https://github.com/dsherret/ts-morph/issues/1220)) ([526e0dd](https://github.com/dsherret/ts-morph/commit/526e0dd))
* Wrap more JS doc nodes ([5107999](https://github.com/dsherret/ts-morph/commit/5107999))


### BREAKING CHANGES

* `Node.isXNode(node)` static type guard methods are now `Node.isX(node)` to reduce verbosity.
* Targeting ES2018 instead of ES2015
* Upgraded to TS 4.5
* Removed already deprecated `WriterFunctions` and `TypeGuards` exports. Use `Writers` and `Node` instead.
* `readDirSync` now returns directory entries.



<a name="12.2.0"></a>
# [12.2.0](https://github.com/dsherret/ts-morph/compare/12.1.0...12.2.0) (2021-11-02)

Expand Down
1 change: 1 addition & 0 deletions packages/ts-morph/breaking-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ View [CHANGELOG.md](CHANGELOG.md) for more detail on releases. This file is only
- 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)`).
- The already deprecated `WriterFunctions` and `TypeGuards` exports were removed. Use `Writers` and `Node`.
- `FileSystemHost#readDirSync` returns directory entries instead of file and dir path names.
- Target ES2018 instead of ES2015.

## Version 12

Expand Down
Loading

0 comments on commit 1254b43

Please sign in to comment.