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 +3 -3
- package/dist/builder.js +339 -357
- package/dist/client/DefaultNotFound.js +3 -3
- package/package.json +28 -22
- package/src/builder.js +347 -372
- package/src/client/DefaultNotFound.tsx +19 -4
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<
|
|
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
|
|
14
|
+
* Watches with code splitting enabled
|
|
15
15
|
*/
|
|
16
|
-
export function watchWithChunks(entryPoint: any, outdir: any, hotReloadManager?: null): Promise<import("rollup").
|
|
16
|
+
export function watchWithChunks(entryPoint: any, outdir: any, hotReloadManager?: null): Promise<import("rollup").RollupWatcher>;
|