rebuildjs 0.58.0 → 0.60.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rebuildjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.60.0",
|
|
4
4
|
"description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reactive",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"./package.json": "./package.json"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"ctx-core": "^6.
|
|
58
|
+
"ctx-core": "^6.1.0",
|
|
59
59
|
"elysia": "^0.8.16",
|
|
60
60
|
"esbuild": "^0.20.0",
|
|
61
61
|
"fdir": "^6.1.1",
|
package/server/asset/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { ctx__be_T, ctx__get_T, ctx__set_T } from 'ctx-core/be'
|
|
2
2
|
import type { lock_memosig_T } from 'ctx-core/rmemo'
|
|
3
|
-
import type {
|
|
3
|
+
import type { wide_request_ctx_T } from '../ctx/index.js'
|
|
4
4
|
export declare const assets$_:ctx__be_T<lock_memosig_T<assets_T>, 'request'>
|
|
5
5
|
export declare const assets_:ctx__get_T<assets_T, 'request'>
|
|
6
6
|
export declare const assets__set:ctx__set_T<assets_T, 'request'>
|
|
7
|
-
export declare function assets__assign<ctx_T extends
|
|
7
|
+
export declare function assets__assign<ctx_T extends wide_request_ctx_T>(
|
|
8
8
|
ctx:ctx_T,
|
|
9
9
|
..._assets_a:Partial<assets_T>[]
|
|
10
10
|
):assets_T
|
package/server/build/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ctx__be_T, ctx__get_T, ctx__set_T, nullish, rmemo__wait_ret_T, rmemo_T, sig_T } from 'ctx-core/rmemo'
|
|
2
2
|
import type { BuildContext, BuildOptions, Plugin } from 'esbuild'
|
|
3
|
-
import type {
|
|
3
|
+
import type { wide_app_ctx_T } from '../ctx/index.js'
|
|
4
4
|
import type { rebuildjs_metafile_T } from '../metafile_l0/index.js'
|
|
5
5
|
export declare const build_id$_:ctx__be_T<sig_T<string|undefined>, 'app'>
|
|
6
6
|
export declare const build_id_:ctx__get_T<string|undefined, 'app'>
|
package/server/ctx/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export declare function request_ctx__new(middleware_ctx:middleware_ctx_T):reques
|
|
|
5
5
|
export type app_ctx_T = ctx_T<'app'>
|
|
6
6
|
export type middleware_ctx_T = ctx_T<'middleware'|'app'>
|
|
7
7
|
export type request_ctx_T = ctx_T<''|'request'|'middleware'|'app'>
|
|
8
|
-
export type
|
|
9
|
-
export type
|
|
10
|
-
export type
|
|
8
|
+
export type wide_app_ctx_T = wide_ctx_T<'app'>
|
|
9
|
+
export type wide_middleware_ctx_T = wide_ctx_T<'middleware'>
|
|
10
|
+
export type wide_request_ctx_T = wide_ctx_T<'request'>
|