From 5242f2a43eaefe16647ff2c485a861d88783f3de Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Tue, 8 Aug 2023 10:59:40 +0800 Subject: [PATCH] Upgrade to prettier v3 --- .../app/admin/comments/comments/comments.component.ts | 5 ++++- client/app/admin/events/events/events.component.html | 2 +- client/app/admin/events/events/events.component.ts | 5 ++++- client/app/admin/newses/newses/newses.component.html | 2 +- client/app/admin/newses/newses/newses.component.ts | 5 ++++- .../admin/order/order-lines/order-lines.component.html | 10 +++++----- client/app/admin/order/order/order.component.html | 4 ++-- client/app/admin/order/orders/orders.component.html | 10 +++++----- .../admin/products/products/products.component.html | 6 +++--- client/app/admin/sessions/session/session.component.ts | 5 ++++- .../admin/sessions/sessions/sessions.component.html | 4 ++-- client/app/admin/users/user/user.component.html | 2 +- client/app/admin/users/user/user.component.ts | 5 ++++- client/app/admin/users/users/users.component.html | 2 +- .../comment-list/comment-list.component.html | 2 +- .../components/comment-list/comment-list.component.ts | 5 ++++- .../components/event-page/event-page.component.html | 2 +- .../components/events-page/events-page.component.html | 2 +- .../components/homepage/homepage.component.html | 6 +++--- .../components/news-page/news-page.component.html | 2 +- .../components/newses-page/newses-page.component.html | 2 +- .../session-page/session-page.component.html | 2 +- .../components/session-page/session-page.component.ts | 5 ++++- .../session-side-column.component.ts | 5 ++++- client/app/front-office/modules/cart/classes/cart.ts | 5 ++++- .../modules/cart/components/cart/cart.component.html | 10 +++++----- .../create-order/create-order.component.html | 6 +++--- .../product-page/product-page.component.html | 4 ++-- .../products-page/products-page.component.html | 4 ++-- .../profile/components/history/history.component.html | 6 +++--- .../profile/components/profile/profile.component.html | 4 ++-- .../components/purchases/purchases.component.html | 4 ++-- .../app/shared/components/price/price.component.html | 2 +- client/index.html | 2 +- package.json | 2 +- yarn.lock | 8 ++++---- 36 files changed, 92 insertions(+), 65 deletions(-) diff --git a/client/app/admin/comments/comments/comments.component.ts b/client/app/admin/comments/comments/comments.component.ts index f2b09952..9d2e4ce1 100644 --- a/client/app/admin/comments/comments/comments.component.ts +++ b/client/app/admin/comments/comments/comments.component.ts @@ -43,7 +43,10 @@ export class CommentsComponent extends NaturalAbstractList imple {id: 'news', label: 'Actualité'}, ]; - public constructor(service: CommentService, public readonly permissionsService: PermissionsService) { + public constructor( + service: CommentService, + public readonly permissionsService: PermissionsService, + ) { super(service); } } diff --git a/client/app/admin/events/events/events.component.html b/client/app/admin/events/events/events.component.html index fc9a1ec2..e7042159 100644 --- a/client/app/admin/events/events/events.component.html +++ b/client/app/admin/events/events/events.component.html @@ -28,7 +28,7 @@ Date - {{ element.date | date : 'dd.MM.y' }} + {{ element.date | date: 'dd.MM.y' }} diff --git a/client/app/admin/events/events/events.component.ts b/client/app/admin/events/events/events.component.ts index 79f4bd77..7af6e935 100644 --- a/client/app/admin/events/events/events.component.ts +++ b/client/app/admin/events/events/events.component.ts @@ -49,7 +49,10 @@ export class EventsComponent extends NaturalAbstractList implement {id: 'type', label: 'Type'}, ]; - public constructor(service: EventService, public readonly permissionsService: PermissionsService) { + public constructor( + service: EventService, + public readonly permissionsService: PermissionsService, + ) { super(service); } } diff --git a/client/app/admin/newses/newses/newses.component.html b/client/app/admin/newses/newses/newses.component.html index b580a838..87019cd4 100644 --- a/client/app/admin/newses/newses/newses.component.html +++ b/client/app/admin/newses/newses/newses.component.html @@ -28,7 +28,7 @@ Date - {{ element.date | date : 'dd.MM.y' }} + {{ element.date | date: 'dd.MM.y' }} diff --git a/client/app/admin/newses/newses/newses.component.ts b/client/app/admin/newses/newses/newses.component.ts index 48d57503..f61dbd7e 100644 --- a/client/app/admin/newses/newses/newses.component.ts +++ b/client/app/admin/newses/newses/newses.component.ts @@ -52,7 +52,10 @@ export class NewsesComponent extends NaturalAbstractList implements {id: 'isActive', label: 'Active'}, ]; - public constructor(service: NewsService, public readonly permissionsService: PermissionsService) { + public constructor( + service: NewsService, + public readonly permissionsService: PermissionsService, + ) { super(service); } } diff --git a/client/app/admin/order/order-lines/order-lines.component.html b/client/app/admin/order/order-lines/order-lines.component.html index c1f7f27f..f010a89b 100644 --- a/client/app/admin/order/order-lines/order-lines.component.html +++ b/client/app/admin/order/order-lines/order-lines.component.html @@ -40,7 +40,7 @@ Type - {{ element.type | enum : 'ProductType' | async }} + {{ element.type | enum: 'ProductType' | async }} @@ -72,15 +72,15 @@ Montant {{ - element.balanceCHF | currency : 'CHF' + element.balanceCHF | currency: 'CHF' }} {{ - element.balanceEUR | currency : 'EUR' + element.balanceEUR | currency: 'EUR' }} {{ - dataSource.data?.totalBalanceCHF | currency : 'CHF' + dataSource.data?.totalBalanceCHF | currency: 'CHF' }} {{ - dataSource.data?.totalBalanceEUR | currency : 'EUR' + dataSource.data?.totalBalanceEUR | currency: 'EUR' }} diff --git a/client/app/admin/order/order/order.component.html b/client/app/admin/order/order/order.component.html index 50a8cea1..70e05c15 100644 --- a/client/app/admin/order/order/order.component.html +++ b/client/app/admin/order/order/order.component.html @@ -25,10 +25,10 @@

