purifier-card 2.4.0 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "purifier-card",
3
- "version": "2.4.0",
3
+ "version": "2.4.2",
4
4
  "description": "Air Purifier card for Home Assistant Lovelace UI",
5
5
  "main": "dist/purifier-card.js",
6
6
  "scripts": {
7
7
  "start": "rollup -c --watch",
8
- "compile": "rollup -c",
9
8
  "lint": "eslint src",
10
9
  "lint:fix": "eslint src --fix",
11
10
  "format": "prettier --write .",
12
- "build": "npm run lint && npm run compile",
11
+ "build": "rollup -c",
12
+ "test": "npm run lint && npm run build",
13
13
  "prepare": "husky install"
14
14
  },
15
15
  "keywords": [
@@ -26,7 +26,7 @@
26
26
  "dependencies": {
27
27
  "@types/lodash": "^4.14.195",
28
28
  "custom-card-helpers": "^1.6.4",
29
- "ha-template": "^1.2.0",
29
+ "ha-template": "^1.2.2",
30
30
  "home-assistant-js-websocket": "^8.0.1",
31
31
  "lit": "^2.2.2",
32
32
  "lodash": "^4.17.21"
@@ -1,14 +0,0 @@
1
- name: Build
2
- on:
3
- pull_request:
4
- jobs:
5
- build:
6
- name: Test build
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: actions/checkout@v3
10
- - name: Build
11
- run: |
12
- npm install
13
- npm run lint
14
- npm run build