@parcel/runtime-js
Advanced tools
Comparing version 2.0.0-nightly.203 to 2.0.0-nightly.205
@@ -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 @@ |
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance 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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
41439
1194