jlongster / grunt-sweet.js

Grunt task for Sweet.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

grunt-sweet.js

Grunt plugin for Sweet.js

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-sweet.js --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-sweet.js');

The "sweet_js" task

Overview

In your project's Gruntfile, add a section named sweet_js to the data object passed into grunt.initConfig().

grunt.initConfig({
  sweet_js: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

options.modules

Type: Array Default value: []

A list of macros you want to use. These can be npm modules or local files. Analagous to the sjs -m option.

options.sourceMap

Type: boolean Default value: false

Generate sourcemaps along with JavaScript files

options.nodeSourceMapSupport

Type: boolean Default value: false

Automatically load the source-map-support node module in generated files so errors automatically use sourcemaps. (You need to install the module with npm install source-map-support)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

v0.1.0 (2013-11-17) -- Initial release

About

Grunt task for Sweet.js

License:MIT License


Languages

Language:JavaScript 100.0%