@stackframe/init-stack 2.6.23 → 2.6.25
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 +8 -0
- package/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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") ? ":
|
|
235
|
+
handlerFileExtension.includes("ts") ? ": unknown" : ""
|
|
236
236
|
}) {\n${ind}return <StackHandler fullPage app={stackServerApp} routeProps={props} />;\n}\n`
|
|
237
237
|
);
|
|
238
238
|
await writeFileIfNotExists(
|