1.0.0 ā€¢ Published 7 years ago

globelet v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

šŸ’§ Globelet

npm.io Codecov npm package NPM downloads

Extends globby with support for directory

Installation

npm install globelet

Usage

ā””ā”€ā”€ dir
  ā”œā”€ā”€ one.js
  ā”œā”€ā”€ two.jsx
  ā””ā”€ā”€ three.tmp
const globelet = require('globelet');

globelet(['./dir'], {
  globelet: ['.js', '.jsx'] // default: matches js jsx files
})
.then(paths => {
  console.log(paths);
  //=> ['./dir/one.js', './dir/two.jsx']
});

API