Skip to content

Commit 04839ba

Browse files
committed
clarified CHANGELOG
this is more helpful for end users
1 parent 5994a7d commit 04839ba

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,23 @@ improvements for end users:
1616

1717
* added support for JSX fragments
1818

19-
`<>`/`</>` shorthand syntax can now be configured via `jsx.fragment`
19+
`<></>` shorthand syntax can now be configured via `jsx.fragment`
2020
(alongside `jsx.pragma`)
2121

2222
* removed `global` shim
2323

24-
introducing this was premature in the first place: faucet-pipeline is not in
25-
the business of polyfilling - this should be handled at the application level
24+
introducing this was premature in the first place: it might not be officially
25+
called `global` after all, but faucet-pipeline is not in the business of
26+
polyfilling anyway
27+
28+
this should be handled at the application level if necessary, for example by
29+
creating and importing (early on) a module like this:
30+
31+
```javascript
32+
if(typeof global === "undefined" && typeof window !== "undefined") {
33+
window.global = window;
34+
}
35+
```
2636

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

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

3343
April 2019 marks the end of life for this LTS version, so it should soon be
34-
phased out by users.
44+
phased out by users
3545

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

3949
improvements for developers:
4050

0 commit comments

Comments
 (0)