Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

serverless-build-plugin

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-build-plugin - npm Package Compare versions

Comparing version 2.4.0-alpha.0 to 3.0.0-alpha

2

package.json
{
"name": "serverless-build-plugin",
"version": "2.4.0-alpha.0",
"version": "3.0.0-alpha",
"description": "A Node.js focused build optimizer plugin for serverless",

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

@@ -142,3 +142,4 @@ "use strict";

}
return resolve(stats.toString({
var errors = stats.compilation.errors;
var statsText = stats.toString({
colors: true,

@@ -149,3 +150,9 @@ hash: false,

children: false,
}));
});
if (errors.length) {
// tslint:disable-next-line:no-console
console.error("\n" + statsText + "\n");
return reject(errors[0]);
}
return resolve(statsText);
});

@@ -152,0 +159,0 @@ });

Sorry, the diff of this file is not supported yet

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