Skip to content

NefedovAO/grunt-wi-json-palette

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-wi-json-palette

JSON palette builder for wi controls

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-wi-json-palette --save-dev

Or you may want add it to dependencies:

"devDependencies": {
 "grunt-wi-json-palette": "~0.1.0"
}

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

grunt.loadNpmTasks('grunt-wi-json-palette');

The "wi-json-palette" task

Overview

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

grunt.initConfig({
   'wi-json-palette': {
      subTaskName: {
         options: {
            // Task-specific options go here.
         }
      }
   }
})

Options

options.repos

Type: Array Default value: []

An array with objects with repositories info. Each object must contain 2 fields: path and prefix. prefix would be used in output file, path would be searched recusevly.

options.output

Type: String Default value: ./palette.json

File name with resulting json. All directories would be created automatically.

options.pretty

Type: Boolean Default value: true

Use pretty print for json.

options.indent

Type: Number Default value: 3

Number of spaces for pretty print.

options.defaultGroup

Type: String Default value: general

Default controls group. If control doesn't specify it, would be used defaultGroup for it.

Usage Examples

Simple run

Building palette with one control.

grunt.initConfig({
  'wi-json-palette': {
      simpleRun: {
         options: {
            repos: [{
               path: '/path/to/your/controls/folder/',
               prefix: 'prefix/for/that/controls'
            }],
            output: './palette.json'
         }
      }
   }
})

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

(Nothing yet)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published