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

@parcel/runtime-js

Package Overview
Dependencies
Maintainers
1
Versions
889
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/runtime-js - npm Package Compare versions

Comparing version 2.0.0-nightly.203 to 2.0.0-nightly.205

4

lib/JSRuntime.js

@@ -227,3 +227,5 @@ "use strict";

if (bundle.env.outputFormat === 'global') {
loaders += `.then(() => parcelRequire('${bundleGroup.entryAssetId}'))`;
loaders += `.then(() => parcelRequire('${bundleGroup.entryAssetId}')${// In global output with scope hoisting, functions return exports are
// always returned. Otherwise, the exports are returned.
bundle.env.scopeHoist ? '()' : ''})`;
}

@@ -230,0 +232,0 @@

{
"name": "@parcel/runtime-js",
"version": "2.0.0-nightly.203+f6d2a707",
"version": "2.0.0-nightly.205+68b5050a",
"license": "MIT",

@@ -19,7 +19,7 @@ "publishConfig": {

"dependencies": {
"@parcel/plugin": "2.0.0-nightly.203+f6d2a707",
"@parcel/utils": "2.0.0-nightly.203+f6d2a707",
"@parcel/plugin": "2.0.0-nightly.205+68b5050a",
"@parcel/utils": "2.0.0-nightly.205+68b5050a",
"nullthrows": "^1.1.1"
},
"gitHead": "f6d2a707c932032c39064cf53dd74b2b687e310e"
"gitHead": "68b5050ae0e84c4a65ebdc2e57415c1ed0ceacd2"
}

@@ -258,3 +258,7 @@ // @flow strict-local

if (bundle.env.outputFormat === 'global') {
loaders += `.then(() => parcelRequire('${bundleGroup.entryAssetId}'))`;
loaders += `.then(() => parcelRequire('${bundleGroup.entryAssetId}')${
// In global output with scope hoisting, functions return exports are
// always returned. Otherwise, the exports are returned.
bundle.env.scopeHoist ? '()' : ''
})`;
}

@@ -261,0 +265,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