elit 2.0.0 → 3.0.0
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/README.md +436 -237
- package/dist/build.d.mts +10 -1
- package/dist/build.d.ts +10 -1
- package/dist/build.js +670 -1
- package/dist/build.mjs +641 -1
- package/dist/chokidar.d.mts +134 -0
- package/dist/chokidar.d.ts +134 -0
- package/dist/chokidar.js +240 -0
- package/dist/chokidar.mjs +221 -0
- package/dist/cli.js +2792 -495
- package/dist/dom.d.mts +10 -3
- package/dist/dom.d.ts +10 -3
- package/dist/dom.js +676 -1
- package/dist/dom.mjs +647 -1
- package/dist/el.d.mts +16 -36
- package/dist/el.d.ts +16 -36
- package/dist/el.js +789 -1
- package/dist/el.mjs +583 -1
- package/dist/fs.d.mts +255 -0
- package/dist/fs.d.ts +255 -0
- package/dist/fs.js +513 -0
- package/dist/fs.mjs +469 -0
- package/dist/hmr.js +112 -1
- package/dist/hmr.mjs +91 -1
- package/dist/http.d.mts +163 -0
- package/dist/http.d.ts +163 -0
- package/dist/http.js +632 -0
- package/dist/http.mjs +605 -0
- package/dist/https.d.mts +108 -0
- package/dist/https.d.ts +108 -0
- package/dist/https.js +907 -0
- package/dist/https.mjs +901 -0
- package/dist/index.d.mts +613 -33
- package/dist/index.d.ts +613 -33
- package/dist/index.js +2589 -1
- package/dist/index.mjs +2312 -1
- package/dist/mime-types.d.mts +48 -0
- package/dist/mime-types.d.ts +48 -0
- package/dist/mime-types.js +197 -0
- package/dist/mime-types.mjs +166 -0
- package/dist/path.d.mts +163 -0
- package/dist/path.d.ts +163 -0
- package/dist/path.js +350 -0
- package/dist/path.mjs +310 -0
- package/dist/router.d.mts +3 -1
- package/dist/router.d.ts +3 -1
- package/dist/router.js +830 -1
- package/dist/router.mjs +801 -1
- package/dist/runtime.d.mts +97 -0
- package/dist/runtime.d.ts +97 -0
- package/dist/runtime.js +43 -0
- package/dist/runtime.mjs +15 -0
- package/dist/server.d.mts +5 -1
- package/dist/server.d.ts +5 -1
- package/dist/server.js +3267 -1
- package/dist/server.mjs +3241 -1
- package/dist/state.d.mts +3 -1
- package/dist/state.d.ts +3 -1
- package/dist/state.js +1036 -1
- package/dist/state.mjs +992 -1
- package/dist/style.d.mts +47 -1
- package/dist/style.d.ts +47 -1
- package/dist/style.js +551 -1
- package/dist/style.mjs +483 -1
- package/dist/{types-DOAdFFJB.d.ts → types-C0nGi6MX.d.mts} +29 -13
- package/dist/{types-DOAdFFJB.d.mts → types-Du6kfwTm.d.ts} +29 -13
- package/dist/types.d.mts +452 -3
- package/dist/types.d.ts +452 -3
- package/dist/types.js +18 -1
- package/dist/ws.d.mts +195 -0
- package/dist/ws.d.ts +195 -0
- package/dist/ws.js +380 -0
- package/dist/ws.mjs +358 -0
- package/dist/wss.d.mts +108 -0
- package/dist/wss.d.ts +108 -0
- package/dist/wss.js +1306 -0
- package/dist/wss.mjs +1300 -0
- package/package.json +53 -6
- package/dist/client.d.mts +0 -9
- package/dist/client.d.ts +0 -9
- package/dist/client.js +0 -1
- package/dist/client.mjs +0 -1
package/dist/build.d.mts
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
import { B as BuildOptions,
|
|
1
|
+
import { B as BuildOptions, j as BuildResult } from './types-C0nGi6MX.mjs';
|
|
2
|
+
import './http.mjs';
|
|
3
|
+
import 'node:events';
|
|
4
|
+
import './ws.mjs';
|
|
5
|
+
import 'events';
|
|
2
6
|
import 'http';
|
|
3
7
|
import 'ws';
|
|
4
8
|
|
|
5
9
|
/**
|
|
6
10
|
* Build module for bundling applications
|
|
11
|
+
* Pure implementation with cross-runtime support
|
|
12
|
+
* Compatible with standard build tools API
|
|
13
|
+
* - Node.js: uses esbuild
|
|
14
|
+
* - Bun: uses Bun.build
|
|
15
|
+
* - Deno: uses Deno.emit
|
|
7
16
|
*/
|
|
8
17
|
|
|
9
18
|
declare function build(options: BuildOptions): Promise<BuildResult>;
|
package/dist/build.d.ts
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
import { B as BuildOptions,
|
|
1
|
+
import { B as BuildOptions, j as BuildResult } from './types-Du6kfwTm.js';
|
|
2
|
+
import './http.js';
|
|
3
|
+
import 'node:events';
|
|
4
|
+
import './ws.js';
|
|
5
|
+
import 'events';
|
|
2
6
|
import 'http';
|
|
3
7
|
import 'ws';
|
|
4
8
|
|
|
5
9
|
/**
|
|
6
10
|
* Build module for bundling applications
|
|
11
|
+
* Pure implementation with cross-runtime support
|
|
12
|
+
* Compatible with standard build tools API
|
|
13
|
+
* - Node.js: uses esbuild
|
|
14
|
+
* - Bun: uses Bun.build
|
|
15
|
+
* - Deno: uses Deno.emit
|
|
7
16
|
*/
|
|
8
17
|
|
|
9
18
|
declare function build(options: BuildOptions): Promise<BuildResult>;
|