Skip to content

Commit 8ee9f9e

Browse files
TommertomTommertom
authored andcommitted
Create script updates
1 parent 9849baf commit 8ee9f9e

File tree

10 files changed

+7109
-7113
lines changed

10 files changed

+7109
-7113
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
55
## 0.5.86
66

77
- added prettier and applied it to the files
8+
- create apps upgraded to latest versions of kit (not Svelte 5!)
89

910
## 0.5.85
1011

demo-app/src/routes/components/Inputs/+page.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
lastName: z.string().min(2).default('')
1212
});
1313
14-
const { form, errors, message, constraints, enhance, delayed, validate } = superForm(defaults(zod(userSchema)),
14+
const { form, errors, message, constraints, enhance, delayed, validate } = superForm(
15+
defaults(zod(userSchema)),
1516
{
1617
SPA: true,
1718
validators: zod(userSchema),

demo-app/tsconfig.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@
99
"skipLibCheck": true,
1010
"sourceMap": true,
1111
"strict": true,
12-
"typeRoots": [
13-
"./node_modules/ionic-svelte"
14-
],
15-
"types": [
16-
"ionic-svelte"
17-
],
12+
"typeRoots": ["./node_modules/ionic-svelte"],
13+
"types": ["ionic-svelte"],
1814
"verbatimModuleSyntax": true
1915
}
2016
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
2117
//
2218
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
2319
// from the referenced tsconfig.json - TypeScript does not merge them in
24-
}
20+
}

0 commit comments

Comments
 (0)