@gregoriusrippenstein/node-red-contrib-nodedev 0.5.0 → 0.5.2
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
package/package.json
CHANGED
|
@@ -160,20 +160,24 @@
|
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
162
|
|
|
163
|
-
// Add first tab, pkg importer
|
|
164
163
|
tabs.addTab({
|
|
165
164
|
id: 'func-nodedev-pkgimporter-tab-pkgimport',
|
|
166
165
|
iconClass: 'fa fa-industry',
|
|
167
166
|
label: 'PkgImporter'
|
|
168
167
|
});
|
|
169
168
|
|
|
170
|
-
// Add first tab, otp
|
|
171
169
|
tabs.addTab({
|
|
172
170
|
id: 'func-nodedev-pkgimporter-tab-otpgenerator',
|
|
173
171
|
iconClass: 'fa fa-user-secret',
|
|
174
172
|
label: 'OTP Generator'
|
|
175
173
|
});
|
|
176
174
|
|
|
175
|
+
tabs.addTab({
|
|
176
|
+
id: 'func-nodedev-pkgimporter-tab-options',
|
|
177
|
+
iconClass: 'fa fa-cog',
|
|
178
|
+
label: 'Options'
|
|
179
|
+
});
|
|
180
|
+
|
|
177
181
|
ensureYourConfigNodeExists();
|
|
178
182
|
|
|
179
183
|
/*
|
|
@@ -464,5 +468,16 @@
|
|
|
464
468
|
<input type="text" id="node-input-nodedev-sidebar-otp" placeholder="OTP...">
|
|
465
469
|
</div>
|
|
466
470
|
</div>
|
|
471
|
+
|
|
472
|
+
<div id="func-nodedev-pkgimporter-tab-options" style="display:none">
|
|
473
|
+
<div class="form-row" style="margin-left: 10px;">
|
|
474
|
+
Drag & Drop
|
|
475
|
+
</div>
|
|
476
|
+
|
|
477
|
+
<div class="form-row" style="margin-left: 10px;">
|
|
478
|
+
<input style="width: 10%;" type="checkbox" id="nodedev-drag-drop-generate-pkgfile-nodes"/>
|
|
479
|
+
<label for="nodedev-drag-drop-generate-pkgfile-nodes" style="width: 40%;"><i class="fa fa-code" ></i> Create PkgFile nodes on drop?</label>
|
|
480
|
+
</div>
|
|
481
|
+
</div>
|
|
467
482
|
</div>
|
|
468
483
|
</script>
|