Skip to content

gruntjs/grunt-lib-legacyhelpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-lib-legacyhelpers

Some old grunt helpers provided for backwards compatability.

Grunt's helper system has been deprecated in favor of node require. If your plugin uses the concat, gzip or min_max_info helpers, you may now use them by adding this package to your plugin's dependencies.

Usage

// adding this line near the top of your task will load the helpers,
// giving them access to the current instance of grunt.
var helpers = require('grunt-lib-legacyhelpers').init(grunt);

// then, replace any call to helpers:
grunt.helper('name', ...);

// with this:
helpers.name(...);

Future releases of grunt will provide the ability to pipe data through multiple tasks in your plugin code. For now, this is the canonical method for sharing common utility functions between tasks.

About

Some old grunt helpers provided for backwards compatability.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published