@parcel/reporter-bundle-analyzer
Advanced tools
Comparing version 2.0.0-nightly.1888 to 2.0.0-nightly.1890
{ | ||
"name": "@parcel/reporter-bundle-analyzer", | ||
"version": "2.0.0-nightly.1888+4210f2fb", | ||
"version": "2.0.0-nightly.1890+f65aa4c5", | ||
"license": "MIT", | ||
@@ -19,10 +19,10 @@ "publishConfig": { | ||
"dependencies": { | ||
"@parcel/plugin": "2.0.0-nightly.266+4210f2fb", | ||
"@parcel/utils": "2.0.0-nightly.266+4210f2fb", | ||
"@parcel/plugin": "2.0.0-nightly.268+f65aa4c5", | ||
"@parcel/utils": "2.0.0-nightly.268+f65aa4c5", | ||
"nullthrows": "^1.1.1" | ||
}, | ||
"devDependencies": { | ||
"@parcel/types": "2.0.0-nightly.266+4210f2fb" | ||
"@parcel/types": "2.0.0-nightly.268+f65aa4c5" | ||
}, | ||
"gitHead": "4210f2fbf1f5973be24fa268a7bb9b6d52ba326b" | ||
"gitHead": "f65aa4c53ab130debfc88f4628eb001f52fb5f63" | ||
} |
// @flow strict-local | ||
import type {Bundle, FilePath, PluginOptions} from '@parcel/types'; | ||
import type {FilePath, NamedBundle, PluginOptions} from '@parcel/types'; | ||
@@ -22,3 +22,3 @@ import invariant from 'assert'; | ||
string /* target name */, | ||
Array<Bundle>, | ||
Array<NamedBundle>, | ||
> = new DefaultMap(() => []); | ||
@@ -102,3 +102,3 @@ for (let bundle of event.bundleGraph.getBundles()) { | ||
async function getBundleData( | ||
bundles: Array<Bundle>, | ||
bundles: Array<NamedBundle>, | ||
options: PluginOptions, | ||
@@ -122,3 +122,3 @@ ): Promise<BundleData> { | ||
async function getBundleNode(bundle: Bundle, options: PluginOptions) { | ||
async function getBundleNode(bundle: NamedBundle, options: PluginOptions) { | ||
let buildMetrics = await generateBuildMetrics( | ||
@@ -125,0 +125,0 @@ [bundle], |
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
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
163242