sigh-pipe
v0.1.0
Published
Sigh plugin to pipe files through a unix executable.
Downloads
2
Maintainers
Readme
sigh-pipe
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.