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

rolldown

Package Overview
Dependencies
Maintainers
3
Versions
372
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rolldown - npm Package Compare versions

Comparing version 0.15.0-snapshot-5e456b6-20241203003703 to 0.15.0-snapshot-993c4a1-20241205003858

dist/shared/consola_36c0034f--bn5jvdH.mjs

2

dist/types/api/build.d.ts

@@ -6,2 +6,4 @@ import type { RolldownOptions } from '../types/rolldown-options';

* Write the output to the file system
*
* @default true
*/

@@ -8,0 +10,0 @@ write?: boolean;

4

dist/types/api/watch/index.d.ts
import type { WatchOptions } from '../../options/watch-options';
import { Watcher } from './watcher';
export declare const watch: (input: WatchOptions) => Promise<Watcher>;
import { RolldownWatcher } from './watch-emitter';
export declare const watch: (input: WatchOptions) => RolldownWatcher;
import { BindingWatcher } from '../../binding';
import { MaybePromise } from '../../types/utils';
import { WatchOptions } from '../../options/watch-options';
import { WatcherEmitter } from './watch-emitter';
export declare class Watcher {
closed: boolean;
controller: AbortController;
inner: BindingWatcher;
emitter: WatcherEmitter;
stopWorkers?: () => Promise<void>;
listeners: Map<WatcherEvent, Array<(...parameters: any[]) => MaybePromise<void>>>;
constructor(inner: BindingWatcher, stopWorkers?: () => Promise<void>);
constructor(emitter: WatcherEmitter, inner: BindingWatcher, stopWorkers?: () => Promise<void>);
close(): Promise<void>;
on(event: 'change', listener: (id: string, change: {
event: ChangeEvent;
}) => MaybePromise<void>): this;
on(event: 'event', listener: (data: RollupWatcherEvent) => MaybePromise<void>): this;
on(event: 'restart' | 'close', listener: () => MaybePromise<void>): this;
watch(): void;
start(): void;
}
export type WatcherEvent = 'close' | 'event' | 'restart' | 'change';
export type ChangeEvent = 'create' | 'update' | 'delete';
export type RollupWatcherEvent = {
code: 'START';
} | {
code: 'BUNDLE_START';
} | {
code: 'BUNDLE_END';
duration: number;
output: readonly string[];
} | {
code: 'END';
} | {
code: 'ERROR';
error: Error;
};
export declare function createWatcher(emitter: WatcherEmitter, input: WatchOptions): Promise<void>;

@@ -19,3 +19,3 @@ type MaybePromise<T> = T | Promise<T>

export declare class BindingHookError {
get errors(): Array<unknown>
get errors(): Array<Error | object>
}

@@ -72,4 +72,6 @@

get originalFileName(): string | null
get originalFileNames(): Array<string>
get source(): BindingAssetSource
get name(): string | null
get names(): Array<string>
}

@@ -97,3 +99,3 @@

get assets(): Array<BindingOutputAsset>
get errors(): Array<unknown>
get errors(): Array<Error | object>
}

@@ -135,3 +137,3 @@

bundleEventKind(): string
errors(): Array<unknown>
errors(): Array<Error | object>
}

@@ -332,2 +334,3 @@

watch?: BindingWatchOption
keepNames?: boolean
}

@@ -532,7 +535,8 @@

reactRefresh?: boolean
targets?: string
target?: string
browserslist?: string
}
export interface BindingTreeshake {
moduleSideEffects: boolean | BindingModuleSideEffectsRule[]
moduleSideEffects: boolean | BindingModuleSideEffectsRule[] | ((id: string, is_external: boolean) => boolean | undefined)
annotations?: boolean

@@ -546,3 +550,3 @@ }

external: true | string[]
noExternal: true | string[]
noExternal: true | Array<string | RegExp>
finalizeBareSpecifier?: (resolvedId: string, rawId: string, importer: string | null | undefined) => VoidNullable<string>

@@ -616,4 +620,4 @@ finalizeOtherSpecifiers?: (resolvedId: string, rawId: string) => VoidNullable<string>

