@node-red/registry 4.1.0 → 4.1.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.
@@ -171,6 +171,10 @@ async function checkFlowDependencies(flowConfig) {
171
171
  const checkedSubflows = {};
172
172
  while (nodes.length > 0) {
173
173
  let n = nodes.shift();
174
+ if (n.d) {
175
+ // Ignore disabled nodes
176
+ continue
177
+ }
174
178
  if (subflowTypes[n.type] && !checkedSubflows[n.type]) {
175
179
  checkedSubflows[n.type] = true;
176
180
  nodes = nodes.concat(subflowTypes[n.type].flow)
package/lib/loader.js CHANGED
@@ -308,10 +308,6 @@ async function loadPluginConfig(fileInfo) {
308
308
  // isEnabled = info.enabled;
309
309
  // }
310
310
 
311
-
312
- if (!fs.existsSync(jsFile)) {
313
- }
314
-
315
311
  var plugin = {
316
312
  type: "plugin",
317
313
  id: id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-red/registry",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./lib/index.js",
6
6
  "repository": {
@@ -16,7 +16,7 @@
16
16
  }
17
17
  ],
18
18
  "dependencies": {
19
- "@node-red/util": "4.1.0",
19
+ "@node-red/util": "4.1.1",
20
20
  "clone": "2.1.2",
21
21
  "fs-extra": "11.3.0",
22
22
  "semver": "7.7.1",