0.1.0 • Published 8 years ago

sigh-pipe v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

sigh-pipe

Build Status

Sigh plugin to pipe events through a shell command

Example

npm install --save-dev sigh-pipe then add something like this to your sigh.js:

  pipelines['build-hercule'] = [
    merge(
      glob({ basePath: 'content' }, '**/*.*')
    ),
    debounce(500),
    pipe('cat')
  ]

This will pipe everyfile through the unix cat command which is basically not doing anything to any file.