Skip to content

Commit

Permalink
Mention removal of default Flow support in History.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Newman committed Mar 24, 2020
1 parent 156bdcd commit 3a2a292
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
## v1.10.2, TBD

### Breaking changes

* The `babel-compiler` package, used by both `ecmascript` and
`typescript`, no longer supports stripping [Flow](https://flow.org/)
type annotations by default, which may be a breaking change if your
application (or Meteor package) relied on Flow syntax.

### Migration steps

* If you still need Babel's Flow plugins, you can install them with npm
and then enable them with a custom `.babelrc` file in your application's
(or package's) root directory:
```json
{
"plugins": [
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-flow-strip-types"
]
}
```

### Changes

* The `meteor-babel` npm package has been updated to version 7.9.0.

* The `typescript` npm package has been updated to version 3.8.3.
Expand Down

0 comments on commit 3a2a292

Please sign in to comment.