mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
better handle example file at any depth
This commit is contained in:
parent
d918bb568c
commit
c4f4115bcb
@ -51,9 +51,6 @@ function getFlowsFromPath(path) {
|
|||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
})
|
})
|
||||||
if (!result.hasOwnProperty("f")) {
|
|
||||||
reject(result);
|
|
||||||
}
|
|
||||||
resolve(result);
|
resolve(result);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
@ -63,9 +60,10 @@ function getFlowsFromPath(path) {
|
|||||||
function addNodeExamplesDir(module,path) {
|
function addNodeExamplesDir(module,path) {
|
||||||
exampleRoots[module] = path;
|
exampleRoots[module] = path;
|
||||||
return getFlowsFromPath(path).then(function(result) {
|
return getFlowsFromPath(path).then(function(result) {
|
||||||
|
if (JSON.stringify(result).indexOf('{"f":') === -1) { return; }
|
||||||
exampleFlows = exampleFlows||{};
|
exampleFlows = exampleFlows||{};
|
||||||
exampleFlows[module] = result;
|
exampleFlows[module] = result;
|
||||||
}, function() { return; });
|
});
|
||||||
}
|
}
|
||||||
function removeNodeExamplesDir(module) {
|
function removeNodeExamplesDir(module) {
|
||||||
delete exampleRoots[module];
|
delete exampleRoots[module];
|
||||||
|
Loading…
Reference in New Issue
Block a user