@reckona/mreact-router 0.0.107 → 0.0.108

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": "@reckona/mreact-router",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "description": "File-system app router, SSR, actions, and deployment adapters for mreact.",
5
5
  "keywords": [
6
6
  "jsx",
@@ -105,20 +105,20 @@
105
105
  },
106
106
  "dependencies": {
107
107
  "typescript": "^6.0.3",
108
- "@reckona/mreact-compat": "0.0.107",
109
- "@reckona/mreact": "0.0.107",
110
- "@reckona/mreact-devtools": "0.0.107",
111
- "@reckona/mreact-compiler": "0.0.107",
112
- "@reckona/mreact-query": "0.0.107",
113
- "@reckona/mreact-reactive-core": "0.0.107",
114
- "@reckona/mreact-reactive-dom": "0.0.107",
115
- "@reckona/mreact-server": "0.0.107",
116
- "@reckona/mreact-shared": "0.0.107"
108
+ "@reckona/mreact": "0.0.108",
109
+ "@reckona/mreact-compiler": "0.0.108",
110
+ "@reckona/mreact-compat": "0.0.108",
111
+ "@reckona/mreact-query": "0.0.108",
112
+ "@reckona/mreact-devtools": "0.0.108",
113
+ "@reckona/mreact-reactive-core": "0.0.108",
114
+ "@reckona/mreact-reactive-dom": "0.0.108",
115
+ "@reckona/mreact-server": "0.0.108",
116
+ "@reckona/mreact-shared": "0.0.108"
117
117
  },
118
118
  "peerDependencies": {
119
119
  "vite": ">=8 <9"
120
120
  },
121
121
  "optionalDependencies": {
122
- "@reckona/mreact-router-native": "0.0.107"
122
+ "@reckona/mreact-router-native": "0.0.108"
123
123
  }
124
124
  }
package/src/build.ts CHANGED
@@ -2623,6 +2623,7 @@ export const App = routeComponent === undefined
2623
2623
  return routeComponent(props);
2624
2624
  };
2625
2625
  export default App;
2626
+ export const CloudflareRouteComponent = App;
2626
2627
  export const slots = componentSlots === undefined ? undefined : { ...componentSlots };`;
2627
2628
  }
2628
2629