Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-contrib-haml

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-haml - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

4

package.json
{
"name": "grunt-contrib-haml",
"description": "Compile Haml to HTML",
"version": "0.1.1",
"version": "0.1.2",
"homepage": "https://github.com/jhchen/grunt-contrib-haml",

@@ -34,3 +34,3 @@ "contributors": [{

"dependencies": {
"grunt-lib-contrib": "~0.5.1"
"dargs": "~0.1.0"
},

@@ -37,0 +37,0 @@ "devDependencies": {

@@ -11,2 +11,4 @@ /*

var dargs = require('dargs');
module.exports = function(grunt) {

@@ -16,3 +18,2 @@ var path = require('path');

grunt.registerMultiTask('haml', 'Compile Haml to HTML', function() {
var helpers = require('grunt-lib-contrib').init(grunt);
var options = this.options();

@@ -27,8 +28,4 @@ var cb = this.async();

grunt.util.async.forEachSeries(this.files, function(f, next) {
var args;
var args = ['haml', f.dest, '--stdin'].concat(dargs(options));
args = [f.dest, '--stdin'].concat(helpers.optsToArgs(options));
args.unshift('haml');
if (bundleExec) {

@@ -35,0 +32,0 @@ args.unshift('bundle', 'exec');

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