Socket
Socket
Sign inDemoInstall

wallaby-webpack

Package Overview
Dependencies
Maintainers
2
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wallaby-webpack - npm Package Compare versions

Comparing version 3.9.10 to 3.9.11

16

lib/WallabyInputFileSystem.js

@@ -61,4 +61,20 @@ 'use strict';

}
readJson(filePath, callback) {
this.readFile(filePath, (err, content) => {
if (err) {
callback(err);
} else {
var obj;
try {
obj = JSON.parse(content);
callback(null, obj);
} catch (err2) {
callback(err2);
}
}
});
}
}
module.exports = WallabyInputFileSystem;

2

package.json
{
"name": "wallaby-webpack",
"version": "3.9.10",
"version": "3.9.11",
"description": "Webpack postprocessor for wallaby.js",

@@ -5,0 +5,0 @@ "main": "index.js",

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