Skip to content

Commit

Permalink
clarified CHANGELOG
Browse files Browse the repository at this point in the history
this is more helpful for end users
  • Loading branch information
FND committed Feb 18, 2019
1 parent 5994a7d commit 04839ba
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,23 @@ improvements for end users:

* added support for JSX fragments

`<>`/`</>` shorthand syntax can now be configured via `jsx.fragment`
`<></>` shorthand syntax can now be configured via `jsx.fragment`
(alongside `jsx.pragma`)

* removed `global` shim

introducing this was premature in the first place: faucet-pipeline is not in
the business of polyfilling - this should be handled at the application level
introducing this was premature in the first place: it might not be officially
called `global` after all, but faucet-pipeline is not in the business of
polyfilling anyway

this should be handled at the application level if necessary, for example by
creating and importing (early on) a module like this:

```javascript
if(typeof global === "undefined" && typeof window !== "undefined") {
window.global = window;
}
```

* renamed default identifier for ECMAScript module format: `es``esm`

Expand All @@ -31,10 +41,10 @@ improvements for end users:
* dropped Node 6 compatibility

April 2019 marks the end of life for this LTS version, so it should soon be
phased out by users.
phased out by users

While most functionality (namely anything but JSX) remains compatible for now,
we no longer offer any guarantees in that regard.
(while most functionality - namely anything but JSX - remains compatible for
now, we no longer offer any guarantees in that regard)

improvements for developers:

Expand Down

0 comments on commit 04839ba

Please sign in to comment.