Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

aglob

a-labo13.5kMIT3.0.2

Async glob module.

glob

readme

aglob

Build Status npm Version JS Standard

Async glob module.

Installation

$ npm install aglob --save

Usage

#!/usr/bin/env/node
'use strict'

const aglob = require('aglob')

aglob([
  'lib/*.js',
  'doc/**/.js'
], {
  cwd: process.cwd(),
  ignore: []
}).then((filenames) => {
  console.log(filenames)
})

License

This software is released under the MIT License.