1.0.0 • Published 7 years ago

wintersmith-static v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

wintersmith-static

Simple static file plugin for Wintersmith that lets you register glob patterns of files that should be considered static and copied 1:1.

Install

Using wintersmith:

wintersmith plugin install static

Manually:

npm install --save wintersmith-static

Then add wintersmith-static to your plugins list in wintersmith's config.json.

Options

Set the patterns you want in your config.json, like so:

{
    "static": [
        "assets/**/*",
        "a/specific.file",
        "**/*.static"
    ]
}