mirror of
https://github.com/flynx/features.js.git
synced 2025-10-29 10:20:09 +00:00
bugfix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
c56d8e1caf
commit
fe73561b5d
@ -1037,8 +1037,10 @@ var FeatureSetProto = {
|
||||
|
||||
var graph = ''
|
||||
graph += 'digraph ImageGrid {\n'
|
||||
lst.forEach(function(f){
|
||||
var deps = dep[f] || []
|
||||
lst
|
||||
.filter(function(f){ return f in dep })
|
||||
.forEach(function(f){
|
||||
var deps = dep[f].depends || []
|
||||
|
||||
deps.length > 0 ?
|
||||
deps.forEach(function(d){
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ig-features",
|
||||
"version": "3.2.3",
|
||||
"version": "3.2.4",
|
||||
"description": "",
|
||||
"main": "features.js",
|
||||
"scripts": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user