New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

grunt-reconfigure

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-reconfigure

Grunt.js task to override config options in certain environments or situations.

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

grunt-reconfigure Build Status

Grunt Task to override other configuration options.

Getting Started

This plugin requires Grunt ~0.4.0

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-reconfigure --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-reconfigure');

This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.

Reconfigure task

Run this task with the grunt reconfigure command.
This task is designed to be run as part of a chain (ex. grunt reconfigure:dev coffee jade)

This task looks for a key in the options object in any Grunt task config called reconfigureOverrides. Within that object should be any number of arbitrarily named keys corresponding to the "environment" you wish those options to take effect in. For example, if you have a Jade config that looks like this:

{
  jade: {
    index: {
      options: {
        reconfigureOverrides: {
          dev: {
            pretty: true
          },
          dist: {
            pretty: false
          }
        }
      },
      files: {
        "public/index.html": "src/jade/index.jade"
      }
    }
  }
}

Then running Grunt with grunt reconfigure:dev jade will compile your Jade templates with pretty: true. Any options set outside of the override object will be treated normally.

Contributing

  • Create a feature branch
  • Write your code
  • Write tests (please)
  • Open a pull requests and I'll merge it back in (and add you to the contributors)!

Changelog

v1.0.2

  • Fix traversal not finding all nested fields
  • Option objects are now merged (using _.extend()) instead of replaced
  • Improve test output

v1.0.1

  • Better tests
  • Better code flow and comments
  • Fix cleanup not always running, leaving some reconfigureOverrides dangling which were causing tasks to fail.

v1.0.0

  • Initial release

License

Copyright (c) 2013 Joshua Lindsey. See LICENSE for details.

Keywords

grunt

FAQs

Package last updated on 12 Jul 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