New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-cli-config

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-cli-config - npm Package Compare versions

Comparing version

to
0.1.2

4

index.js

@@ -6,7 +6,7 @@ 'use strict';

if (process.env.GRUNT_CLI_CONFIG_CODE_COVERAGE) {
path = process.cwd() + '/tasks-cov/config_options';
path = __dirname + '/tasks-cov/config_options';
} else {
path = process.cwd() + '/tasks/config_options';
path = __dirname + '/tasks/config_options';
}
require(path);
{
"name": "grunt-cli-config",
"description": "Set the config with the options passed on the CLI.",
"version": "0.1.1",
"version": "0.1.2",
"homepage": "https://github.com/henvic/grunt-cli-config",

@@ -6,0 +6,0 @@ "author": {

'use strict';
var grunt = require('grunt'),
configOptions = require(process.cwd() + '/tasks/config_options')(grunt),
configOptions = require(__dirname + '/../tasks/config_options')(grunt),
originalFlags;

@@ -6,0 +6,0 @@