Skip to content

Latest commit

 

History

History
 
 

glob

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

modular-css-glob NPM Version NPM License NPM Downloads

Gitter

A JS API for using glob patterns with modular-css.

Install

$ npm i modular-css-glob

Usage

var glob = require("modular-css-glob");

glob({
    search : [
        "**/*.css"
    ]
})
.then((processor) => {
    // returns a filled-out Processor instance you can use
})

Options

glob() accepts all of the same options as a Processor instance.

search

Array of glob patterns to pass to globule for searching.