export interface JsOutputAsset {
name?: string
originalFileName?: string
names: Array<string>
originalFileNames: Array<string>
filename: string

@@ -620,0 +624,0 @@ source: BindingAssetSource

@@ -53,3 +53,3 @@ import type { ObjectSchema } from './types';

treeshake: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -74,6 +74,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -98,6 +98,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -122,3 +122,3 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;

@@ -125,0 +125,0 @@ }, z.ZodTypeAny, "passthrough">>, z.ZodBoolean]>>;

@@ -23,8 +23,8 @@ import { RolldownOutput, RolldownOutputAsset, RolldownOutputChunk, RolldownRenderedChunk, SourceMap } from './types/rolldown-output';

import { WatchOptions } from './options/watch-options';
import { Watcher } from './api/watch/watcher';
import { RolldownWatcher } from './api/watch/watch-emitter';
import { build, type BuildOptions } from './api/build';
export { defineConfig, rolldown, watch, build };
export declare const VERSION: string;
export type { RolldownOutputAsset, RolldownOutputChunk, RolldownOptions, RolldownOutput, RolldownBuild, InputOptions, NormalizedInputOptions, OutputOptions, NormalizedOutputOptions, Plugin, RolldownPlugin, DefineParallelPluginResult, ConfigExport, ImportKind, InputOption, ExternalOption, ModuleFormat, ModuleType, InternalModuleFormat, LoadResult, TransformResult, ResolveIdResult, PluginContext, TransformPluginContext, ObjectHook, PreRenderedChunk, SourceMap, SourceDescription, PartialNull, PartialResolvedId, ResolvedId, ModuleOptions, ModuleInfo, MinimalPluginContext, EmittedFile, EmittedAsset, CustomPluginOptions, AsyncPluginHooks, ParallelPluginHooks, FunctionPluginHooks, ExistingRawSourceMap, SourceMapInput, OutputBundle, JsxOptions, WatchOptions, Watcher, BuildOptions, };
export type { RolldownOutput as RollupOutput, RolldownOptions as RollupOptions, RolldownBuild as RollupBuild, RolldownOutputChunk as OutputChunk, RolldownOutputAsset as OutputAsset, RolldownRenderedChunk as RenderedChunk, };
export type { RolldownOutputAsset, RolldownOutputChunk, RolldownOptions, RolldownOutput, RolldownBuild, InputOptions, NormalizedInputOptions, OutputOptions, NormalizedOutputOptions, Plugin, RolldownPlugin, DefineParallelPluginResult, ConfigExport, ImportKind, InputOption, ExternalOption, ModuleFormat, ModuleType, InternalModuleFormat, LoadResult, TransformResult, ResolveIdResult, PluginContext, TransformPluginContext, ObjectHook, PreRenderedChunk, SourceMap, SourceDescription, PartialNull, PartialResolvedId, ResolvedId, ModuleOptions, ModuleInfo, MinimalPluginContext, EmittedFile, EmittedAsset, CustomPluginOptions, AsyncPluginHooks, ParallelPluginHooks, FunctionPluginHooks, ExistingRawSourceMap, SourceMapInput, OutputBundle, JsxOptions, WatchOptions, RolldownWatcher, BuildOptions, };
export type { RolldownOutput as RollupOutput, RolldownOptions as RollupOptions, RolldownBuild as RollupBuild, RolldownOutputChunk as OutputChunk, RolldownOutputAsset as OutputAsset, RolldownRenderedChunk as RenderedChunk, RolldownWatcher as RollupWatcher, };
export type { RollupError, RollupLog, LoggingFunction } from './rollup';

@@ -48,3 +48,3 @@ import { z } from 'zod';

treeshake: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -69,6 +69,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -93,6 +93,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -117,3 +117,3 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;

@@ -235,3 +235,3 @@ }, z.ZodTypeAny, "passthrough">>, z.ZodBoolean]>>;

treeshake?: boolean | z.objectOutputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -256,3 +256,3 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;

@@ -314,3 +314,3 @@ }, z.ZodTypeAny, "passthrough"> | undefined;

treeshake?: boolean | z.objectInputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -335,3 +335,3 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;

