create-wirejs-app 2.0.197 → 2.0.198

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": "create-wirejs-app",
3
- "version": "2.0.197",
3
+ "version": "2.0.198",
4
4
  "description": "Initializes a wirejs package.",
5
5
  "author": "Jon Wire",
6
6
  "license": "MIT",
@@ -11,15 +11,15 @@
11
11
  "dependencies": {
12
12
  "dompurify": "^3.2.3",
13
13
  "marked": "^15.0.6",
14
- "wirejs-components": "^0.1.135",
14
+ "wirejs-components": "^0.1.136",
15
15
  "wirejs-dom": "^1.0.44",
16
- "wirejs-module-payments-stripe": "^0.1.86",
17
- "wirejs-resources": "^0.1.192",
18
- "wirejs-web-worker": "^1.0.89"
16
+ "wirejs-module-payments-stripe": "^0.1.87",
17
+ "wirejs-resources": "^0.1.193",
18
+ "wirejs-web-worker": "^1.0.90"
19
19
  },
20
20
  "devDependencies": {
21
21
  "typescript": "^5.7.3",
22
- "wirejs-scripts": "^3.0.190"
22
+ "wirejs-scripts": "^3.0.191"
23
23
  },
24
24
  "scripts": {
25
25
  "prebuild": "npm run prebuild --workspaces --if-present",
@@ -172,4 +172,6 @@ export async function generate() {
172
172
  });
173
173
  }
174
174
 
175
- hydrate('app', App as any);
175
+ export function onload() {
176
+ hydrate('app', App as any);
177
+ }
@@ -54,4 +54,6 @@ export async function generate() {
54
54
  });
55
55
  }
56
56
 
57
- hydrate('app', App as any);
57
+ export function onload() {
58
+ hydrate('app', App as any);
59
+ }
@@ -490,4 +490,6 @@ export async function generate() {
490
490
  })
491
491
  }
492
492
 
493
- hydrate('app', App as any);
493
+ export function onload() {
494
+ hydrate('app', App as any);
495
+ }
@@ -119,4 +119,6 @@ export async function generate() {
119
119
  })
120
120
  }
121
121
 
122
- hydrate('app', App as any);
122
+ export function onload() {
123
+ hydrate('app', App as any);
124
+ }
@@ -208,4 +208,6 @@ export async function generate() {
208
208
  });
209
209
  }
210
210
 
211
- hydrate('app', App as any);
211
+ export function onload() {
212
+ hydrate('app', App as any);
213
+ }
@@ -64,4 +64,6 @@ export async function generate() {
64
64
  });
65
65
  }
66
66
 
67
- hydrate('app', App as any);
67
+ export function onload() {
68
+ hydrate('app', App as any);
69
+ }
@@ -22,4 +22,6 @@ export async function generate() {
22
22
  })
23
23
  }
24
24
 
25
- hydrate('app', App as any);
25
+ export function onload() {
26
+ hydrate('app', App as any);
27
+ }
@@ -90,4 +90,6 @@ export async function generate(context: Context) {
90
90
  })
91
91
  }
92
92
 
93
- hydrate('wiki', Wiki);
93
+ export function onload() {
94
+ hydrate('wiki', Wiki);
95
+ }