@parcel/feature-flags
Advanced tools
Comparing version 2.12.1-dev.3303 to 2.12.1-dev.3335
@@ -13,4 +13,6 @@ "use strict"; | ||
exampleFeature: false, | ||
configKeyInvalidation: false, | ||
parcelV3: false | ||
parcelV3: false, | ||
importRetry: false, | ||
ownedResolverStructures: false, | ||
panicOnEmptyFileImport: false | ||
}; | ||
@@ -17,0 +19,0 @@ let featureFlagValues = { |
@@ -6,12 +6,20 @@ export type FeatureFlags = { | ||
/** | ||
* Enables content hash based invalidation for config keys used in plugins. | ||
* This allows Assets not to be invalidated when using | ||
* `config.getConfigFrom(..., {packageKey: '...'})` and the value itself hasn't changed. | ||
* Rust backed requests | ||
*/ | ||
readonly configKeyInvalidation: boolean; | ||
readonly parcelV3: boolean; | ||
/** | ||
* Rust backed requests | ||
* Configure runtime to enable retriable dynamic imports | ||
*/ | ||
readonly parcelV3: boolean; | ||
importRetry: boolean; | ||
/** | ||
* Enable resolver refactor into owned data structures. | ||
*/ | ||
ownedResolverStructures: boolean; | ||
/** | ||
* Makes Parcel panic when an empty file is imported | ||
*/ | ||
panicOnEmptyFileImport: boolean; | ||
}; |
{ | ||
"name": "@parcel/feature-flags", | ||
"version": "2.12.1-dev.3303+3edb0d741", | ||
"version": "2.12.1-dev.3335+c6bc8e411", | ||
"description": "Provides internal feature-flags for the parcel codebase.", | ||
@@ -27,3 +27,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "3edb0d7419831e49cfa7ea8c52b4f7127a16ae52" | ||
"gitHead": "c6bc8e41105247c437089ec3cb91e53f12ac5519" | ||
} |
@@ -10,4 +10,6 @@ // @flow strict | ||
exampleFeature: false, | ||
configKeyInvalidation: false, | ||
parcelV3: false, | ||
importRetry: false, | ||
ownedResolverStructures: false, | ||
panicOnEmptyFileImport: false, | ||
}; | ||
@@ -14,0 +16,0 @@ |
@@ -7,11 +7,18 @@ // @flow strict | ||
/** | ||
* Enables content hash based invalidation for config keys used in plugins. | ||
* This allows Assets not to be invalidated when using | ||
* `config.getConfigFrom(..., {packageKey: '...'})` and the value itself hasn't changed. | ||
* Rust backed requests | ||
*/ | ||
+configKeyInvalidation: boolean, | ||
+parcelV3: boolean, | ||
/** | ||
* Rust backed requests | ||
* Configure runtime to enable retriable dynamic imports | ||
*/ | ||
+parcelV3: boolean, | ||
importRetry: boolean, | ||
/** | ||
* Enable resolver refactor into owned data structures. | ||
*/ | ||
ownedResolverStructures: boolean, | ||
/** | ||
* Makes Parcel panic when an empty file is imported | ||
*/ | ||
panicOnEmptyFileImport: boolean, | ||
|}; |
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
4955
102