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

wild-config

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wild-config - npm Package Compare versions

Comparing version 1.4.0 to 1.5.0

.github/FUNDING.yml

32

index.js

@@ -44,21 +44,19 @@ /* eslint no-console: 0, global-require: 0 */

let res = m;
try {
let files;
if (p.indexOf('*') >= 0) {
files = glob.sync(p);
} else {
files = [p];
let files;
if (p.indexOf('*') >= 0) {
files = glob.sync(p);
} else {
files = [p];
}
files.forEach(file => {
let stat = fs.statSync(file);
if (!stat.isFile()) {
throw new Error(file + ' is not a file');
}
});
res = '__include_file_path_' + ++c + '=' + JSON.stringify(files);
files.forEach(file => {
let stat = fs.statSync(file);
if (!stat.isFile()) {
throw new Error(file + ' is not a file');
}
});
res = '__include_file_path_' + ++c + '=' + JSON.stringify(files);
} catch (E) {
throw E;
}
return res;

@@ -65,0 +63,0 @@ });

{
"name": "wild-config",
"version": "1.4.0",
"version": "1.5.0",
"description": "Configuration management module",

@@ -23,14 +23,14 @@ "main": "index.js",

"dependencies": {
"deep-extend": "^0.6.0",
"eslint-config-prettier": "^3.6.0",
"glob": "^7.1.3",
"minimist": "^1.2.0",
"toml": "^2.3.5"
"deep-extend": "0.6.0",
"glob": "7.1.6",
"minimist": "1.2.0",
"toml": "3.0.0"
},
"devDependencies": {
"eslint-config-nodemailer": "^1.2.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-eslint": "^21.0.0"
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "6.9.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-eslint": "22.0.0"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc