/docpad-plugin-raw

Moved to

Primary LanguageCoffeeScriptOtherNOASSERTION

Raw Files Plugin for DocPad

Copies all files in the raw directory to out. Useful for large files that cause out of memory error when placed in files directory.

NPM version

Gittip donate button Paypal donate button

Install

npm install --save docpad-plugin-raw

Install for testing

git clone https://github.com/Hypercubed/docpad-plugin-raw.git
cd docpad-plugin-raw
npm install
make compile

Test

make test

Configuration

Set as many sources as you want. Path should be relative to the src directory. The out folder specified in docpad.coffee is used for the destination.

If no configuration is specified, defaults to raw folder

# ...
plugins:
    raw:
        raw:
            src: 'raw'
        app:
            src: 'app'
# ...

You can also specify copy options as specified by ncp package

# ...
plugins:
    raw:
        raw:
            src: 'raw'
            options:
                clobber: false
# ...

If you would rather use a shell command

# ...
plugins:
    raw:
        raw:
            command: ['rsync', '-a', './src/raw/', './out/']
# ...

Deployment Notes

Using ncp should make this plugin work on a wide variety of platforms and hosted platforms such as Heroku

License

Licensed under the incredibly permissive MIT License
Copyright © 2013+ J. Harshbarger