npm package diff
Package: @forge/bundler
Versions: 6.1.4-next.6 - 6.1.4-next.7
File: package/out/typescript.d.ts
Index: package/out/typescript.d.ts
===================================================================
--- package/out/typescript.d.ts
+++ package/out/typescript.d.ts
@@ -1,13 +1,14 @@
/// <reference types="node" />
/// <reference types="node" />
import { ChildProcessByStdio } from 'child_process';
import { Readable } from 'stream';
-import { Bundler, BundleLogger, BundlerOutput, BundlerArgs, BundlerWatch, BundlerWatchArgs, BundlerWatchOutput } from './types';
+import { Logger } from '@forge/cli-shared';
+import { Bundler, BundlerOutput, BundlerArgs, BundlerWatch, BundlerWatchArgs, BundlerWatchOutput } from './types';
declare type OutputProcess = ChildProcessByStdio<null, Readable, null>;
export declare abstract class TypeScriptBundler implements Bundler {
- protected readonly logger: BundleLogger;
- constructor(logger: BundleLogger);
+ protected readonly logger: Logger;
+ constructor(logger: Logger);
protected runTypeScript(args: BundlerArgs, outputDir: string): OutputProcess;
protected isListedFile(line: string): string | null;
protected isAppFile(line: string): string | null;
protected getResult(args: BundlerArgs, outputDir: string, output?: string): Promise<BundlerOutput>;