0.0.3 • Published 9 years ago

glopy v0.0.3

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

glopy npm version

Recursive, asynchronous, thenable glob copy.

Status

You're Feeling Lucky

Installation

$ npm install glopy

Programmatic usage

glopy({string} from, {string} to, {Array} patterns)
    .then(function () {
        // do something after glopy has finished
    });

CLI usage

package.json

{
  "config": {
    "glopy": {
      "foo": ["./foo", "./bar", [
        "**/*.css",
        "**/*.js"
      ]]
    }
  },
  "scripts": {
    "foo": "glopy foo"
  }
}

command

$ npm run foo

License

MIT