New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-compass

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-compass - npm Package Compare versions

Comparing version 0.2.10 to 0.2.11

2

package.json
{
"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;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc