-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
major release- 7.0.0 #318
major release- 7.0.0 #318
Conversation
4d55c46
to
c4dcfb9
Compare
BREAKING CHANGE: running web-scripts without arguments exits code 1 now instead of exiting 0
…312) - updating the project to use prettier 2.0 BREAKING CHANGE: prettier 2.0 may introduce breaking changes
…int (#310) * feat: prettier 2.0; update project to use top-level lint and format - updating the project to use prettier 2.0 BREAKING CHANGE: prettier 2.0 may introduce breaking changes * improvement(web-scripts): make stylecheck and typecheck default for lint the lint script will now default typechecking and stylechecking to true by default. You may shut these off with `--no-typecheck` and `--no-stylecheck`. BREAKING CHANGE: Users who have projects incompatible with TypeScript checks or with projects that do not user prettier will now fail yarn lint.
.split('\n') | ||
.forEach(dbg); | ||
if (resp.stdout) resp.stdout.toString().split('\n').forEach(dbg); | ||
if (resp.stderr) resp.stderr.toString().split('\n').forEach(dbg); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this change due to some updated prettier defaults.
@@ -26,7 +26,7 @@ module.exports = { | |||
trailingComma: 'all', | |||
// bracketSpacing: true, | |||
// jsxBracketSameLine: false, | |||
// arrowParens: 'avoid', | |||
arrowParens: 'avoid', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prettier changed its default value. I personally think we should talk about changing the arrowParens value, but maybe for a future major.
landing three breaking changes at once to release 7.0.0!