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

@codecov/bundler-plugin-core

Package Overview
Dependencies
Maintainers
5
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codecov/bundler-plugin-core - npm Package Compare versions

Comparing version 0.0.1-beta.2 to 0.0.1-beta.3

64

dist/index.d.ts
import * as unplugin from 'unplugin';
import { UnpluginOptions } from 'unplugin';
import { z } from 'zod';
type NormalizedOptions = z.infer<ReturnType<typeof optionsSchemaFactory>> & Options;
declare const optionsSchemaFactory: (options: Options) => z.ZodObject<{
apiUrl: z.ZodDefault<z.ZodString>;
bundleName: z.ZodString;
dryRun: z.ZodDefault<z.ZodBoolean>;
retryCount: z.ZodDefault<z.ZodNumber>;
enableBundleAnalysis: z.ZodDefault<z.ZodBoolean>;
uploadToken: z.ZodOptional<z.ZodString>;
uploadOverrides: z.ZodOptional<z.ZodObject<{
branch: z.ZodOptional<z.ZodString>;
build: z.ZodOptional<z.ZodString>;
pr: z.ZodOptional<z.ZodString>;
sha: z.ZodOptional<z.ZodString>;
slug: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
branch?: string | undefined;
build?: string | undefined;
pr?: string | undefined;
sha?: string | undefined;
slug?: string | undefined;
}, {
branch?: string | undefined;
build?: string | undefined;
pr?: string | undefined;
sha?: string | undefined;
slug?: string | undefined;
}>>;
}, "strip", z.ZodTypeAny, {
apiUrl: string;
bundleName: string;
dryRun: boolean;
retryCount: number;
enableBundleAnalysis: boolean;
uploadToken?: string | undefined;
uploadOverrides?: {
branch?: string | undefined;
build?: string | undefined;
pr?: string | undefined;
sha?: string | undefined;
slug?: string | undefined;
} | undefined;
}, {
bundleName: string;
apiUrl?: string | undefined;
dryRun?: boolean | undefined;
retryCount?: number | undefined;
enableBundleAnalysis?: boolean | undefined;
uploadToken?: string | undefined;
uploadOverrides?: {
branch?: string | undefined;
build?: string | undefined;
pr?: string | undefined;
sha?: string | undefined;
slug?: string | undefined;
} | undefined;
}>;
interface Asset {

@@ -42,3 +100,3 @@ name: string;

output: Output;
userOptions: Options;
options: NormalizedOptions;
}

@@ -49,6 +107,6 @@ interface Options {

retryCount?: number;
dryRun?: boolean;
bundleName?: string;
enableBundleAnalysis?: boolean;
uploadOverrides?: UploadOverrides;
dryRun?: boolean;
bundleName?: string;
}

@@ -55,0 +113,0 @@ type BundleAnalysisUploadPlugin = (args: BundleAnalysisUploadPluginArgs) => UnpluginOptions & {

3

package.json
{
"name": "@codecov/bundler-plugin-core",
"version": "0.0.1-beta.2",
"version": "0.0.1-beta.3",
"description": "Official Codecov Bundler Plugin Core",

@@ -40,2 +40,3 @@ "author": "Codecov",

"msw": "^2.1.5",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@0.0.1-beta.2",
"testdouble": "^3.20.1",

@@ -42,0 +43,0 @@ "testdouble-jest": "^2.0.0",

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