@stackframe/init-stack 2.6.23 → 2.6.24

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stackframe/init-stack
2
2
 
3
+ ## 2.6.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Bugfixes
8
+
3
9
  ## 2.6.23
4
10
 
5
11
  ### Patch Changes
package/index.mjs CHANGED
@@ -232,7 +232,7 @@ async function main() {
232
232
  await writeFileIfNotExists(
233
233
  handlerPath,
234
234
  `import { StackHandler } from "@stackframe/stack";\nimport { stackServerApp } from "../../../stack";\n\nexport default function Handler(props${
235
- handlerFileExtension.includes("ts") ? ": any" : ""
235
+ handlerFileExtension.includes("ts") ? ": unknown" : ""
236
236
  }) {\n${ind}return <StackHandler fullPage app={stackServerApp} routeProps={props} />;\n}\n`
237
237
  );
238
238
  await writeFileIfNotExists(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackframe/init-stack",
3
- "version": "2.6.23",
3
+ "version": "2.6.24",
4
4
  "description": "The setup wizard for Stack. https://stack-auth.com",
5
5
  "main": "index.mjs",
6
6
  "bin": "./index.mjs",