Import all nix files in a directory tree. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ dendrix.oeiuwq.com/Dendritic.html
dendritic inputs

pipe in files example

+8 -1
+8 -1
README.md
··· 333 333 ```nix 334 334 # import-tree.files : [ <list-of-files> ] 335 335 336 - ((import-tree.withLib lib).initFilter (lib.hasSuffix ".js")).files # => list of all .js files 336 + # paths to give to uglify-js 337 + lib.pipe import-tree [ 338 + (i: i.initFilter (lib.hasSuffix ".js")) # look for .js files. ignore nothing. 339 + (i: i.addPath ./out) # under the typescript compiler outDir 340 + (i: i.withLib lib) # set lib since we are not importing modules. 341 + (i: i.files) 342 + ] 343 + # => list of all .js files 337 344 ``` 338 345 339 346 ### `import-tree.result`