grunt-compass
Advanced tools
Comparing version 0.2.10 to 0.2.11
{ | ||
"name": "grunt-compass", | ||
"description": "A custom grunt.js task that executes compass compile for you and prints the COMPASS output to grunt.log.write().", | ||
"version": "0.2.10", | ||
"version": "0.2.11", | ||
"homepage": "https://github.com/kahlil/grunt-compass", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -1,4 +0,4 @@ | ||
# `compass compile` for Grunt.js | ||
# grunt-compass | ||
This is a custom grunt.js multitask that executes `compass compile` for you and prints the COMPASS output to `grunt.log.write()`. | ||
This is a custom grunt.js multitask that executes `compass compile` on the command line for you and prints the COMPASS output to `grunt.log.write()`. | ||
@@ -76,2 +76,3 @@ 1. Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-compass`. | ||
# Real World Examples | ||
* [krzysu](https://github.com/krzysu) posted a Gist with his `compass compile` configuration [over here](https://gist.github.com/2917330). | ||
@@ -82,2 +83,6 @@ * [javiervd](https://github.com/javiervd) kindly shares his grunt.js setup [over here](https://gist.github.com/2941501). | ||
v0.2.10: Added 'gruntplugin' as a keyword in the package.json to get listed [here](http://jsfiddle.net/cowboy/qzRjD/show/). | ||
v0.2.9: Ability to require a given ruby lib before running commands. Added by @[FGRibreau](https://github.com/FGRibreau). | ||
v0.2.8: Added an option to force compilation of SASS files via the `--force` option. | ||
@@ -84,0 +89,0 @@ |
@@ -15,2 +15,3 @@ module.exports = function( grunt ) { | ||
forcecompile = this.data.forcecompile, | ||
debugsass = this.data.debugsass, | ||
libRequire = this.data.require; | ||
@@ -22,2 +23,8 @@ | ||
if ( debugsass !== undefined ) { | ||
if ( debugsass === true ) { | ||
command += ' --debug-info'; | ||
} | ||
} | ||
if ( outputstyle !== undefined ) { | ||
@@ -24,0 +31,0 @@ command += ' --output-style ' + outputstyle; |
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
Found 1 instance in 1 package
7545
53
114
1