fly-quaint

0.1.1 • Public • Published

Quaint plugin for Fly.

npm package

Usage

Currently, there is no documentation available. However, you can get a feel for what Quaint is capable of by trying it here.

This plugin takes an optional object of options 😵 which are passed to the compiler. There is one option that is dealt with directly by the plugin and that's the format that you'd like the result to be in. It can be html, enode, text and (currently not working) dom. format defaults to html and logs a message to the user stating that it is using the default (may drop or change this).

Install

npm install -D fly-quaint

Example

JavaScript

export default function* () {
  yield this.clear("dist")
  yield this
    .source("src/**/*.q")
    .quaint({ format: "html" }) // this is the default
    .concat("result.html")
    .target("dist")
}

Earl-Grey

provide: default
default = *->
   yield this.clear(.dist)
   yield chain this:
      @source: "src/**/*.q"
      @quaint: { format = .html } ;; this is the default
      @concat: "result.html"
      @target: .dist

License

MIT © Jake Russo et al

Readme

Keywords

Package Sidebar

Install

npm i fly-quaint

Weekly Downloads

0

Version

0.1.1

License

MIT

Last publish

Collaborators

  • madcapjake