0.1.4 • Published 9 years ago

grunt-startup v0.1.4

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

grunt-startup

Grunt plugin and configuration loader

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-startup --save-dev

Once the plugin has been installed, update your GruntFile as follows: ####streamlined version

module.exports = new require('grunt-startup')( { configPaths:[ "./grunt/config" ] } );

####readable version with all options

var GruntStartup = require('grunt-startup');

module.exports = new GruntStartup( {

		//load npm tasks
		loadTasks: true,

		//list of tasks not to auto-load
		ignoreTasks: []

		//array of or single directory path in which grunt tasks have been defined
        taskPaths: ["./grunt/tasks"],

		//array of or single  path in which grunt configuration objects have been defined, directories or files
        configPaths: ["./grunt/config"],

		//inline grunt tasks and other initialization logic can go in this method
		init: function( grunt ){

		}
} );

Overview

TODO -Add better description of functionality

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

10 years ago

0.1.0

10 years ago