Socket
Socket
Sign inDemoInstall

grunt

Package Overview
Dependencies
337
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.13 to 0.3.14

4

lib/grunt/task.js

@@ -304,6 +304,6 @@ /*

var pkgfile = path.join(root, name, 'package.json');
var pkg = existsSync(pkgfile) ? grunt.file.readJSON(pkgfile) : {keywords: []};
var pkg = existsSync(pkgfile) ? grunt.file.readJSON(pkgfile) : {};
// Process collection plugins.
if (pkg.keywords.indexOf('gruntcollection') !== -1) {
if (pkg.keywords && pkg.keywords.indexOf('gruntcollection') !== -1) {
Object.keys(pkg.dependencies).forEach(function(depName) {

@@ -310,0 +310,0 @@ // Npm sometimes pulls dependencies out if they're shared, so find

{
"name": "grunt",
"description": "A task-based command line build tool for JavaScript projects.",
"version": "0.3.13",
"version": "0.3.14",
"author": "\"Cowboy\" Ben Alman (http://benalman.com/)",

@@ -6,0 +6,0 @@ "homepage": "http://github.com/cowboy/grunt",

@@ -45,2 +45,3 @@ # grunt

* 2012/08/29 - v0.3.14 - Grunt plugins lacking package.json keywords should work again.
* 2012/08/27 - v0.3.13 - Fixed Node.js 0.8.x path.existsSync warning. Updated connect, nodeunit, uglify-js deps to latest. Updated docs. Grunt plugins generated with init:gruntplugin no longer include grunt as a dependency. Added preliminary support for "collection" plugins.

@@ -47,0 +48,0 @@ * 2012/07/30 - v0.3.12 - Fixing a bug in node 0.8.x where utils.spawn would terminate before receiving all child stdout.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc