You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+35-1Lines changed: 35 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## 3.3.0 (2019-xx-xx)
2
2
3
-
DRAFT
3
+
v3.3.0 is a minor release that adds new features, including custom templates and support for the new optional chaining and nullish coalescing operators.
4
4
5
5
### Custom Templates
6
6
@@ -41,6 +41,40 @@ We've added support for [numeric separators](https://github.com/tc39/proposal-nu
41
41
101_475_938.38; // And this is hundreds of millions
42
42
```
43
43
44
+
### no-unexpected-multiline
45
+
46
+
We've removed this rule as it is not compatible with Prettier. If you rely on this rule you can re-enable it by [extending our ESLint config](https://create-react-app.dev/docs/setting-up-your-editor/#experimental-extending-the-eslint-config) and adding the following:
47
+
48
+
```json
49
+
{
50
+
"extends": "react-app",
51
+
"overrides": [
52
+
{
53
+
"files": ["**/*.{js,ts?(x)}"],
54
+
"rules": {
55
+
"no-unexpected-multiline": "warn"
56
+
}
57
+
}
58
+
]
59
+
}
60
+
```
61
+
62
+
<!-- INSERT LERNA CHANGELOG -->
63
+
64
+
### Migrating from 3.2.0 to 3.3.0
65
+
66
+
Inside any created project that has not been ejected, run:
v3.2.0 is a minor release that adds support for production profiling and ignoring TypeScript type errors to make migrating JavaScript projects to TypeScript easier. It also includes other minor bug fixes and documentation updates.
0 commit comments