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++;
|
||||
})
|
||||
if (!result.hasOwnProperty("f")) {
|
||||
reject(result);
|
||||
}
|
||||
resolve(result);
|
||||
})
|
||||
});
|
||||
@ -63,9 +60,10 @@ function getFlowsFromPath(path) {
|
||||
function addNodeExamplesDir(module,path) {
|
||||
exampleRoots[module] = path;
|
||||
return getFlowsFromPath(path).then(function(result) {
|
||||
if (JSON.stringify(result).indexOf('{"f":') === -1) { return; }
|
||||
exampleFlows = exampleFlows||{};
|
||||
exampleFlows[module] = result;
|
||||
}, function() { return; });
|
||||
});
|
||||
}
|
||||
function removeNodeExamplesDir(module) {
|
||||
delete exampleRoots[module];
|
||||
|
Loading…
Reference in New Issue
Block a user