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

webpack-bugsnag-plugins

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-bugsnag-plugins - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

CHANGELOG.md

2

package.json
{
"name": "webpack-bugsnag-plugins",
"version": "1.1.0",
"version": "1.1.1",
"description": "Webpack plugins for common Bugsnag actions",

@@ -5,0 +5,0 @@ "keywords": [

@@ -44,7 +44,7 @@ 'use strict'

// find a corresponding source file in the chunk
const source = chunk.files.find(file => file === map.replace('.map', ''))
const source = map ? chunk.files.find(file => file === map.replace('.map', '')) : null
if (!source || !map) {
console.warn(`${LOG_PREFIX} no source/map pair found for chunk "${chunk.name}"`)
return cb()
console.warn(`${LOG_PREFIX} no source/map pair found for chunk "${chunk.id}"`)
return null
}

@@ -63,3 +63,3 @@

const sourceMaps = stats.chunks.map(chunkToSourceMapDescriptor)
const sourceMaps = stats.chunks.map(chunkToSourceMapDescriptor).filter(Boolean)
parallel(sourceMaps.map(sm => cb => {

@@ -66,0 +66,0 @@ console.log(`${LOG_PREFIX} uploading sourcemap for "${sm.url}"`)

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