New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rolldown

Package Overview
Dependencies
Maintainers
0
Versions
459
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

to
0.15.0-commit.f0c42f8

dist/shared/src-DF6eJFya.mjs

1

dist/types/binding.d.ts

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

dynamicallyImportedIds: Array<string>
exports: Array<string>
isEntry: boolean

@@ -36,0 +37,0 @@ get code(): string | null

3

dist/types/options/normalized-output-options.d.ts

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

import { type UnsupportedFnRet } from '../utils/misc';
import type { BindingNormalizedOptions } from '../binding';

@@ -35,2 +34,3 @@ import type { SourcemapIgnoreListOption, SourcemapPathTransformOption } from '../rollup';

}
type UnsupportedFnRet = () => never;
export declare class NormalizedOutputOptionsImpl implements NormalizedOutputOptions {

@@ -68,1 +68,2 @@ inner: BindingNormalizedOptions;

}
export {};
import type { LoggingFunction, LogHandler, LogLevelOption, RollupError } from '../rollup';
import type { Plugin } from '../plugin';
export interface PluginContextMeta {

@@ -9,2 +8,3 @@ rollupVersion: string;

export declare class MinimalPluginContext {
readonly pluginName: string;
info: LoggingFunction;

@@ -14,4 +14,4 @@ warn: LoggingFunction;

meta: PluginContextMeta;
readonly error: (error: RollupError | string) => never;
constructor(onLog: LogHandler, logLevel: LogLevelOption, plugin: Plugin);
constructor(onLog: LogHandler, logLevel: LogLevelOption, pluginName: string);
error(e: RollupError | string): never;
}

@@ -26,17 +26,21 @@ import type { BindingPluginContext } from '../binding';

export declare class PluginContext extends MinimalPluginContext {
readonly load: (options: {
private context;
private data;
private onLog;
private currentLoadingModule?;
constructor(context: BindingPluginContext, plugin: Plugin, data: PluginContextData, onLog: LogHandler, logLevel: LogLevelOption, currentLoadingModule?: string | undefined);
load(options: {
id: string;
resolveDependencies?: boolean;
} & Partial<PartialNull<ModuleOptions>>) => Promise<ModuleInfo>;
readonly resolve: (source: string, importer?: string, options?: PluginContextResolveOptions) => Promise<ResolvedId | null>;
readonly emitFile: (file: EmittedAsset) => string;
readonly getFileName: (referenceId: string) => string;
readonly getModuleInfo: (id: string) => ModuleInfo | null;
readonly getModuleIds: () => IterableIterator<string>;
readonly addWatchFile: (id: string) => void;
} & Partial<PartialNull<ModuleOptions>>): Promise<ModuleInfo>;
resolve(source: string, importer?: string, options?: PluginContextResolveOptions): Promise<ResolvedId | null>;
emitFile(file: EmittedAsset): string;
getFileName(referenceId: string): string;
getModuleInfo(id: string): ModuleInfo | null;
getModuleIds(): IterableIterator<string>;
addWatchFile(id: string): void;
/**
* @deprecated This rollup API won't be supported by rolldown. Using this API will cause runtime error.
*/
readonly parse: (input: string, options?: any) => any;
constructor(context: BindingPluginContext, plugin: Plugin, data: PluginContextData, onLog: LogHandler, logLevel: LogLevelOption, currentLoadingModule?: string);
parse(_input: string, _options?: any): any;
}

@@ -8,8 +8,11 @@ import type { BindingPluginContext, BindingTransformPluginContext } from '../binding';

export declare class TransformPluginContext extends PluginContext {
error: (error: RollupError | string, pos?: number | {
private inner;
private moduleId;
private moduleSource;
constructor(context: BindingPluginContext, plugin: Plugin, data: PluginContextData, inner: BindingTransformPluginContext, moduleId: string, moduleSource: string, onLog: LogHandler, LogLevelOption: LogLevelOption);
error(e: RollupError | string, pos?: number | {
column: number;
line: number;
}) => never;
getCombinedSourcemap: () => SourceMap;
constructor(context: BindingPluginContext, plugin: Plugin, data: PluginContextData, inner: BindingTransformPluginContext, moduleId: string, moduleSource: string, onLog: LogHandler, LogLevelOption: LogLevelOption);
}): never;
getCombinedSourcemap(): SourceMap;
}

@@ -13,3 +13,4 @@ import { ModuleOptions } from '..';

dynamicallyImportedIds: string[];
exports: string[];
isEntry: boolean;
}

@@ -5,4 +5,3 @@ export declare function arraify<T>(value: T | T[]): T[];

export declare function unreachable(info?: string): never;
export declare function unsupported(info: string): () => never;
export type UnsupportedFnRet = ReturnType<typeof unsupported>;
export declare function unsupported(info: string): never;
export declare function noop(..._args: any[]): void;
{
"name": "rolldown",
"version": "0.15.0-commit.ddbe0a9",
"version": "0.15.0-commit.f0c42f8",
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",

@@ -112,21 +112,21 @@ "homepage": "https://rolldown.rs/",

"type-fest": "^4.20.0",
"unbuild": "^2.0.0",
"unbuild": "^3.0.0",
"why-is-node-running": "^3.0.0",
"zod-to-json-schema": "^3.23.2",
"rolldown": "0.15.0-commit.ddbe0a9",
"@rolldown/testing": "0.0.1"
"@rolldown/testing": "0.0.1",
"rolldown": "0.15.0-commit.f0c42f8"
},
"optionalDependencies": {
"@rolldown/binding-darwin-x64": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-darwin-arm64": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-freebsd-x64": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-linux-arm64-gnu": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-linux-arm-gnueabihf": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-linux-arm64-musl": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-linux-x64-gnu": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-linux-x64-musl": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-win32-ia32-msvc": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-wasm32-wasi": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-win32-arm64-msvc": "0.15.0-commit.ddbe0a9",
"@rolldown/binding-win32-x64-msvc": "0.15.0-commit.ddbe0a9"
"@rolldown/binding-darwin-x64": "0.15.0-commit.f0c42f8",
"@rolldown/binding-darwin-arm64": "0.15.0-commit.f0c42f8",
"@rolldown/binding-freebsd-x64": "0.15.0-commit.f0c42f8",
"@rolldown/binding-linux-arm-gnueabihf": "0.15.0-commit.f0c42f8",
"@rolldown/binding-linux-arm64-gnu": "0.15.0-commit.f0c42f8",
"@rolldown/binding-linux-arm64-musl": "0.15.0-commit.f0c42f8",
"@rolldown/binding-linux-x64-gnu": "0.15.0-commit.f0c42f8",
"@rolldown/binding-linux-x64-musl": "0.15.0-commit.f0c42f8",
"@rolldown/binding-wasm32-wasi": "0.15.0-commit.f0c42f8",
"@rolldown/binding-win32-arm64-msvc": "0.15.0-commit.f0c42f8",
"@rolldown/binding-win32-ia32-msvc": "0.15.0-commit.f0c42f8",
"@rolldown/binding-win32-x64-msvc": "0.15.0-commit.f0c42f8"
},

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