Commande du {{ data.model.creationDate | swissDate }
Total :
- {{ data.model.balanceCHF | currency : 'CHF' }} + {{ data.model.balanceCHF | currency: 'CHF' }}
- {{ data.model.balanceEUR | currency : 'EUR' }} + {{ data.model.balanceEUR | currency: 'EUR' }}
diff --git a/client/app/admin/order/orders/orders.component.html b/client/app/admin/order/orders/orders.component.html index f6b464e2..470049d3 100644 --- a/client/app/admin/order/orders/orders.component.html +++ b/client/app/admin/order/orders/orders.component.html @@ -67,7 +67,7 @@ Statut - {{ element.status | enum : 'OrderStatus' | async }} + {{ element.status | enum: 'OrderStatus' | async }} @@ -77,12 +77,12 @@ {{ - element.balanceCHF | currency : 'CHF' + element.balanceCHF | currency: 'CHF' }} {{ - dataSource.data?.totalBalanceCHF | currency : 'CHF' + dataSource.data?.totalBalanceCHF | currency: 'CHF' }} @@ -93,12 +93,12 @@ {{ - element.balanceEUR | currency : 'EUR' + element.balanceEUR | currency: 'EUR' }} {{ - dataSource.data?.totalBalanceEUR | currency : 'EUR' + dataSource.data?.totalBalanceEUR | currency: 'EUR' }} diff --git a/client/app/admin/products/products/products.component.html b/client/app/admin/products/products/products.component.html index b09e6945..a5ad6e27 100644 --- a/client/app/admin/products/products/products.component.html +++ b/client/app/admin/products/products/products.component.html @@ -58,14 +58,14 @@ Type - {{ element.type | enum : 'ProductType' | async }} + {{ element.type | enum: 'ProductType' | async }} Prix CHF {{ - element.pricePerUnitCHF | currency : 'CHF' + element.pricePerUnitCHF | currency: 'CHF' }} @@ -74,7 +74,7 @@ Prix EUR {{ - element.pricePerUnitEUR | currency : 'EUR' + element.pricePerUnitEUR | currency: 'EUR' }} diff --git a/client/app/admin/sessions/session/session.component.ts b/client/app/admin/sessions/session/session.component.ts index e11d65eb..d73b3ccd 100644 --- a/client/app/admin/sessions/session/session.component.ts +++ b/client/app/admin/sessions/session/session.component.ts @@ -68,7 +68,10 @@ export class SessionComponent extends NaturalAbstractDetail impl */ public override data!: SessionResolve & {seo: NaturalSeoBasic}; - public constructor(private readonly sessionService: SessionService, public readonly userService: UserService) { + public constructor( + private readonly sessionService: SessionService, + public readonly userService: UserService, + ) { super('session', sessionService); } diff --git a/client/app/admin/sessions/sessions/sessions.component.html b/client/app/admin/sessions/sessions/sessions.component.html index e93d933c..5102c4f1 100644 --- a/client/app/admin/sessions/sessions/sessions.component.html +++ b/client/app/admin/sessions/sessions/sessions.component.html @@ -49,12 +49,12 @@ Date - {{ element.startDate | date : 'dd.MM.y' }} + {{ element.startDate | date: 'dd.MM.y' }} Date contrib. - {{ element.endDate | date : 'dd.MM.y' }} + {{ element.endDate | date: 'dd.MM.y' }} diff --git a/client/app/admin/users/user/user.component.html b/client/app/admin/users/user/user.component.html index fdc5e6af..2ba00823 100644 --- a/client/app/admin/users/user/user.component.html +++ b/client/app/admin/users/user/user.component.html @@ -65,7 +65,7 @@

Statut

Abonnement : - Abonné {{ data.model.subscriptionType | enum : 'ProductType' | async }} jusqu'au numéro + Abonné {{ data.model.subscriptionType | enum: 'ProductType' | async }} jusqu'au numéro {{ data.model.subscriptionLastReviewNumber }} diff --git a/client/app/admin/users/user/user.component.ts b/client/app/admin/users/user/user.component.ts index 65c2634e..7c71cc7c 100644 --- a/client/app/admin/users/user/user.component.ts +++ b/client/app/admin/users/user/user.component.ts @@ -72,7 +72,10 @@ export class UserComponent extends NaturalAbstractDetail implements */ public override data!: UserResolve & {seo: NaturalSeoBasic}; - public constructor(private readonly userService: UserService, public readonly sessionService: SessionService) { + public constructor( + private readonly userService: UserService, + public readonly sessionService: SessionService, + ) { super('user', userService); } diff --git a/client/app/admin/users/users/users.component.html b/client/app/admin/users/users/users.component.html index 157f37c0..6dd83238 100644 --- a/client/app/admin/users/users/users.component.html +++ b/client/app/admin/users/users/users.component.html @@ -63,7 +63,7 @@ Membre des artisans - {{ element.membership | enum : 'Membership' | async }} + {{ element.membership | enum: 'Membership' | async }} diff --git a/client/app/front-office/components/comment-list/comment-list.component.html b/client/app/front-office/components/comment-list/comment-list.component.html index 117e084f..6fdc2366 100644 --- a/client/app/front-office/components/comment-list/comment-list.component.html +++ b/client/app/front-office/components/comment-list/comment-list.component.html @@ -22,7 +22,7 @@ fxLayoutAlign="start baseline" > {{ comment.authorName }} - Posté le {{ comment.creationDate | date : 'longDate' }} + Posté le {{ comment.creationDate | date: 'longDate' }} im public newCommentValue = ''; - public constructor(service: CommentService, public readonly permissionsService: PermissionsService) { + public constructor( + service: CommentService, + public readonly permissionsService: PermissionsService, + ) { super(service); this.persistSearch = false; } diff --git a/client/app/front-office/components/event-page/event-page.component.html b/client/app/front-office/components/event-page/event-page.component.html index 0eebb388..17d924cb 100644 --- a/client/app/front-office/components/event-page/event-page.component.html +++ b/client/app/front-office/components/event-page/event-page.component.html @@ -1,7 +1,7 @@
-
{{ data.model.date | date : 'EEEE d MMMM yyyy' | capitalize }}
+
{{ data.model.date | date: 'EEEE d MMMM yyyy' | capitalize }}

diff --git a/client/app/front-office/components/events-page/events-page.component.html b/client/app/front-office/components/events-page/events-page.component.html index 0fab6203..ffb6fdcc 100644 --- a/client/app/front-office/components/events-page/events-page.component.html +++ b/client/app/front-office/components/events-page/events-page.component.html @@ -4,7 +4,7 @@

AGENDA

{{ event.name }} -
{{ event.date | date : 'EEEE d MMMM yyyy' | capitalize }}
+
{{ event.date | date: 'EEEE d MMMM yyyy' | capitalize }}
{{ event.place }}
{{ event.type }}
diff --git a/client/app/front-office/components/homepage/homepage.component.html b/client/app/front-office/components/homepage/homepage.component.html index 14eadced..37bc91c0 100644 --- a/client/app/front-office/components/homepage/homepage.component.html +++ b/client/app/front-office/components/homepage/homepage.component.html @@ -37,7 +37,7 @@
- {{ news.date | date : 'EEE dd.MM.yy' | capitalize }} + {{ news.date | date: 'EEE dd.MM.yy' | capitalize }}
{{ news.name }}
{{ news.description }}
@@ -74,7 +74,7 @@ event.name }}
- {{ event.date | date : 'EEE dd.MM.yy' | capitalize }} + {{ event.date | date: 'EEE dd.MM.yy' | capitalize }} - {{ event.place }} - {{ event.type }}
@@ -117,7 +117,7 @@
{{ currentReview.reviewNumber }} | - {{ currentReview.releaseDate | date : 'MMMM yyyy' | capitalize }} + {{ currentReview.releaseDate | date: 'MMMM yyyy' | capitalize }}
{{ currentReview.name diff --git a/client/app/front-office/components/news-page/news-page.component.html b/client/app/front-office/components/news-page/news-page.component.html index 1a3353db..ea89e8f7 100644 --- a/client/app/front-office/components/news-page/news-page.component.html +++ b/client/app/front-office/components/news-page/news-page.component.html @@ -1,6 +1,6 @@
-
{{ data.model.date | date : 'EEEE d MMMM yyyy' | capitalize }}
+
{{ data.model.date | date: 'EEEE d MMMM yyyy' | capitalize }}

{{ data.model.name }} diff --git a/client/app/front-office/components/newses-page/newses-page.component.html b/client/app/front-office/components/newses-page/newses-page.component.html index 63b32ccc..708fdc22 100644 --- a/client/app/front-office/components/newses-page/newses-page.component.html +++ b/client/app/front-office/components/newses-page/newses-page.component.html @@ -3,7 +3,7 @@

ACTUALITÉS

diff --git a/client/app/front-office/components/session-page/session-page.component.html b/client/app/front-office/components/session-page/session-page.component.html index 9553fba3..eea3be73 100644 --- a/client/app/front-office/components/session-page/session-page.component.html +++ b/client/app/front-office/components/session-page/session-page.component.html @@ -48,7 +48,7 @@

Les autres sessions à {{ data.model.locality | lowercase }}
{{ session.name }} -
à partir du {{ session.startDate | date : 'EEE d MMMM y' }}
+
à partir du {{ session.startDate | date: 'EEE d MMMM y' }}

diff --git a/client/app/front-office/components/session-page/session-page.component.ts b/client/app/front-office/components/session-page/session-page.component.ts index c4f251af..6b4eaf0a 100644 --- a/client/app/front-office/components/session-page/session-page.component.ts +++ b/client/app/front-office/components/session-page/session-page.component.ts @@ -56,7 +56,10 @@ export class SessionPageComponent extends NaturalAbstractDetail public viewer: CurrentUserForProfile['viewer'] = null; - public constructor(private readonly sessionService: SessionService, public readonly userService: UserService) { + public constructor( + private readonly sessionService: SessionService, + public readonly userService: UserService, + ) { super('session', sessionService); } diff --git a/client/app/front-office/components/session-side-column/session-side-column.component.ts b/client/app/front-office/components/session-side-column/session-side-column.component.ts index 0b4d10b8..0b1db36d 100644 --- a/client/app/front-office/components/session-side-column/session-side-column.component.ts +++ b/client/app/front-office/components/session-side-column/session-side-column.component.ts @@ -19,7 +19,10 @@ export class SessionSideColumnComponent implements OnInit { @Input() public hiddenBlocName?: string; - public constructor(private readonly sessionService: SessionService, private readonly route: ActivatedRoute) {} + public constructor( + private readonly sessionService: SessionService, + private readonly route: ActivatedRoute, + ) {} public ngOnInit(): void { const qvm = new NaturalQueryVariablesManager(); diff --git a/client/app/front-office/modules/cart/classes/cart.ts b/client/app/front-office/modules/cart/classes/cart.ts index 7c9146f9..1dfddfde 100644 --- a/client/app/front-office/modules/cart/classes/cart.ts +++ b/client/app/front-office/modules/cart/classes/cart.ts @@ -60,7 +60,10 @@ export class Cart { * On new cart, never recover from session storage * @param id Use id param only for global cart */ - public constructor(private readonly cartCollectionService: CartCollectionService, id?: number) { + public constructor( + private readonly cartCollectionService: CartCollectionService, + id?: number, + ) { this._id = id ?? this.cartCollectionService.length; this.cartCollectionService.add(this); } diff --git a/client/app/front-office/modules/cart/components/cart/cart.component.html b/client/app/front-office/modules/cart/components/cart/cart.component.html index 3e6c8f01..2855bd15 100644 --- a/client/app/front-office/modules/cart/components/cart/cart.component.html +++ b/client/app/front-office/modules/cart/components/cart/cart.component.html @@ -24,7 +24,7 @@ > - {{ line.product.name }}, {{ line.type | enum : 'ProductType' | async }} + {{ line.product.name }}, {{ line.type | enum: 'ProductType' | async }} @@ -34,7 +34,7 @@
- {{ line.totalTaxInc | currency : currencyService.current.value }} + {{ line.totalTaxInc | currency: currencyService.current.value }}
@@ -72,7 +72,7 @@ > - {{ cart.subscription.subscription.name }}, {{ cart.subscription.type | enum : 'ProductType' | async }} + {{ cart.subscription.subscription.name }}, {{ cart.subscription.type | enum: 'ProductType' | async }}
{{ cart.subscription.emails.join(', ') }}
@@ -102,7 +102,7 @@
- {{ cart.donationAmount | currency : currencyService.current.value }} + {{ cart.donationAmount | currency: currencyService.current.value }}
@@ -121,7 +121,7 @@
- Total TTC : {{ cart.totalTaxInc | currency : currencyService.current.value }} + Total TTC : {{ cart.totalTaxInc | currency: currencyService.current.value }}
diff --git a/client/app/front-office/modules/cart/components/create-order/create-order.component.html b/client/app/front-office/modules/cart/components/create-order/create-order.component.html index 980c0764..c2f7204f 100644 --- a/client/app/front-office/modules/cart/components/create-order/create-order.component.html +++ b/client/app/front-office/modules/cart/components/create-order/create-order.component.html @@ -48,14 +48,14 @@

Adresse de facturation

{{ line.product.name }} -
Version : {{ line.type | enum : 'ProductType' | async }}
+
Version : {{ line.type | enum: 'ProductType' | async }}
Quantité : {{ line.quantity }}
{{ cart.subscription.subscription.name }} -
Version : {{ cart.subscription.type | enum : 'ProductType' | async }}
+
Version : {{ cart.subscription.type | enum: 'ProductType' | async }}
{{ cart.subscription.emails.join(', ') }}
@@ -65,7 +65,7 @@

Adresse de facturation

Prix total
- {{ cart.totalTaxInc | currency : currencyService.current.value }} + {{ cart.totalTaxInc | currency: currencyService.current.value }}
diff --git a/client/app/front-office/modules/shop/components/product-page/product-page.component.html b/client/app/front-office/modules/shop/components/product-page/product-page.component.html index d0f2ac8c..dd67687a 100644 --- a/client/app/front-office/modules/shop/components/product-page/product-page.component.html +++ b/client/app/front-office/modules/shop/components/product-page/product-page.component.html @@ -15,7 +15,7 @@
- {{ data.model.releaseDate | date : 'MMMM yyyy' | capitalize }} + {{ data.model.releaseDate | date: 'MMMM yyyy' | capitalize }}
{{ data.model.name }}

N° {{ data.model.review.reviewNumber }} {{ data.model.review.name }} - {{ data.model.review.releaseDate | date : 'MMMM yyyy' | capitalize }} + {{ data.model.review.releaseDate | date: 'MMMM yyyy' | capitalize }} diff --git a/client/app/front-office/modules/shop/components/products-page/products-page.component.html b/client/app/front-office/modules/shop/components/products-page/products-page.component.html index d753068c..d6b21ae1 100644 --- a/client/app/front-office/modules/shop/components/products-page/products-page.component.html +++ b/client/app/front-office/modules/shop/components/products-page/products-page.component.html @@ -88,13 +88,13 @@ N° {{ product.reviewNumber }} - {{ product.releaseDate | date : 'MMMM yyyy' | capitalize }} + {{ product.releaseDate | date: 'MMMM yyyy' | capitalize }} {{ product.name }}
diff --git a/client/app/profile/components/history/history.component.html b/client/app/profile/components/history/history.component.html index 8dcfe569..7b9bb3e5 100644 --- a/client/app/profile/components/history/history.component.html +++ b/client/app/profile/components/history/history.component.html @@ -21,17 +21,17 @@

Commandes

Statut - {{ element.status | enum : 'OrderStatus' | async }} + {{ element.status | enum: 'OrderStatus' | async }} Total {{ - element.balanceCHF | currency : 'CHF' + element.balanceCHF | currency: 'CHF' }} {{ - element.balanceEUR | currency : 'EUR' + element.balanceEUR | currency: 'EUR' }} diff --git a/client/app/profile/components/profile/profile.component.html b/client/app/profile/components/profile/profile.component.html index 34b517f6..1610b341 100644 --- a/client/app/profile/components/profile/profile.component.html +++ b/client/app/profile/components/profile/profile.component.html @@ -12,7 +12,7 @@
Mon abonnement à LaRevueDurable
- Abonné {{ viewer.subscriptionType | enum : 'ProductType' | async }} jusqu'au numéro + Abonné {{ viewer.subscriptionType | enum: 'ProductType' | async }} jusqu'au numéro {{ viewer.subscriptionLastReviewNumber }}
Renouveler @@ -30,7 +30,7 @@
Mon statut Artisans de la transition
-
{{ viewer.membership | enum : 'Membership' | async }}
+
{{ viewer.membership | enum: 'Membership' | async }}
Articles achetés N° {{ orderLine.product.reviewNumber }} - {{ orderLine.product.releaseDate | date : 'MMMM yyyy' | capitalize }} + {{ orderLine.product.releaseDate | date: 'MMMM yyyy' | capitalize }} - {{ orderLine.type | enum : 'ProductType' | async }} + {{ orderLine.type | enum: 'ProductType' | async }}
diff --git a/client/app/shared/components/price/price.component.html b/client/app/shared/components/price/price.component.html index b1284d24..be9279a7 100644 --- a/client/app/shared/components/price/price.component.html +++ b/client/app/shared/components/price/price.component.html @@ -1 +1 @@ -{{ price | currency : currencyService.current.value }} +{{ price | currency: currencyService.current.value }} diff --git a/client/index.html b/client/index.html index 3036cb02..4cdbda02 100644 --- a/client/index.html +++ b/client/index.html @@ -1,4 +1,4 @@ - + diff --git a/package.json b/package.json index cdc3d294..8dd0d3f7 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "karma-coverage-istanbul-reporter": "~3.0.2", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "^2.1.0", - "prettier": "2.8.8", + "prettier": "3.0.1", "ts-node": "~10.9.1", "typescript": "~5.1.3" } diff --git a/yarn.lock b/yarn.lock index db9e839d..0f827f00 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8732,10 +8732,10 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== -prettier@2.8.8: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +prettier@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.1.tgz#65271fc9320ce4913c57747a70ce635b30beaa40" + integrity sha512-fcOWSnnpCrovBsmFZIGIy9UqK2FaI7Hqax+DIO0A9UxeVoY4iweyaFjS5TavZN97Hfehph0nhsZnjlVKzEQSrQ== pretty-bytes@^5.3.0: version "5.6.0"