home-assistant-javascript-templates 5.4.1 → 5.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/README.md +3 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,24 +9,22 @@ A JavaScript utility to render Home Assistant JavaScript templates.
|
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
-
The package needs the [get-promisable-result](https://github.com/elchininet/get-promisable-result) package as a peer dependency.
|
|
13
|
-
|
|
14
12
|
#### npm
|
|
15
13
|
|
|
16
14
|
```bash
|
|
17
|
-
npm install
|
|
15
|
+
npm install home-assistant-javascript-templates
|
|
18
16
|
```
|
|
19
17
|
|
|
20
18
|
#### yarn
|
|
21
19
|
|
|
22
20
|
```bash
|
|
23
|
-
yarn add
|
|
21
|
+
yarn add home-assistant-javascript-templates
|
|
24
22
|
```
|
|
25
23
|
|
|
26
24
|
#### PNPM
|
|
27
25
|
|
|
28
26
|
```bash
|
|
29
|
-
pnpm add
|
|
27
|
+
pnpm add home-assistant-javascript-templates
|
|
30
28
|
```
|
|
31
29
|
|
|
32
30
|
## Basic Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "home-assistant-javascript-templates",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.2",
|
|
4
4
|
"description": "A JavaScript utility to render Home Assistant JavaScript templates",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"home-assistant",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"tslib": "^2.8.1",
|
|
59
59
|
"typescript": "^5.6.3"
|
|
60
60
|
},
|
|
61
|
-
"
|
|
61
|
+
"dependencies": {
|
|
62
62
|
"get-promisable-result": "^1.0.0"
|
|
63
63
|
}
|
|
64
64
|
}
|