@ms-cloudpack/bundler-types
Advanced tools
Comparing version 0.13.1 to 0.14.0
@@ -9,3 +9,3 @@ export type { BundleMessage } from './BundleMessage.js'; | ||
export type { PackageDefinitionsCache, PackageDefinitionTransform } from './PackageDefinitionsCache.js'; | ||
export type { PackageJson, PackageJsonConditionalExports, PackageJsonDependencies, PackageJsonExports, PackageJsonPathExports, } from './PackageJson.js'; | ||
export type { LiteralOrString, PackageJson, PackageJsonConditionalExports, PackageJsonDependencies, PackageJsonExportCondition, PackageJsonExports, PackageJsonImports, PackageJsonPathExports, } from './PackageJson.js'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -99,5 +99,5 @@ /** | ||
*/ | ||
type LiteralOrString<LiteralType extends string> = LiteralType | (string & Record<never, never>); | ||
export type LiteralOrString<LiteralType extends string> = LiteralType | (string & Record<never, never>); | ||
/** Conditions which provide a way to resolve a package entry point based on the environment. */ | ||
type PackageJsonExportCondition = LiteralOrString<'import' | 'require' | 'node' | 'node-addons' | 'deno' | 'browser' | 'electron' | 'react-native' | 'default'>; | ||
export type PackageJsonExportCondition = LiteralOrString<'import' | 'require' | 'node' | 'node-addons' | 'deno' | 'browser' | 'electron' | 'react-native' | 'default'>; | ||
/** Mapping from environment condition to export information. This is one possible sub-type of `PackageJson.exports`. */ | ||
@@ -114,3 +114,3 @@ export type PackageJsonConditionalExports = { | ||
/** Import map entries of a module, optionally with conditions. */ | ||
type PackageJsonImports = { | ||
export type PackageJsonImports = { | ||
[key: `#${string}`]: string | { | ||
@@ -122,3 +122,2 @@ [key in PackageJsonExportCondition]: PackageJsonExports; | ||
export type PackageJsonDependencies = Partial<Record<string, string>>; | ||
export {}; | ||
//# sourceMappingURL=PackageJson.d.ts.map |
@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard. | ||
"packageName": "@microsoft/api-extractor", | ||
"packageVersion": "7.35.2" | ||
"packageVersion": "7.35.4" | ||
} | ||
] | ||
} |
{ | ||
"name": "@ms-cloudpack/bundler-types", | ||
"version": "0.13.1", | ||
"version": "0.14.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
39161
321