Sign In

@rolldown/debug

Package Overview
Dependencies
Maintainers
3
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rolldown/debug - npm Package Compare versions

Comparing version
1.0.0-beta.8-commit.f97bbba
to
1.0.0-beta.9-commit.0ec9e7d
+7
dist/generated/Module.d.ts
import type { ModuleImport } from "./ModuleImport";
export type Module = {
id: string;
is_external: boolean;
imports: Array<ModuleImport> | null;
importers: Array<string> | null;
};
import type { Module } from "./Module";
export type ModuleGraphReady = {
action: 'ModuleGraphReady';
modules: Array<Module>;
};
export type ModuleImport = {
id: string;
/**
* - `import-statement`: `import { foo } from './lib.js';`
* - `dynamic-import`: `import('./lib.js')`
* - `require-call`: `require('./lib.js')`
* - `import-rule`: `@import 'bg-color.css'`
* - `url-token`: `url('./icon.png')`
* - `new-url`: `new URL('./worker.js', import.meta.url)`
* - `hot-accept`: `import.meta.hot.accept('./lib.js', () => {})`
*/
kind: 'import-statement' | 'dynamic-import' | 'require-call' | 'import-rule' | 'url-token' | 'new-url' | 'hot-accept';
/**
* `./lib.js` in `import { foo } from './lib.js';`
*/
module_request: string;
};
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export {};
+3
-0

@@ -10,1 +10,4 @@ export * from './BuildEnd.js';

export * from './Meta.js';
export * from './Module.js';
export * from './ModuleGraphReady.js';
export * from './ModuleImport.js';

@@ -10,1 +10,4 @@ export * from './BuildEnd.js';

export * from './Meta.js';
export * from './Module.js';
export * from './ModuleGraphReady.js';
export * from './ModuleImport.js';
+2
-1

@@ -9,2 +9,3 @@ import type { BuildEnd } from "./BuildEnd";

import type { HookTransformCallStart } from "./HookTransformCallStart";
export type Meta = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd | BuildStart | BuildEnd | HookResolveIdCallStart | HookResolveIdCallEnd;
import type { ModuleGraphReady } from "./ModuleGraphReady";
export type Meta = HookTransformCallStart | HookTransformCallEnd | HookLoadCallStart | HookLoadCallEnd | BuildStart | BuildEnd | HookResolveIdCallStart | HookResolveIdCallEnd | ModuleGraphReady;
{
"name": "@rolldown/debug",
"version": "1.0.0-beta.8-commit.f97bbba",
"version": "1.0.0-beta.9-commit.0ec9e7d",
"license": "MIT",

@@ -15,3 +15,3 @@ "type": "module",

"devDependencies": {
"@oxc-node/cli": "^0.0.25"
"@oxc-node/cli": "^0.0.27"
},

@@ -18,0 +18,0 @@ "exports": {

Sorry, the diff of this file is not supported yet