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.9-commit.43425a0
to
1.0.0-beta.9-commit.76c39c6
+17
dist/generated/ModuleImport.d.ts
export type ModuleImport = {
id: string;
/**
* - `import`: `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' | '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 {};
+1
-0

@@ -12,1 +12,2 @@ export * from './BuildEnd.js';

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

@@ -12,1 +12,2 @@ export * from './BuildEnd.js';

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

@@ -0,6 +1,7 @@

import type { ModuleImport } from "./ModuleImport";
export type Module = {
id: string;
is_external: boolean;
imports: Array<string> | null;
imports: Array<ModuleImport> | null;
importers: Array<string> | null;
};

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

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export {};
{
"name": "@rolldown/debug",
"version": "1.0.0-beta.9-commit.43425a0",
"version": "1.0.0-beta.9-commit.76c39c6",
"license": "MIT",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is not supported yet