-
Notifications
You must be signed in to change notification settings - Fork 3
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
chore(deps): update dependency prettier to v1.19.1 #38
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #38 +/- ##
=======================================
Coverage 19.25% 19.25%
=======================================
Files 16 16
Lines 187 187
Branches 31 31
=======================================
Hits 36 36
Misses 121 121
Partials 30 30 Continue to review full report at Codecov.
|
ef263ab
to
ed829c3
Compare
ed829c3
to
4aa0081
Compare
4aa0081
to
8e5780c
Compare
8e5780c
to
dc391b9
Compare
dc391b9
to
85ed146
Compare
85ed146
to
39f08bd
Compare
39f08bd
to
1d44373
Compare
1d44373
to
d47d2e0
Compare
d47d2e0
to
c9e8e64
Compare
c9e8e64
to
c551aae
Compare
c551aae
to
7636bdd
Compare
7636bdd
to
9ca59e8
Compare
9ca59e8
to
fca4073
Compare
8b839ce
to
41a3b97
Compare
41a3b97
to
efecabe
Compare
efecabe
to
a3b3ee6
Compare
a3b3ee6
to
7e7ee8d
Compare
7e7ee8d
to
8c5b7c0
Compare
8c5b7c0
to
b198e2e
Compare
b198e2e
to
75acaf1
Compare
75acaf1
to
28c33ca
Compare
28c33ca
to
88363e0
Compare
88363e0
to
7abed93
Compare
7abed93
to
af6fc90
Compare
af6fc90
to
af34474
Compare
af34474
to
a0a9270
Compare
a0a9270
to
59b2db3
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This PR contains the following updates:
1.9.2
->1.19.1
Release Notes
prettier/prettier
v1.19.1
Compare Source
diff
CLI
Fix
--stdin
regression in 1.19.0 (#6894 by @lydell)TypeScript
Fix formatting of union type as arrow function return type (#6896 by @thorn0)
v1.19.0
Compare Source
diff
🔗 Release Notes
v1.18.2
Compare Source
diff
TypeScript: only add trailing commas in tuples for
--trailing-comma=all
(#6199 by @duailibe)In Prettier 1.18 we added trailing commas in tuples when
--trailing-comma=all
, but it was also adding for--trailing-comma=es5
.v1.18.1
Compare Source
diff
TypeScript: Add trailing comma in tsx, only for arrow function (#6190 by @sosukesuzuki)
Prettier inserts a trailing comma to single type parameter for arrow functions in tsx, since v 1.18. But, this feature inserts a trailing comma to type parameter for besides arrow functions too (e.g, function , interface). This change fix it.
Config: Match dotfiles in config overrides (#6194 by @duailibe)
When using
overrides
in the config file, Prettier was not matching dotfiles (files that start with.
). This was fixed in 1.18.1v1.18.0
Compare Source
diff
🔗 Release Notes
v1.17.1
Compare Source
diff
Range: Fix ranged formatting not using the correct line width (#6050 by @mathieulj)
JavaScript: Fix closure compiler typecasts ([#5947] by @jridgewell)
If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.
JavaScript: respect parenthesis around optional chaining before await (#6087 by @evilebottnawi)
Handlebars: Fix {{else}}{{#if}} into {{else if}} merging (#6080 by @dcyriller)
JavaScript: Improved multiline closure compiler typecast comment detection (#6070 by @yangsu)
Previously, multiline closure compiler typecast comments with lines that
start with * weren't flagged correctly and the subsequent parenthesis were
stripped. Prettier 1.17.1 fixes this issue.
v1.17.0
Compare Source
diff
🔗 Release Notes
v1.16.4
Compare Source
diff
API: Fix
prettier.getSupportInfo()
reporting babel parser for older versions of Prettier. (#5826 by @azz)In version
1.16.0
of Prettier, thebabylon
parser was renamed tobabel
. Unfortunately this lead to a minor breaking change:prettier.getSupportInfo('1.15.0')
would report that it supportedbabel
, notbabylon
, which breaks text-editor integrations. This has now been fixed.v1.16.3
Compare Source
diff
TypeScript: Revert "Update typescript-estree to new package name" (#5818 by @ikatyang)
There's an internal change introduced in Prettier 1.16.2,
which updated
typescript-estree
to its new package name,but unfortunately it broke the output
so we reverted it as a temporary workaround for now.
v1.16.2
Compare Source
diff
CLI: Fix CI detection to avoid unwanted TTY behavior (#5804 by @kachkaev)
In Prettier 1.16.0 and 1.16.1,
--list-different
and--check
logged every file in some CI environments, instead of just unformatted files.This unwanted behavior is now fixed.
HTML: Do not format non-normal whitespace as normal whitespace (#5797 by @ikatyang)
Previously, only non-breaking whitespaces (U+00A0) are marked as non-normal whitespace,
which means other non-normal whitespaces such as non-breaking narrow whitespaces (U+202F)
could be formatted as normal whitespaces, which breaks the output. We now follow the spec to
exclude all non-ASCII whitespace from whitespace normalization.
(
·
represents a non-breaking narrow whitespace)JavaScript: Fix record type cast comment detection (#5793 by @yangsu)
Previously, type cast comments with record types were ignored and prettier
stripped the subsequent parens. Prettier 1.16.2 handles these cases correctly.
v1.16.1
Compare Source
diff
JavaScript: Do not format functions with arguments as react hooks (#5778 by @SimenB)
The formatting added in Prettier 1.16 would format any function receiving an
arrow function and an array literal to match React Hook's documentation.
Prettier will now format this the same as before that change if the arrow
function receives any arguments.
JavaScript: Add necessary parentheses for decorators (#5785 by @ikatyang)
Parentheses for decorators with nested call expressions are optional for legacy decorators
but they're required for decorators in the current proposal.
TypeScript: Stable parentheses for function type in the return type of arrow function (#5790 by @ikatyang)
There's a regression introduced in 1.16 that
parentheses for function type in the return type of arrow function were kept adding/removing.
Their parentheses are always printed now.
MDX: Correctly recognize inline JSX (#5783 by @ikatyang)
Previously, some inline JSXs are wrongly recognized as block HTML/JSX,
which causes unexpected behaviors. This issue is now fixed.
v1.16.0
Compare Source
diff
🔗 Release Notes
v1.15.3
Compare Source
diff
htm
(#5565)html
templates (#5544)module
intonamespace
and break/hug their body correctly (#5551)// prettier-ignore
(#5469)<! ... >
/<? ... >
(#5565)<script>
(#5527)<textarea>
are sensitive (#5468)<pre>
correctly (#5473)then
andelse
in*ngIf
(#5542)slot-scope
correctly (#5563)---
(#5502)ignored
field correctly in.getFileInfo()
with absolute filePath (#5570).js
config files did not respect.clearConfigCache()
(#5558)unset
in.editorconfig
(#5550)0
for--list-different
+--write
(#5512)v1.15.2
Compare Source
diff
createSelector
as function composition (#5430)extends
(#5432)module
andnamespace
correctly (#5432)<pre>
with interpolation (#5400)<template>
with unknownlang
(#5388)+
(#5405)v-on
attribute value (#5418)v1.15.1
Compare Source
diff
v1.15.0
Compare Source
diff
🔗 Release Notes
v1.14.3
Compare Source
diff
v1.14.2
Compare Source
diff
v1.14.1
Compare Source
diff
it("should ...", fakeAsync(() => { ...
correctly. (#4954)static
(#4910)v1.14.0
Compare Source
diff
🔗 Release Notes
v1.13.7
Compare Source
diff
eval("require")
in the distributed code (#4766)v1.13.6
Compare Source
diff
v1.13.5
Compare Source
diff
v1.13.4
Compare Source
diff
v1.13.3
Compare Source
diff
hasOwnProperty
and other functions inObject
's prototype (#4603)--debug-check
and--list-different
(#4600)v1.13.2
Compare Source
diff
v1.13.1
Compare Source
diff
v1.13.0
Compare Source
diff
🔗 Release Notes
v1.12.1
Compare Source
diff
v1.12.0
Compare Source
diff
🔗 Release Notes
v1.11.1
Compare Source
diff
v1.11.0
Compare Source
diff
🔗 Release Notes
v1.10.2
Compare Source
diff
v1.10.1
Compare Source
diff
v1.10.0
Compare Source
diff
🔗 Release Notes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.