npm update

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-02-18 01:25:21 +03:00
parent ef81ffec96
commit b6b21c2c6d
2 changed files with 2 additions and 4 deletions

View File

@ -1115,7 +1115,6 @@ object.Constructor('FeatureSet', {
gvGraph: function(lst, dep){ gvGraph: function(lst, dep){
lst = lst || this.features lst = lst || this.features
dep = dep || this dep = dep || this
var graph = '' var graph = ''
graph += 'digraph ImageGrid {\n' graph += 'digraph ImageGrid {\n'
lst lst
@ -1128,7 +1127,6 @@ object.Constructor('FeatureSet', {
graph += `\t"${f}" -> "${d}";\n` }) graph += `\t"${f}" -> "${d}";\n` })
: (graph += `\t"${f}";\n`) }) : (graph += `\t"${f}";\n`) })
graph += '}' graph += '}'
return graph }, return graph },
}) })

View File

@ -23,7 +23,7 @@
}, },
"homepage": "https://github.com/flynx/features.js#readme", "homepage": "https://github.com/flynx/features.js#readme",
"dependencies": { "dependencies": {
"ig-actions": "^3.24.29", "ig-actions": "*",
"ig-object": "^5.4.16" "ig-object": "*"
} }
} }