homebridge-zencontrol-tpi 1.0.3 → 1.1.0-next.0
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 +19 -0
- package/package.json +5 -1
- package/CHANGELOG.md +0 -25
package/README.md
CHANGED
|
@@ -4,3 +4,22 @@ A plugin for Homebridge that enables control over lights using Zencontrol Third
|
|
|
4
4
|
|
|
5
5
|
## Testing
|
|
6
6
|
|
|
7
|
+
## Releasing
|
|
8
|
+
|
|
9
|
+
### Pre-release
|
|
10
|
+
|
|
11
|
+
To enter pre-release mode:
|
|
12
|
+
|
|
13
|
+
```shell
|
|
14
|
+
pnpm changeset pre enter next
|
|
15
|
+
git add .changeset/pre.json
|
|
16
|
+
git commit -m "publish: enter prerelease"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Once you've made changes and committed one or more changesets; bump the version:
|
|
20
|
+
|
|
21
|
+
```shell
|
|
22
|
+
pnpm changeset version
|
|
23
|
+
git commit -a -m "publish: prerelease"
|
|
24
|
+
pnpm changeset publish
|
|
25
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-zencontrol-tpi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-next.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,5 +38,9 @@
|
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git://github.com/karlvr/homebridge-zencontrol-tpi.git"
|
|
41
45
|
}
|
|
42
46
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# homebridge-zencontrol-tpi
|
|
2
|
-
|
|
3
|
-
## 1.0.3
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- 771ecc3: Include changelog in package so it shows up in Homebridge
|
|
8
|
-
|
|
9
|
-
## 1.0.2
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- bbc24df: Adjust logging levels so we can see messages received from the controller
|
|
14
|
-
|
|
15
|
-
## 1.0.1
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- cf53e2a: Fix zencontrol-tpi-node dependency
|
|
20
|
-
|
|
21
|
-
## 1.0.0
|
|
22
|
-
|
|
23
|
-
### Major Changes
|
|
24
|
-
|
|
25
|
-
- 25a3935: Initial release
|