New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@parcel/reporter-bundle-buddy

Package Overview
Dependencies
Maintainers
1
Versions
810
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/reporter-bundle-buddy - npm Package Compare versions

Comparing version 2.0.0-nightly.2071 to 2.0.0-nightly.2076

3

lib/BundleBuddyReporter.js

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

}) {
if (event.type !== 'buildSuccess' || process.env.BUNDLE_BUDDY == null) {
if (event.type !== 'buildSuccess' || process.env.BUNDLE_BUDDY == null || // $FlowFixMe
process.env.BUNDLE_BUDDY == false) {
return;

@@ -38,0 +39,0 @@ }

{
"name": "@parcel/reporter-bundle-buddy",
"version": "2.0.0-nightly.2071+837d1fbd",
"version": "2.0.0-nightly.2076+04b47e19",
"license": "MIT",

@@ -23,5 +23,5 @@ "publishConfig": {

"dependencies": {
"@parcel/plugin": "2.0.0-nightly.449+837d1fbd"
"@parcel/plugin": "2.0.0-nightly.454+04b47e19"
},
"gitHead": "837d1fbda5eda89fe21bce83af3d24dfa9fb5887"
"gitHead": "04b47e19d2c66b48f88735612f759bb5fc18205f"
}

@@ -8,3 +8,8 @@ // @flow strict-local

async report({event, options}) {
if (event.type !== 'buildSuccess' || process.env.BUNDLE_BUDDY == null) {
if (
event.type !== 'buildSuccess' ||
process.env.BUNDLE_BUDDY == null ||
// $FlowFixMe
process.env.BUNDLE_BUDDY == false
) {
return;

@@ -11,0 +16,0 @@ }

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