-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from hidetak/add-creating-dashboard-client-plugin
Add creating wot client plugin
- Loading branch information
Showing
12 changed files
with
1,047 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules | |
.vscode/settings.json | ||
.DS_Store | ||
dist | ||
resources |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@thingweb/node-red-node-wot", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Web of Things nodes for Node-RED using node-wot", | ||
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)", | ||
"license": "MIT", | ||
|
@@ -34,11 +34,16 @@ | |
"wot-server-event": "dist/wot-server-event.js", | ||
"wot-server-td": "dist/wot-server-td.js" | ||
}, | ||
"plugins": { | ||
"node-wot-plugin": "plugin/node-wot-plugin.html" | ||
}, | ||
"version": ">=1.3.7" | ||
}, | ||
"scripts": { | ||
"build": "npm run copy:src2dist && tsc", | ||
"build": "npm run copy:src2dist && tsc && npm run build:plugin", | ||
"copy:src2dist": "node -e \"require('fs-extra').copySync('./src', './dist')\"", | ||
"build:plugin": "npm run copy:plugin-resources-src2resources && tsc --project ./tsconfig-for-plugin.json", | ||
"copy:plugin-resources-src2resources": "node -e \"require('fs-extra').copySync('./plugin-resources-src', './resources')\"", | ||
"publish": "npm publish --access=public", | ||
"publish:beta": "npm publish --access=public --tag=beta", | ||
"test": "mocha --require ts-node/register --extension ts --exit" | ||
|
Oops, something went wrong.