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.14 to 0.2.15

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.14",
"version": "0.2.15",
"homepage": "https://github.com/kahlil/grunt-compass",

@@ -6,0 +6,0 @@ "author": {

@@ -59,3 +59,3 @@ # grunt-compass

10. You can set the relative assets to `true` and set an image path for Compass spriting feature:
10. You can set the relative assets to `true` and set an image path for the Compass spriting feature:

@@ -67,4 +67,10 @@ ```javascript

11. Run "grunt watch" and change some SASS files :)
11. You can run compass with bundle exec if you need to as well:
```javascript
bundleExec: true
```
12. Run "grunt watch" and edit some SASS files :)
# An Example Setup

@@ -71,0 +77,0 @@

@@ -19,3 +19,4 @@ module.exports = function( grunt ) {

relativeassets = this.data.relativeassets,
libRequire = this.data.require;
libRequire = this.data.require,
bundleExec = this.data.bundleExec;

@@ -30,2 +31,6 @@ if ( this.data.src !== undefined ) {

if ( bundleExec ) {
command = 'bundle exec ' + command;
}
if ( src !== undefined && dest !== undefined ) {

@@ -32,0 +37,0 @@ command += ' --sass-dir="' + src + '" --css-dir="' + dest + '"';

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