webpack-bugsnag-plugins
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"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}"`) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20622
19
342
8
5