Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
#version: latest
run_install: false

- name: Install Packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
#version: latest
run_install: false

- name: Install Packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
#version: latest
run_install: false

- name: Install Packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
#version: latest
run_install: false

- name: Install Packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
#version: latest
run_install: false

- name: Install Packages
Expand Down
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Power Flow Card Plus",
"render_readme": true,
"content_in_root": true,
"homeassistant": "2023.12.3"
}
53 changes: 27 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "power-flow-card-plus",
"version": "0.2.5",
"version": "0.2.5.1",
"description": "A power flow card for Home Assistant",
"keywords": [
"home-assistant",
Expand Down Expand Up @@ -33,46 +33,47 @@
"precommit": "pnpm typecheck && pnpm format:write && pnpm test"
},
"dependencies": {
"@mdi/js": "^7.2.96",
"@google/semantic-release-replace-plugin": "^1.2.7",
"@mdi/js": "^7.4.47",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.0.1",
"lit": "^2.2.2",
"lit-element": "^2.4.0",
"lit-html": "^2.7.0",
"home-assistant-js-websocket": "^8.2.0",
"lit": "^2.8.0",
"lit-element": "^2.5.1",
"lit-html": "^2.8.0",
"memoize-one": "^6.0.0",
"sortablejs": "^1.15.0",
"superstruct": "^1.0.3",
"tslib": "^2.4.0"
"sortablejs": "^1.15.6",
"superstruct": "^1.0.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/eslint-plugin": "^7.27.1",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@jest/globals": "^29.7.0",
"@open-wc/eslint-config": "^7.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.3.2",
"@semantic-release/changelog": "^6.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@types/node": "^20.19.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-wc": "^1.3.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-wc": "^1.5.0",
"jest": "^29.7.0",
"prettier": "2.8.8",
"rollup": "^2.70.2",
"rollup": "^2.79.2",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-serve": "^1.1.0",
"semantic-release": "^20.1.0",
"rollup-plugin-serve": "^1.1.1",
"semantic-release": "^20.1.3",
"semantic-release-replace-plugin": "^1.2.7",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
Expand Down
Loading