
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
grunt-reconfigure
Advanced tools
Grunt.js task to override config options in certain environments or situations.

Grunt Task to override other configuration options.
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.
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.
_.extend()) instead of replacedreconfigureOverrides dangling which were causing tasks to fail.Copyright (c) 2013 Joshua Lindsey. See LICENSE for details.
FAQs
Grunt.js task to override config options in certain environments or situations.
We found that grunt-reconfigure demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.