Socket
Socket
Sign inDemoInstall

grunt-lib-contrib

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-lib-contrib

Common functionality shared across grunt-contrib tasks.


Version published
Weekly downloads
38K
decreased by-11.44%
Maintainers
2
Weekly downloads
 
Created
Source

grunt-lib-contrib Build Status

Common functionality shared across grunt-contrib tasks.

The purpose of grunt-lib-contrib is to explore solutions to common problems task writers encounter, and to ease the upgrade path for contrib tasks.

These APIs should be considered highly unstable. Depend on them at your own risk!

Over time, some of the functionality provided here may be incorporated directly into grunt for mainstream use. Until then, you may require grunt-lib-contrib as a dependency in your projects, but be very careful to specify an exact version number instead of a range, as backwards-incompatible changes are likely to be introduced.

Helper Functions

getNamespaceDeclaration(ns)

This helper is used to build JS namespace declarations.

optsToArgs(options)

Convert an object to an array of CLI arguments, which can be used with child_process.spawn().

// Example
{
  fooBar: 'a',        // ['--foo-bar', 'a']
  fooBar: 1,          // ['--foo-bar', '1']
  fooBar: true,       // ['--foo-bar']
  fooBar: false,      //
  fooBar: ['a', 'b']  // ['--foo-bar', 'a', '--foo-bar', 'b']
}
stripPath(pth, strip)

Strip a path from a path. normalize both paths for best results.

minMaxInfo(min, max)

Helper for logging compressed and uncompressed sizes of strings.

var max = grunt.file.read('max.js');
var min = minify(max);
minMaxInfo(min, max);

// Will print:
// Uncompressed size: 108 bytes.
// Compressed size: 82 bytes gzipped (76 bytes minified).

--

Lib submitted by Tyler Kellen.

FAQs

Package last updated on 18 Feb 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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