Socket
Socket
Sign inDemoInstall

webpack-stream

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-stream - npm Package Compare versions

Comparing version 5.2.0 to 5.2.1

11

index.js

@@ -42,8 +42,7 @@ 'use strict';

/**
* Webpack 4 doesn't support the `quiet` attribute, however supports
* setting `stats` to a string within an array of configurations
* (errors-only|minimal|none|normal|verbose)
*/
const isSilent = options.quiet || (options.stats && (options.stats.match(/^(errors-only|minimal|none)$/)));
// Webpack 4 doesn't support the `quiet` attribute, however supports
// setting `stats` to a string within an array of configurations
// (errors-only|minimal|none|normal|verbose) or an object with an absurd
// amount of config
const isSilent = options.quiet || (typeof options.stats === 'string' && (options.stats.match(/^(errors-only|minimal|none)$/)));

@@ -50,0 +49,0 @@ if (typeof done !== 'function') {

{
"name": "webpack-stream",
"version": "5.2.0",
"version": "5.2.1",
"description": "Run webpack as a stream",

@@ -5,0 +5,0 @@ "license": "MIT",

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