rebuildjs 0.8.1 → 0.9.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/app/index.d.ts CHANGED
@@ -14,16 +14,16 @@ export const [
14
14
  is_prod_,
15
15
  is_prod__set,
16
16
  ]: be_lock_memosig_triple_T<string>
17
- export const [
18
- dist_path$_,
19
- dist_path_,
20
- dist_path__set,
21
- ]:be_lock_memosig_triple_T<string>
22
17
  export const [
23
18
  public_path$_,
24
19
  public_path_,
25
20
  public_path__set,
26
21
  ]:be_lock_memosig_triple_T<string>
22
+ export const [
23
+ dist_path$_,
24
+ dist_path_,
25
+ dist_path__set,
26
+ ]:be_lock_memosig_triple_T<string>
27
27
  export const [
28
28
  src_path$_,
29
29
  src_path_,
@@ -14,8 +14,8 @@ export declare const [
14
14
  browser__input_path_
15
15
  ]:be_memo_pair_T<string|undefined>
16
16
  export declare const [
17
- browser__output_path$_,
18
- browser__output_path_
17
+ browser__output__relative_path$_,
18
+ browser__output__relative_path_
19
19
  ]:be_memo_pair_T<string|undefined>
20
20
  export declare const [
21
21
  browser__script$_,
package/browser/index.js CHANGED
@@ -42,8 +42,8 @@ export const [
42
42
  }),
43
43
  { ...middleware_ctx__be_config, id: 'browser__input_path' })
44
44
  export const [
45
- browser__output_path$_,
46
- browser__output_path_
45
+ browser__output__relative_path$_,
46
+ browser__output__relative_path_
47
47
  ] = be_memo_pair_(ctx=>
48
48
  nullish__none_([browser__metafile_(ctx), browser__input_path_(ctx)],
49
49
  (browser__metafile, browser__input_path)=>{
@@ -54,12 +54,12 @@ export const [
54
54
  }
55
55
  }
56
56
  }),
57
- { ...middleware_ctx__be_config, id: 'browser__output_path' })
57
+ { ...middleware_ctx__be_config, id: 'browser__output__relative_path' })
58
58
  export const [
59
59
  browser__script$_,
60
60
  browser__script_,
61
61
  ] = be_memo_pair_(ctx=>
62
- nullish__none_([browser__output_path_(ctx), browser_relative_path_(ctx)],
62
+ nullish__none_([browser__output__relative_path_(ctx), browser_relative_path_(ctx)],
63
63
  (browser__output_path, browser_relative_path)=>
64
64
  browser__output_path.replace(browser_relative_path, '')),
65
65
  { ...middleware_ctx__be_config, id: 'browser__script' })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rebuildjs",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
5
5
  "keywords": [
6
6
  "reactive",
package/server/index.d.ts CHANGED
@@ -15,8 +15,8 @@ export declare const [
15
15
  server__input_path__set
16
16
  ]:be_sig_triple_T<string|undefined>
17
17
  export declare const [
18
- server__output_path$_,
19
- server__output_path_
18
+ server__output__relative_path$_,
19
+ server__output__relative_path_
20
20
  ]:be_memo_pair_T<string|undefined>
21
21
  export declare const [
22
22
  server__output$_,
package/server/index.js CHANGED
@@ -34,8 +34,8 @@ export const [
34
34
  undefined,
35
35
  { ...middleware_ctx__be_config, id: 'server__input_path' })
36
36
  export const [
37
- server__output_path$_,
38
- server__output_path_
37
+ server__output__relative_path$_,
38
+ server__output__relative_path_
39
39
  ] = be_memo_pair_(ctx=>
40
40
  nullish__none_(tup(server__metafile_(ctx), server__input_path_(ctx)),
41
41
  (server__metafile, input_path)=>{
@@ -45,12 +45,12 @@ export const [
45
45
  if (output.entryPoint === input_path) return output_path
46
46
  }
47
47
  }),
48
- { ...middleware_ctx__be_config, id: 'server__output_path' })
48
+ { ...middleware_ctx__be_config, id: 'server__output__relative_path' })
49
49
  export const [
50
50
  server__output$_,
51
51
  server__output_
52
52
  ] = be_memo_pair_(ctx=>
53
- nullish__none_(tup(server__metafile_(ctx), server__output_path_(ctx)),
53
+ nullish__none_(tup(server__metafile_(ctx), server__output__relative_path_(ctx)),
54
54
  (server__metafile, output_path)=>
55
55
  server__metafile.outputs[output_path]),
56
56
  { ...middleware_ctx__be_config, id: 'server__output' })