Skip to content

simple 'find' implementation and some more useful options

License

Notifications You must be signed in to change notification settings

shimataro/node-simplefind

Repository files navigation

node-simplefind

Build Status (Linux) Code Coverage Release Node.js version License

simple 'find' implementation and some more useful options

Install

npm i @shimataro/node-simplefind

Examples

optimize multiple SVG files using svgo

package.json:

{
  "scripts": {
    "build": "node-simplefind src -name '*.svg' -exec svgo -i {} -o dist/{r=src} \\;"
  }
}