Comparing version 1.0.0-beta.1-commit.b123256 to 1.0.0-beta.1-commit.f1c6bdf
@@ -87,3 +87,3 @@ type MaybePromise<T> = T | Promise<T> | ||
get fileName(): string | ||
get modules(): Record<string, BindingRenderedModule> | ||
get modules(): BindingModules | ||
get imports(): Array<string> | ||
@@ -157,2 +157,15 @@ get dynamicImports(): Array<string> | ||
export declare class RenderedChunk { | ||
get name(): string | ||
get isEntry(): boolean | ||
get isDynamicEntry(): boolean | ||
get facadeModuleId(): string | null | ||
get moduleIds(): Array<string> | ||
get exports(): Array<string> | ||
get fileName(): string | ||
get modules(): BindingModules | ||
get imports(): Array<string> | ||
get dynamicImports(): Array<string> | ||
} | ||
export interface AliasItem { | ||
@@ -400,2 +413,7 @@ find: string | ||
export interface BindingModules { | ||
value: Array<BindingRenderedModule> | ||
idToIndex: Record<string, number> | ||
} | ||
export interface BindingModuleSideEffectsRule { | ||
@@ -833,15 +851,2 @@ test?: RegExp | undefined | ||
export interface RenderedChunk { | ||
name: string | ||
isEntry: boolean | ||
isDynamicEntry: boolean | ||
facadeModuleId?: string | ||
moduleIds: Array<string> | ||
exports: Array<string> | ||
fileName: string | ||
modules: Record<string, BindingRenderedModule> | ||
imports: Array<string> | ||
dynamicImports: Array<string> | ||
} | ||
export type Severity = 'Error'| | ||
@@ -848,0 +853,0 @@ 'Warning'| |
@@ -32,2 +32,11 @@ import { AssetSource } from '../utils/asset-source'; | ||
}; | ||
name: string; | ||
isEntry: boolean; | ||
isDynamicEntry: boolean; | ||
facadeModuleId: string | null; | ||
moduleIds: Array<string>; | ||
exports: Array<string>; | ||
fileName: string; | ||
imports: Array<string>; | ||
dynamicImports: Array<string>; | ||
} | ||
@@ -34,0 +43,0 @@ export interface OutputChunk { |
{ | ||
"name": "rolldown", | ||
"version": "1.0.0-beta.1-commit.b123256", | ||
"version": "1.0.0-beta.1-commit.f1c6bdf", | ||
"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": "1.0.0-beta.1-commit.b123256" | ||
"rolldown": "1.0.0-beta.1-commit.f1c6bdf" | ||
}, | ||
"optionalDependencies": { | ||
"@rolldown/binding-darwin-arm64": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-darwin-x64": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-freebsd-x64": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-wasm32-wasi": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-win32-x64-msvc": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.1-commit.b123256", | ||
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.1-commit.b123256" | ||
"@rolldown/binding-darwin-arm64": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-freebsd-x64": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-darwin-x64": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-wasm32-wasi": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.1-commit.f1c6bdf", | ||
"@rolldown/binding-win32-x64-msvc": "1.0.0-beta.1-commit.f1c6bdf" | ||
}, | ||
@@ -150,6 +150,4 @@ "scripts": { | ||
"# Scrips for checking #": "_", | ||
"test": "pnpm run --filter rolldown-tests go", | ||
"test:update": "vitest run -u", | ||
"type-check": "tsc" | ||
} | ||
} |
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
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
775178
15852