Skip to content

Commit da61fa9

Browse files
authored
Merge branch 'master' into only-add-typescript-plugin
2 parents 204d740 + 2dfb800 commit da61fa9

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [2.0.2] - 2019-07-05
10+
11+
- Lock `@babel/plugin-transform-typescript` version pending a fix to [babel/babel#10162](https://github.com/babel/babel/issues/10162) ([#751](https://github.com/typed-ember/ember-cli-typescript/pull/751))
12+
913
## [2.0.1] - 2019-04-10
1014

1115
### Fixed 🔧
@@ -543,7 +547,8 @@ We now use Babel 7's support for TypeScript to build apps and addons. Most of th
543547
* Basic, semi-working functionality.
544548

545549
[ember-cli-typify]: https://github.com/winding-lines/ember-cli-typify
546-
[unreleased]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.1...HEAD
550+
[unreleased]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.2...HEAD
551+
[2.0.2]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.1...v2.0.2
547552
[2.0.1]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.0...v2.0.1
548553
[2.0.0]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.0-rc.2...v2.0.0
549554
[2.0.0-rc.2]: https://github.com/typed-ember/ember-cli-typescript/compare/v2.0.0-rc.1...v2.0.0-rc.2

azure-pipelines.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ trigger:
33
branches:
44
include:
55
- master
6+
- v2
67
paths:
78
exclude:
89
- README.md

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-cli-typescript",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Allow ember apps to use typescript files.",
55
"keywords": [
66
"ember-addon",
@@ -39,7 +39,7 @@
3939
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -u"
4040
},
4141
"dependencies": {
42-
"@babel/plugin-transform-typescript": "^7.1.0",
42+
"@babel/plugin-transform-typescript": "~7.4.0",
4343
"ansi-to-html": "^0.6.6",
4444
"debug": "^4.0.0",
4545
"ember-cli-babel-plugin-helpers": "^1.0.0",

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -554,10 +554,10 @@
554554
dependencies:
555555
"@babel/helper-plugin-utils" "^7.0.0"
556556

557-
"@babel/plugin-transform-typescript@^7.1.0":
558-
version "7.4.0"
559-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.4.0.tgz#0389ec53a34e80f99f708c4ca311181449a68eb1"
560-
integrity sha512-U7/+zKnRZg04ggM/Bm+xmu2B/PrwyDQTT/V89FXWYWNMxBDwSx56u6jtk9SEbfLFbZaEI72L+5LPvQjeZgFCrQ==
557+
"@babel/plugin-transform-typescript@^7.1.0", "@babel/plugin-transform-typescript@~7.4.0":
558+
version "7.4.5"
559+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.4.5.tgz#ab3351ba35307b79981993536c93ff8be050ba28"
560+
integrity sha512-RPB/YeGr4ZrFKNwfuQRlMf2lxoCUaU01MTw39/OFE/RiL8HDjtn68BwEPft1P7JN4akyEmjGWAMNldOV7o9V2g==
561561
dependencies:
562562
"@babel/helper-plugin-utils" "^7.0.0"
563563
"@babel/plugin-syntax-typescript" "^7.2.0"

0 commit comments

Comments
 (0)