grunt-roole
v0.1.3
Published
Compile Roole files to CSS
Downloads
1
Readme
Grunt Roole
Compile Roole files to CSS
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-roole --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-roole');
The "roole" task
Overview
In your project's Gruntfile, add a section named roole
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
roole: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
Options
options.indent
Type: String
Default value: '\t'
A indentation string to use in CSS.
options.precision
Type: Integer
Default value: 3
Max number of decimal digits to use in CSS
options.prefix
Type: String
Default value: 'webkit moz ms o'
A space-separated vendor names to use for prefixing.
options.skipPrefixed
Type: Boolean
Default value: false
Not generate prefixed rule that already exists.
options.separator
Type: String
Default value: ', '
A string value that is used to do something with whatever.
Usage Examples
grunt.initConfig({
roole: {
compile: {
options: {
},
files: {
'dest/roole.css': 'src/style.roo',
'dest/concat.css': ['src/style.roo', 'src/style2.roo'],
},
},
},
});
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
- 2013-10-8 v0.1.0 Initial release.