nyte 1.2.4 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/builder.d.ts CHANGED
@@ -5,12 +5,12 @@ export function build(entryPoint: any, outfile: any, isProduction?: boolean): Pr
5
5
  /**
6
6
  * Watches an entry point (Single File)
7
7
  */
8
- export function watch(entryPoint: any, outfile: any, hotReloadManager?: null): Promise<void>;
8
+ export function watch(entryPoint: any, outfile: any, hotReloadManager?: null): Promise<import("rollup").RollupWatcher>;
9
9
  /**
10
10
  * Builds with code splitting into multiple chunks (ESM Format) - MODO PRODUÇÃO
11
11
  */
12
12
  export function buildWithChunks(entryPoint: any, outdir: any, isProduction?: boolean): Promise<void>;
13
13
  /**
14
- * Watches with code splitting enabled (MODIFICADO: No DEV MODE, desativa splitting)
14
+ * Watches with code splitting enabled
15
15
  */
16
- export function watchWithChunks(entryPoint: any, outdir: any, hotReloadManager?: null): Promise<import("rollup").RollupOutput | import("rollup").RollupOutput[] | import("rollup").RollupWatcher>;
16
+ export function watchWithChunks(entryPoint: any, outdir: any, hotReloadManager?: null): Promise<import("rollup").RollupWatcher>;