bump daemon so npm update has a chance to update it in future

This commit is contained in:
Dave Conway-Jones 2020-04-01 17:51:51 +01:00
parent 3087e8e2a1
commit 34c3beb430
No known key found for this signature in database
GPG Key ID: 302A6725C594817F
3 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,8 @@ Useful for monitoring command line based processes.
Install
-------
Run the following command in your Node-RED user directory - typically `~/.node-red`
Either use the Editor - Menu - Manage Palette - Install option or
run the following command in your Node-RED user directory - typically `~/.node-red`
npm i node-red-node-daemon

View File

@ -1,6 +1,6 @@
<!DOCTYPE html>
<script type="text/x-red" data-template-name="daemon">
<script type="text/html" data-template-name="daemon">
<div class="form-row">
<label for="node-input-command"><i class="fa fa-file"></i> Command</label>
<input type="text" id="node-input-command" placeholder="command">
@ -49,7 +49,7 @@
All parameters should be passed in as arguments.</div>
</script>
<script type="text/x-red" data-help-name="daemon">
<script type="text/html" data-help-name="daemon">
<p>Calls out to a long running system command. Sends <code>msg.payload</code> to stdin of the process.</p>
<p>Provides 3 outputs... stdout, stderr, and return code , from the running command.</p>
<p>If the called program stops (i.e. a return code is produced), this node can attempt to restart the command.</p>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-daemon",
"version" : "0.0.26",
"version" : "0.1.0",
"description" : "A Node-RED node that runs and monitors a long running system command.",
"dependencies" : {
},