bs-glob
v0.1.1
Published
BuckleScript bindings to node-glob. Match files using the patterns the shell uses, like stars and stuff.
Readme
bs-glob
BuckleScript bindings to node-glob.
Status: Very basic, but functional
Example
Glob.glob("**/*.js", (_, files) => Array.iter(Js.log, files));Installation
npm install --save reasonml-community/bs-globThen add bs-glob to bs-dependencies in your bsconfig.json:
{
...
"bs-dependencies": ["bs-glob"]
}