Skip to content

Commit

Permalink
Update dependency prettier to v3.0.2 (#17623)
Browse files Browse the repository at this point in the history
* Update dependency prettier to v3.0.2

* Reformat

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Steve Repsher <[email protected]>
  • Loading branch information
renovate[bot] and steverep authored Aug 19, 2023
1 parent c6ecdc9 commit e4f3211
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
"object-hash": "3.0.0",
"open": "9.1.0",
"pinst": "3.0.0",
"prettier": "3.0.1",
"prettier": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-terser": "7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/auth/ha-authorize.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import punycode from "punycode";
import {
css,
CSSResultGroup,
Expand All @@ -7,7 +8,6 @@ import {
PropertyValues,
} from "lit";
import { customElement, property, state } from "lit/decorators";
import punycode from "punycode";
import { applyThemesOnElement } from "../common/dom/apply_themes_on_element";
import { extractSearchParamsObject } from "../common/url/search-params";
import "../components/ha-alert";
Expand Down
5 changes: 2 additions & 3 deletions src/components/ha-web-rtc-player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ class HaWebRtcPlayer extends LitElement {
offerToReceiveAudio: true,
offerToReceiveVideo: true,
};
const offer: RTCSessionDescriptionInit = await peerConnection.createOffer(
offerOptions
);
const offer: RTCSessionDescriptionInit =
await peerConnection.createOffer(offerOptions);
await peerConnection.setLocalDescription(offer);

let candidates = ""; // Build an Offer SDP string with ice candidates
Expand Down
5 changes: 2 additions & 3 deletions src/panels/config/integrations/ha-config-integration-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1157,9 +1157,8 @@ class HaConfigIntegrationPage extends SubscribeMixin(LitElement) {
private async _removeIntegration(configEntry: ConfigEntry) {
const entryId = configEntry.entry_id;

const applicationCredentialsId = await this._applicationCredentialForRemove(
entryId
);
const applicationCredentialsId =
await this._applicationCredentialForRemove(entryId);

const confirmed = await showConfirmationDialog(this, {
title: this.hass.localize(
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9774,7 +9774,7 @@ __metadata:
object-hash: 3.0.0
open: 9.1.0
pinst: 3.0.0
prettier: 3.0.1
prettier: 3.0.2
proxy-polyfill: 0.3.2
punycode: 2.3.0
qr-scanner: 1.4.2
Expand Down Expand Up @@ -13245,12 +13245,12 @@ __metadata:
languageName: node
linkType: hard

"prettier@npm:3.0.1":
version: 3.0.1
resolution: "prettier@npm:3.0.1"
"prettier@npm:3.0.2":
version: 3.0.2
resolution: "prettier@npm:3.0.2"
bin:
prettier: bin/prettier.cjs
checksum: e1f3f16c7fe0495de3faa182597871f74927d787cce3c52095a66ff5d7eacc05173371d5f58bf12141a0a1b6bfe739a338531d6cf18b92c7256c1319f2c84e73
checksum: 118b59ddb6c80abe2315ab6d0f4dd1b253be5cfdb20622fa5b65bb1573dcd362e6dd3dcf2711dd3ebfe64aecf7bdc75de8a69dc2422dcd35bdde7610586b677a
languageName: node
linkType: hard

Expand Down

0 comments on commit e4f3211

Please sign in to comment.