René's URL Explorer Experiment


Title: Update dependency prettier to v2 by renovate[bot] · Pull Request #608 · coderplex-org/coderplex · GitHub

Open Graph Title: Update dependency prettier to v2 by renovate[bot] · Pull Request #608 · coderplex-org/coderplex

X Title: Update dependency prettier to v2 by renovate[bot] · Pull Request #608 · coderplex-org/coderplex

Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence prettier (source) 1.18.2 -> 2.2.1 Release Notes prettier/prettier v2.2.1 Compare Source diff Fix formatting for AssignmentExpression with ClassExpression (#​9741 by @​sosukesuzuki) // Input module.exports = class A extends B { method() { console.log("foo"); } }; // Prettier 2.2.0 module.exports = class A extends ( B ) { method() { console.log("foo"); } }; // Prettier 2.2.1 module.exports = class A extends B { method() { console.log("foo"); } }; v2.2.0 Compare Source diff 🔗 Release Notes v2.1.2 Compare Source diff Fix formatting for directives in fields (#​9116 by @​sosukesuzuki) v2.1.1 Compare Source diff Fix format on html with frontMatter (#​9043 by @​fisker) --- layout: foo --- Test abc. TypeError: Cannot read property 'end' of undefined ... --- layout: foo --- Test abc. Fix broken format for ...infer T (#​9044 by @​fisker) // Input type Tail = T extends [infer U, ...infer R] ? R : never; // Prettier stable type Tail = T extends [infer U, ...(infer R)] ? R : never; // Prettier master type Tail = T extends [infer U, ...infer R] ? R : never; Fix format on style[lang="sass"] (#​9051 by @​fisker) Fix self-closing blocks and blocks with src attribute format (#​9052, #​9055 by @​fisker) v2.1.0 Compare Source diff 🔗 Release Notes v2.0.5 Compare Source diff Less: Fix formatting of :extend (#​7984 by @​fisker) // Input .class { &:extend(.some-class .some-other-class .some-very-loooooooooooooong-class all); } // Prettier 2.0.4 .class { &:extend( .some-class .some-other-class .some-very-loooooooooooooong-class all ); } // Prettier 2.0.4 (Second format) .class { &: extend( .some-class .some-other-class .some-very-loooooooooooooong-class all ); } // Prettier 2.0.5 .class { &:extend( .some-class .some-other-class .some-very-loooooooooooooong-class all ); } Editor integration: Use resolve if builtin require.resolve is overridden (#​8072 by @​fisker) This fixes issues that the users of Atom and WebStorm faced with 2.0.4. Prettier now switches to using the resolve module for resolving configuration files and plugins if it detects that require.resolve isn't Node's builtin function (doesn't support the second argument), which happens in environments like editor extensions. To force the fallback, set the PRETTIER_FALLBACK_RESOLVE environment variable to true. v2.0.4 Compare Source diff Revert #​7869, "[TypeScript] format TSAsExpression with same logic as BinaryExpression" (#​7958) v2.0.3 Compare Source diff JavaScript Fix prettier-ignore inside JSX (#​7877 by @​fisker) // Input

{ /* prettier-ignore */ x ? : }
; // Prettier 2.0.2 (first output)
{/* prettier-ignore */ x ? : }
; // Prettier 2.0.2 (second output)
{/* prettier-ignore */ x ? : }
; // Prettier 2.0.3
{ /* prettier-ignore */ x ? : }
; Fix regressions in styled-components template literals (#​7883 by @​thorn0) // Input const Icon = styled.div` background: var(--${background}); ${Link}:not(:first-child) { fill: rebeccapurple; } `; // Prettier 2.0.2 const Icon = styled.div` background: var(-- ${background}); ${Link}:not (:first-child) { fill: rebeccapurple; } `; // Prettier 2.0.3 const Icon = styled.div` background: var(--${background}); ${Link}:not(:first-child) { fill: rebeccapurple; } `; Fix: line endings were not always converted properly in multiline strings and comments (#​7891 by @​sidharthv96) // Input export const IAmIncredibleLongFunctionName = IAmAnotherFunctionName( (_0: IAmIncredibleLongParameterType) => { setTimeout(() => { /* Multiline comment Multiline comment Multiline comment */ console.log( "Multiline string\ Multiline string\ Multiline string" ); }); } ); // Prettier 2.0.2 export const IAmIncredibleLongFunctionName = IAmAnotherFunctionName( (_0: IAmIncredibleLongParameterType) => { setTimeout(() => { /* Multiline comment Multiline comment Multiline comment */ console.log( "Multiline string\ Multiline string\ Multiline string" ); }); } ); // Prettier 2.0.3: same as input Fix bug with holes in array literals (#​7911 by @​bakkot) // Input new Test() .test() .test([, 0]) .test(); // Prettier 2.0.2 [error] in.js: TypeError: Cannot read property 'type' of null // Prettier 2.0.3 new Test().test().test([, 0]).test(); TypeScript Wrap TSAsExpression (#​7869 by @​sosukesuzuki) // Input const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; // Prettier 2.0.2 const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; // Prettier 2.0.3 const value = thisIsAnIdentifier as ThisIsAReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyReallyLongInterface; Flow Print dangling comments for inexact object type (#​7892 by @​sosukesuzuki) // Input type Foo = { // comment ..., }; // Prettier 2.0.2 Error: Comment "comment" was not printed. Please report this error! // Prettier 2.0.3 type Foo = { // comment ..., }; Do not add comma for explicit inexact object with indexer property or no properties (#​7923 by @​DmitryGonchar) // Input type T = { [string]: number, ..., } type T = { // comment ..., } // Prettier 2.0.2 type T = { [string]: number, ..., } type T = { // comment ..., } // Prettier 2.0.3 type T = { [string]: number, ... } type T = { // comment ... } HTML Fix printing of ignored empty inline elements (#​7867 by @​fisker) _ _ _ _ Format script and style inside tags with a colon in the name (#​7916 by @​fisker) Other changes Workaround for require.resolve in prettier-vscode (#​7951 by @​thorn0) Fix unstable Angular expression binding (#​7924 by @​fisker) Update isSCSS regex (#​7922 by @​fisker) Fix formatting of empty files (#​7921 by @​fisker) v2.0.2 Compare Source diff 2.0 regressions JavaScript: Fix formatting of pseudo-elements and pseudo-classes in styled-components template literals (#​7842 by @​thorn0) // Input const Foo = styled.div` ${media.smallDown}::before {} `; // Prettier 2.0.0 const Foo = styled.div` ${media.smallDown}: : before{ } `; // Prettier 2.0.2 const Foo = styled.div` ${media.smallDown}::before { } `; TypeScript: Avoid trailing commas on index signatures with only one parameter (#​7836 by @​bakkot) TypeScript index signatures technically allow multiple parameters and trailing commas, but it's an error to have multiple parameters there, and Babel's TypeScript parser does not accept them. So Prettier now avoids putting a trailing comma there when you have only one parameter. // Input export type A = { a?: { [ x: string ]: typeof SomeLongLongLongTypeName[keyof typeof SomeLongLongLongTypeName]; } | null; }; // Prettier 2.0.0 export type A = { a?: { [ x: string, ]: typeof SomeLongLongLongTypeName[keyof typeof SomeLongLongLongTypeName]; } | null; }; // Prettier 2.0.2 export type A = { a?: { [ x: string ]: typeof SomeLongLongLongTypeName[keyof typeof SomeLongLongLongTypeName]; } | null; }; Revert "markdown: fix redundant leading spaces in markdown list" (#​7847) See #​7846 Other changes TypeScript: Fix prettier-ignore in union types (#​7798 by @​thorn0) // Input export type a = // foo | foo1&foo2 // prettier-ignore | bar1&bar2 // baz | baz1&baz2; // Prettier 2.0.0 export type a = // foo | foo1&foo2 // prettier-ignore // prettier-ignore | (bar1 & bar2) // baz | (baz1 & baz2); // Prettier 2.0.2 export type a = // foo | (foo1 & foo2) // prettier-ignore | bar1&bar2 // baz | (baz1 & baz2); v2.0.1 Compare Source diff API: Fix build script to not corrupt import-fresh module (#​7820 by @​thorn0) v2.0.0 Compare Source diff 🔗 Release Notes v1.19.1 Compare Source diff CLI Fix --stdin regression in 1.19.0 (#​6894 by @​lydell) // Prettier stable $ echo "test" | prettier --stdin --parser babel [error] regeneratorRuntime is not defined // Prettier master $ echo "test" | prettier --stdin --parser babel test; TypeScript Fix formatting of union type as arrow function return type (#​6896 by @​thorn0) // Input export const getVehicleDescriptor = async ( vehicleId: string, ): Promise => {} // Prettier stable export const getVehicleDescriptor = async ( vehicleId: string ): Promise<| Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined> => {}; // Prettier master export const getVehicleDescriptor = async ( vehicleId: string ): Promise< Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined > => {}; v1.19.0 Compare Source diff 🔗 Release Notes Renovate configuration 📅 Schedule: 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. If you want to rebase/retry this PR, check this box This PR has been generated by WhiteSource Renovate. View repository job log here.

Open Graph Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence prettier (source) 1.18.2 -> 2.2.1 Release Notes prettier/prettier v2.2.1 Compare Source dif...

X Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence prettier (source) 1.18.2 -&gt; 2.2.1 Release Notes prettier/prettier v2.2.1 Compare Source...

Opengraph URL: https://github.com/coderplex-org/coderplex/pull/608

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:937db923-0f63-6cc1-239f-287042e3cc40
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9C1E:3FC487:535D0:6D830:698161AE
html-safe-nonce0f76cf8e821251a9c796748e6aaef400e158b89ffff3f1d2ad931c4d2e6dd2e4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5QzFFOjNGQzQ4Nzo1MzVEMDo2RDgzMDo2OTgxNjFBRSIsInZpc2l0b3JfaWQiOiIxNzAwNjQ5MzMxMTk3MDQzMTE4IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacbccf8fd41fdec40ffd5957e7034d8d4b7b29e85589f86bb43999b89cc83c8081
hovercard-subject-tagpull_request:391908733
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/coderplex-org/coderplex/pull/608/files
twitter:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
og:image:altThis PR contains the following updates: Package Change Age Adoption Passing Confidence prettier (source) 1.18.2 -> 2.2.1 Release Notes prettier/prettier v2.2.1 Compare Source dif...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonee137814e266030874fd2c86863529d0622b13889eeda04148c57654b6ea84ad6
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/coderplex-org/coderplex git https://github.com/coderplex-org/coderplex.git
octolytics-dimension-user_id19891160
octolytics-dimension-user_logincoderplex-org
octolytics-dimension-repository_id99134683
octolytics-dimension-repository_nwocoderplex-org/coderplex
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id99134683
octolytics-dimension-repository_network_root_nwocoderplex-org/coderplex
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasedd58d68a7813bbec9c91422c8c35f4af33832d70
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcoderplex-org%2Fcoderplex%2Fpull%2F608%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcoderplex-org%2Fcoderplex%2Fpull%2F608%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=coderplex-org%2Fcoderplex
Reloadhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
Reloadhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
Reloadhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
coderplex-org https://patch-diff.githubusercontent.com/coderplex-org
coderplexhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fcoderplex-org%2Fcoderplex
Fork 45 https://patch-diff.githubusercontent.com/login?return_to=%2Fcoderplex-org%2Fcoderplex
Star 38 https://patch-diff.githubusercontent.com/login?return_to=%2Fcoderplex-org%2Fcoderplex
Code https://patch-diff.githubusercontent.com/coderplex-org/coderplex
Issues 1 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/issues
Pull requests 27 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pulls
Actions https://patch-diff.githubusercontent.com/coderplex-org/coderplex/actions
Projects 0 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/projects
Wiki https://patch-diff.githubusercontent.com/coderplex-org/coderplex/wiki
Security 0 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/security
Insights https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pulse
Code https://patch-diff.githubusercontent.com/coderplex-org/coderplex
Issues https://patch-diff.githubusercontent.com/coderplex-org/coderplex/issues
Pull requests https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pulls
Actions https://patch-diff.githubusercontent.com/coderplex-org/coderplex/actions
Projects https://patch-diff.githubusercontent.com/coderplex-org/coderplex/projects
Wiki https://patch-diff.githubusercontent.com/coderplex-org/coderplex/wiki
Security https://patch-diff.githubusercontent.com/coderplex-org/coderplex/security
Insights https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pulse
renovatehttps://patch-diff.githubusercontent.com/apps/renovate
masterhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/tree/master
renovate/prettier-2.xhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/tree/renovate/prettier-2.x
Conversation 1 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608
Commits 1 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/commits
Checks 0 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/checks
Files changed https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/files
Please reload this pagehttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
Update dependency prettier to v2 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/files
23e94ae Update dependency prettier to v2 renovate-bot Nov 28, 2020 https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/commits/23e94ae90267711d0a26bc2122ce4add88fadd13
Clear filters https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/files
Please reload this pagehttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
Please reload this pagehttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes
package.json https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
yarn.lock https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-51e4f558fae534656963876761c95b83b6ef5da5103c4adef6768219ed76c2de
package.jsonhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
View file https://patch-diff.githubusercontent.com/coderplex-org/coderplex/blob/23e94ae90267711d0a26bc2122ce4add88fadd13/package.json
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
yarn.lockhttps://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-51e4f558fae534656963876761c95b83b6ef5da5103c4adef6768219ed76c2de
View file https://patch-diff.githubusercontent.com/coderplex-org/coderplex/blob/23e94ae90267711d0a26bc2122ce4add88fadd13/yarn.lock
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-51e4f558fae534656963876761c95b83b6ef5da5103c4adef6768219ed76c2de
https://patch-diff.githubusercontent.com/coderplex-org/coderplex/pull/608/changes#diff-51e4f558fae534656963876761c95b83b6ef5da5103c4adef6768219ed76c2de
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.