0.2.0 • Published 11 years ago

grunt-wieldyjs v0.2.0

Weekly downloads
10
License
-
Repository
github
Last release
11 years ago

About

This task renders WieldyMarkup templates into HTML.

Getting Started

Install this plugin with the command:

npm install grunt-wieldyjs

Next, add this line to your project's grunt file:

grunt.loadNpmTasks("grunt-wieldyjs");

Lastly, add the configuration settings (see below) to your grunt file.

Documentation

This task has two required properties, src and dest. src is the path to your source file and dest is the file this task will write to (relative to the grunt.js file). If this file already exists it will be overwritten.

An example configuration looks like this:

grunt.initConfig({
  wieldyjs: {
    dist: {
      src: "example-wml/*.wml",
      dest: "example-html/*.html",

      options: {
        // see below for options. this is optional.
      }
    }
  }
});

Optional Configuration Properties

TBD

0.2.0

11 years ago

0.1.0

11 years ago

0.0.1

11 years ago