@ms-cloudpack/bundler-types
Advanced tools
Comparing version 0.15.0 to 0.16.0
@@ -1,2 +0,1 @@ | ||
import type { PackageDefinitionsCache } from './PackageDefinitionsCache.js'; | ||
/** | ||
@@ -53,7 +52,3 @@ * Options to create bundles from the bundler plugin. | ||
overrideOptions?: Record<string, unknown>; | ||
/** | ||
* An optional reference to the package definitions cache. | ||
*/ | ||
packages?: PackageDefinitionsCache; | ||
} | ||
//# sourceMappingURL=BundleOptions.d.ts.map |
@@ -14,8 +14,12 @@ import type { PackageJson } from './PackageJson.js'; | ||
/** Register a new transform. */ | ||
registerTransform(callback: PackageDefinitionTransform): void; | ||
/** Clear the cache. */ | ||
clear(): void; | ||
/** Clear the registered transforms. */ | ||
clearTransforms(): void; | ||
registerTransform(factory: (config?: unknown) => PackageDefinitionTransform): void; | ||
/** | ||
* Resets the cache. If a `newConfig` value is provided, the transform factories will be called with the new value | ||
* to give them an opportunity to reflect changes to the config. It is `unknown` because the config type is | ||
* application-specific. | ||
*/ | ||
reset(options?: { | ||
newConfig?: unknown; | ||
}): void; | ||
} | ||
//# sourceMappingURL=PackageDefinitionsCache.d.ts.map |
{ | ||
"name": "@ms-cloudpack/bundler-types", | ||
"version": "0.15.0", | ||
"version": "0.16.0", | ||
"description": "TypeScript types for implementing a bundler abstraction. We keep these separate from the bundler package to eliminate circular package dependencies and ensure no major bumps happen with the contract.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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
39699
326