forked from vinodsr/node-red-contrib-tuya-smart-device
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You can now provide Query Properties Map for Smart Device, it will ma…
…ke dps to be translated into human-readable format. You can generate the map on tuya IoT Platform > Device Control > Query Properties
- Loading branch information
Showing
14 changed files
with
160 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Release publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: https://registry.npmjs.org/ | ||
always-auth: true | ||
- name: Publish | ||
run: | | ||
npm ci | ||
npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NODE_TKN}} | ||
- name: Update Node-Red flow-library | ||
uses: Zehir/[email protected] | ||
continue-on-error: true | ||
with: | ||
package-name: '@nrchkb/node-red-tuya-smart-device' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,3 +102,6 @@ dist | |
|
||
# TernJS port file | ||
.tern-port | ||
|
||
.idea | ||
.vscode |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
{ | ||
"name": "node-red-contrib-tuya-smart-device", | ||
"version": "5.3.0", | ||
"name": "@nrchkb/node-red-tuya-smart-device", | ||
"version": "0.1.0", | ||
"description": "A node-red module to interact with the tuya smart devices", | ||
"repository": "https://github.com/vinodsr/node-red-contrib-tuya-smart-device", | ||
"repository": "https://github.com/NRCHKB/node-red-tuya-smart-device", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Vinod S R", | ||
"author": "Tadeusz Wyrzykowski <[email protected]> (https://github.com/Shaquu)", | ||
"license": "MIT", | ||
"homepage": "https://github.com/vinodsr/node-red-contrib-tuya-smart-device", | ||
"homepage": "https://github.com/NRCHKB/node-red-tuya-smart-device", | ||
"keywords": [ | ||
"node-red" | ||
"node-red", | ||
"tuya", | ||
"nrchkb" | ||
], | ||
"node-red": { | ||
"version": ">=2.5.0", | ||
"version": ">=3.0.0", | ||
"nodes": { | ||
"tuya-smart-device": "src/tuya-smart-device.js", | ||
"tuya-smart-device-generic": "src/tuya-smart-device-generic.js" | ||
} | ||
}, | ||
"dependencies": { | ||
"tuyapi": "~7.5.1" | ||
"tuyapi": "~7.5.2" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0" | ||
"node": ">=18.0.0" | ||
} | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.