Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ms-cloudpack/bundler-types

Package Overview
Dependencies
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ms-cloudpack/bundler-types - npm Package Compare versions

Comparing version 0.15.0 to 0.16.0

5

lib/BundleOptions.d.ts

@@ -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

lib/PackageDefinitionsCache.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc