@parcel/types
Advanced tools
Comparing version 2.0.0-nightly.137 to 2.0.0-nightly.140
20
index.js
@@ -37,17 +37,19 @@ // @flow strict-local | ||
export type ParcelConfigFile = {| | ||
export type RawParcelConfigPipeline = Array<PackageName>; | ||
export type RawParcelConfig = {| | ||
extends?: PackageName | FilePath | Array<PackageName | FilePath>, | ||
resolvers?: Array<PackageName>, | ||
transforms?: {[Glob]: Array<PackageName>, ...}, | ||
resolvers?: RawParcelConfigPipeline, | ||
transformers?: {[Glob]: RawParcelConfigPipeline, ...}, | ||
bundler?: PackageName, | ||
namers?: Array<PackageName>, | ||
runtimes?: {[EnvironmentContext]: Array<PackageName>, ...}, | ||
namers?: RawParcelConfigPipeline, | ||
runtimes?: {[EnvironmentContext]: RawParcelConfigPipeline, ...}, | ||
packagers?: {[Glob]: PackageName, ...}, | ||
optimizers?: {[Glob]: Array<PackageName>, ...}, | ||
reporters?: Array<PackageName>, | ||
validators?: {[Glob]: Array<PackageName>, ...}, | ||
optimizers?: {[Glob]: RawParcelConfigPipeline, ...}, | ||
reporters?: RawParcelConfigPipeline, | ||
validators?: {[Glob]: RawParcelConfigPipeline, ...}, | ||
|}; | ||
export type ResolvedParcelConfigFile = {| | ||
...ParcelConfigFile, | ||
...RawParcelConfig, | ||
+filePath: FilePath, | ||
@@ -54,0 +56,0 @@ +resolveFrom?: FilePath, |
{ | ||
"name": "@parcel/types", | ||
"version": "2.0.0-nightly.137+a07a8b84", | ||
"version": "2.0.0-nightly.140+4fd6dcae", | ||
"license": "MIT", | ||
@@ -13,3 +13,3 @@ "main": "src/index.js", | ||
}, | ||
"gitHead": "a07a8b84923a74077b70a4d2fcbc5a9f17736f3b" | ||
"gitHead": "4fd6dcaea61185bfb4d87ef707e23fb980f8d8a3" | ||
} |
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
21834
755