npm package diff

Package: @forge/bundler

Versions: 4.21.0-next.2 - 4.21.0-next.3

File: package/out/types.d.ts

Index: package/out/types.d.ts
===================================================================
--- package/out/types.d.ts
+++ package/out/types.d.ts
@@ -6,9 +6,9 @@
 export interface BundlerOutput {
     outputDir: string;
     metadata?: BundlerMetadata;
 }
-export declare type BundleLogger = Pick<Logger, 'trace' | 'debug' | 'info' | 'warn'>;
+export declare type BundleLogger = Pick<Logger, 'trace' | 'debug' | 'info' | 'warn' | 'error'>;
 export declare type BundlerWatchMode = 'watch' | 'debug';
 export declare type EntryPoint = {
     name: string;
     path: string;
@@ -18,9 +18,9 @@
     entryPoints: EntryPoint[];
     i18nConfig?: Translations;
     watchMode?: BundlerWatchMode;
 };
-export declare type BundlerWatchArgs = BundlerArgs & {
+export declare type BundlerWatchArgs = BundlerArgs & Required<Pick<BundlerArgs, 'watchMode'>> & {
     successMessage: string;
 };
 export declare type BundlerWatch = {
     onBuildWillStart: () => Promise<void>;