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

grunt-contrib-lib

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-lib - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

AUTHORS

1

grunt.js

@@ -8,2 +8,3 @@ module.exports = function(grunt) {

},
jshint: {

@@ -10,0 +11,0 @@ options: {

17

lib/contrib.js
/*
* grunt-contrib-lib
* http://github.com/gruntjs/grunt-contrib-lib
* http://gruntjs.com/
*
* Copyright (c) 2012 Tyler Kellen & Contributors
* Copyright (c) 2012 Tyler Kellen, contributors
* Licensed under the MIT license.
* http://tkellen.com/
* https://github.com/gruntjs/grunt-contrib-lib/blob/master/LICENSE-MIT
*/
exports.init = function(grunt) {
'use strict';
"use strict";
var exports = {};

@@ -22,6 +21,6 @@

var _ = grunt.util._;
var namespace = data.nameArgs.split(":");
var task = grunt.config(_.flatten([namespace, "options"]));
var global_subtask = namespace.length > 1 ? grunt.config(_.flatten(["options", namespace])) : {};
var global = grunt.config(["options", namespace[0]]);
var namespace = data.nameArgs.split(':');
var task = grunt.config(_.flatten([namespace, 'options']));
var global_subtask = namespace.length > 1 ? grunt.config(_.flatten(['options', namespace])) : {};
var global = grunt.config(['options', namespace[0]]);

@@ -28,0 +27,0 @@ return _.defaults({}, task, global_subtask, global, defaults || {});

{
"name": "grunt-contrib-lib",
"description": "Common functionality shared across grunt-contrib tasks.",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "http://github.com/gruntjs/grunt-contrib-lib",
"contributors": [
{
"name": "Tyler Kellen",
"url": "http://tkellen.com/"
},
{
"name": "Chris Talkington",
"url": "http://github.com/ctalkington"
}
],
"author": {
"name": "Tyler Kellen",
"url": "http://tkellen.com/"
},
"repository": {

@@ -29,15 +23,6 @@ "type": "git",

],
"dependencies": {
},
"devDependencies": {
"grunt": "~0.3.11"
},
"engines": {
"node": ">= 0.6.0"
},
"main": "lib/contrib",
"scripts": {
"test": "grunt test"
}
}
"main": "lib/contrib"
}
# grunt-contrib-lib
> Common functionality shared across grunt-contrib tasks.
Copyright (c) 2012 Tyler Kellen & Contributors
Licensed under the MIT license.
> Common functionality shared across grunt-contrib tasks.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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