@codecov/bundler-plugin-core
Advanced tools
Comparing version 0.0.1-beta.10 to 0.0.1-beta.11
@@ -145,2 +145,3 @@ import { UnpluginOptions, UnpluginContextMeta } from 'unplugin'; | ||
size: number; | ||
gzipSize: number | null; | ||
normalized: string; | ||
@@ -240,6 +241,24 @@ } | ||
interface CreateAssetOptions { | ||
fileName: string; | ||
source: Uint8Array | string; | ||
formatString: string; | ||
} | ||
declare const createRollupAsset: ({ source, fileName, formatString, }: CreateAssetOptions) => Promise<{ | ||
name: string; | ||
size: number; | ||
gzipSize: number | null; | ||
normalized: string; | ||
}>; | ||
declare function red(msg: string): void; | ||
interface GetCompressedSizeOptions { | ||
fileName: string; | ||
code: string | Uint8Array; | ||
} | ||
declare const getCompressedSize: ({ fileName, code, }: GetCompressedSizeOptions) => Promise<number | null>; | ||
declare const normalizePath: (path: string, format: string) => string; | ||
export { type Asset, type BundleAnalysisUploadPlugin, type Chunk, type Module, type Options, Output, type ProviderUtilInputs, type UploadOverrides, checkNodeVersion, handleErrors, normalizeOptions, normalizePath, red }; | ||
export { type Asset, type BundleAnalysisUploadPlugin, type Chunk, type Module, type Options, Output, type ProviderUtilInputs, type UploadOverrides, checkNodeVersion, createRollupAsset, getCompressedSize, handleErrors, normalizeOptions, normalizePath, red }; |
{ | ||
"name": "@codecov/bundler-plugin-core", | ||
"version": "0.0.1-beta.10", | ||
"version": "0.0.1-beta.11", | ||
"description": "Official Codecov Bundler Plugin Core", | ||
@@ -5,0 +5,0 @@ "author": "Codecov", |
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
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
383366
563