@@ -408,3 +408,3 @@ }, z.ZodTypeAny, "passthrough"> | undefined;

treeshake: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -429,6 +429,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -453,6 +453,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -477,3 +477,3 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;

@@ -480,0 +480,0 @@ }, z.ZodTypeAny, "passthrough">>, z.ZodBoolean]>>;

@@ -95,2 +95,3 @@ import { RolldownPluginOption } from '../plugin';

dropLabels?: string[];
keepNames?: boolean;
}

@@ -97,0 +98,0 @@ interface OverwriteInputOptionsForCli {

@@ -909,4 +909,8 @@ // utils

export interface PreRenderedAsset {
/** @deprecated Use "names" instead. */
name: string | undefined
names: string[]
/** @deprecated Use "originalFileNames" instead. */
originalFileName: string | null
originalFileNames: string[]
source: string | Uint8Array

@@ -913,0 +917,0 @@ type: 'asset'

@@ -24,3 +24,3 @@ import { z } from 'zod';

}>;
export declare const ModuleSideEffectsOptionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
export declare const ModuleSideEffectsOptionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -45,5 +45,5 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>;
export declare const TreeshakingOptionsSchema: z.ZodUnion<[z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -68,6 +68,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -92,6 +92,6 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
moduleSideEffects: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodEffects<z.ZodObject<{
test: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;

@@ -116,5 +116,5 @@ external: z.ZodOptional<z.ZodBoolean>;

test?: RegExp | undefined;
}>, "many">]>, z.ZodLiteral<"no-external">]>>;
}>, "many">]>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodBoolean], z.ZodUnknown>, z.ZodOptional<z.ZodBoolean>>]>, z.ZodLiteral<"no-external">]>>;
annotations: z.ZodOptional<z.ZodBoolean>;
}, z.ZodTypeAny, "passthrough">>, z.ZodBoolean]>;
export type TreeshakingOptions = z.infer<typeof TreeshakingOptionsSchema>;

@@ -6,5 +6,9 @@ import { AssetSource } from '../utils/asset-source';

fileName: string;
/** @deprecated Use "originalFileNames" instead. */
originalFileName: string | null;
originalFileNames: string[];
source: AssetSource;
/** @deprecated Use "names" instead. */
name: string | undefined;
names: string[];
}

@@ -11,0 +15,0 @@ export interface SourceMap {

@@ -1,1 +0,1 @@

export declare function normalizeErrors(rawErrors: unknown[]): Error;
export declare function normalizeErrors(rawErrors: (object | Error)[]): Error;
{
"name": "rolldown",
"version": "0.15.0-snapshot-5e456b6-20241203003703",
"version": "0.15.0-snapshot-993c4a1-20241205003858",
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",

@@ -116,17 +116,17 @@ "homepage": "https://rolldown.rs/",

"@rolldown/testing": "0.0.1",
"rolldown": "0.15.0-snapshot-5e456b6-20241203003703"
"rolldown": "0.15.0-snapshot-993c4a1-20241205003858"
},
"optionalDependencies": {
"@rolldown/binding-darwin-arm64": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-darwin-x64": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-freebsd-x64": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-linux-arm-gnueabihf": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-linux-arm64-gnu": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-linux-arm64-musl": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-linux-x64-gnu": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-linux-x64-musl": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-wasm32-wasi": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-win32-arm64-msvc": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-win32-x64-msvc": "0.15.0-snapshot-5e456b6-20241203003703",
"@rolldown/binding-win32-ia32-msvc": "0.15.0-snapshot-5e456b6-20241203003703"
"@rolldown/binding-darwin-arm64": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-darwin-x64": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-freebsd-x64": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-linux-arm-gnueabihf": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-linux-arm64-gnu": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-linux-x64-gnu": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-linux-arm64-musl": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-linux-x64-musl": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-win32-arm64-msvc": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-win32-ia32-msvc": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-wasm32-wasi": "0.15.0-snapshot-993c4a1-20241205003858",
"@rolldown/binding-win32-x64-msvc": "0.15.0-snapshot-993c4a1-20241205003858"
},

@@ -133,0 +133,0 @@ "scripts": {

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

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