Giter VIP home page Giter VIP logo

grunt-contrib-lib's Introduction

grunt-contrib-lib Build Status

Common functionality shared across grunt-contrib tasks.

Helper Functions

buildIndividualDest(dest, srcFile, basePath, flatten)

This helper is used to build a destination filepath for tasks supporting individual compiling.

findBasePath(srcFiles)

This helper is used to take an array of filepaths and find the common base directory.

getNamespaceDeclaration(ns)

This helper is used to build JS namespace declarations.

isIndividualDest(dest)

This helper is used to detect if a destination filepath triggers individual compiling.

normalizeMultiTaskFiles(data, target)

This helper is a (temporary) shim to handle multi-task files object in the same way grunt v0.4 does.

options(data, defaults)

This helper is on its way out as grunt v0.4 adds an options helper to the task api. This new helper only supports task and target options (no root level options key) so you should start adjusting your tasks now to be ready for the v0.4 release.

Contrib tasks are in the process of being updated to check for the new helper first.

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']
}

Release History

  • 2012/09/24 - v0.3.0 - added findBasePath, buildIndividualDest, isIndividualDest, optsToArgs. refactored tests. parse templates in options.
  • 2012/09/14 - v0.2.1 - non-destuctive namespace declarations
  • 2012/09/10 - v0.2.0 - refactored from grunt-contrib into individual repo.

grunt-contrib-lib's People

Contributors

ctalkington avatar sindresorhus avatar lazd avatar

Watchers

Kyle Robinson Young avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.