@gregoriusrippenstein/node-red-contrib-nodedev 0.5.0 → 0.5.1
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.
|
@@ -78,6 +78,8 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
78
78
|
npmtoken: { value: "NPM_AUTH_TOKEN" },
|
|
79
79
|
npmtokenType: { value: "env" },
|
|
80
80
|
|
|
81
|
+
flowsnoderedorg_update: { value: false },
|
|
82
|
+
|
|
81
83
|
writetgzfile: { value: false },
|
|
82
84
|
|
|
83
85
|
},
|
|
@@ -298,6 +300,7 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
298
300
|
</div>
|
|
299
301
|
|
|
300
302
|
<hr />
|
|
303
|
+
|
|
301
304
|
<div class="form-row">
|
|
302
305
|
<label for="node-input-npmpublish" style="min-width: 120px;">
|
|
303
306
|
<span>NPMjs: Publish</span>
|
|
@@ -325,6 +328,7 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
325
328
|
</div>
|
|
326
329
|
|
|
327
330
|
<hr />
|
|
331
|
+
|
|
328
332
|
<div class="form-row">
|
|
329
333
|
<label for="node-input-gitcommit" style="min-width: 120px;">
|
|
330
334
|
<span>GitHub: Commit?</span>
|
|
@@ -378,8 +382,17 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
378
382
|
<label for="node-input-githubauthoremail" style="min-width: 150px;"><i class="fa fa-envelope-o"></i> Author Email</label>
|
|
379
383
|
<input type="text" id="node-input-githubauthoremail" placeholder="joe@spreads-the.love"/>
|
|
380
384
|
</div>
|
|
385
|
+
</div>
|
|
386
|
+
|
|
387
|
+
<hr />
|
|
381
388
|
|
|
389
|
+
<div class="form-row">
|
|
390
|
+
<label for="node-input-flowsnoderedorg_update" style="min-width: 180px;">
|
|
391
|
+
<span>Flows.NodeRed.org: Update</span>
|
|
392
|
+
</label>
|
|
393
|
+
<input type="checkbox" id="node-input-flowsnoderedorg_update" style="display:inline-block; width:15px; vertical-align:baseline;">
|
|
382
394
|
</div>
|
|
395
|
+
|
|
383
396
|
</script>
|
|
384
397
|
|
|
385
398
|
<script type="text/html" data-help-name="NodeDevOps">
|
package/nodes/lib/tarhelpers.js
CHANGED