Skip to content

Commit b57394d

Browse files
committed
bump yarn lock
1 parent cc3dd96 commit b57394d

3 files changed

Lines changed: 808 additions & 1597 deletions

File tree

package.json

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "default-dashboard",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "Sets the default dashboard for lovelace automatically",
55
"keywords": [
66
"home-assistant",
@@ -15,20 +15,8 @@
1515
"author": "DARE <me@daredoes.work>",
1616
"license": "MIT",
1717
"dependencies": {
18-
"@lit-labs/scoped-registry-mixin": "^1.0.0",
19-
"@material/mwc-formfield": "^0.25.3",
20-
"@material/mwc-list": "^0.25.3",
21-
"@material/mwc-menu": "^0.25.3",
22-
"@material/mwc-notched-outline": "^0.25.3",
23-
"@material/mwc-ripple": "^0.25.3",
24-
"@material/mwc-select": "^0.25.3",
25-
"@material/mwc-switch": "^0.25.3",
26-
"@material/mwc-textfield": "^0.25.3",
27-
"@mdi/js": "^7.0.96",
2818
"custom-card-helpers": "^1.7.2",
29-
"home-assistant-js-websocket": "^5.11.1",
30-
"lit": "^2.0.0",
31-
"yaml": "1.10.0"
19+
"home-assistant-js-websocket": "^5.11.1"
3220
},
3321
"devDependencies": {
3422
"@babel/core": "^7.15.0",
@@ -52,12 +40,6 @@
5240
"rollup-plugin-typescript2": "^0.30.0",
5341
"typescript": "^4.4.3"
5442
},
55-
"resolutions": {
56-
"lit": "^2.1.2",
57-
"lit-html": "2.1.2",
58-
"lit-element": "3.1.2",
59-
"@lit/reactive-element": "1.2.1"
60-
},
6143
"scripts": {
6244
"start": "export ROLLUP_WATCH=true && rollup -c --watch",
6345
"prestart": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",

src/helpers/hass.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { HomeAssistant } from 'custom-card-helpers';
2-
import { LitElement } from 'lit';
32

43
export const getHass = (): HomeAssistant => {
5-
const hass = document.getElementsByTagName('home-assistant')[0] as LitElement;
4+
const hass = document.getElementsByTagName('home-assistant')[0];
65
return (hass as any).hass as HomeAssistant;
76
};

0 commit comments

Comments
 (0)