ottomated
ottomated
Looked into oxc as well. They also have a [`parse_expression`](https://docs.rs/oxc_parser/0.30.5/oxc_parser/struct.Parser.html#method.parse_expression) method, and another advantage is they expose a way to directly transform a typescript AST to a javascript AST -...
@benmccann Yep I've implemented an oxc parser in #13444 and I think it's the right move. Currently I've had to patch in a few methods that svelte needs but through...
This is a regression in sveltekit, caused by https://github.com/sveltejs/kit/pull/14298
I've raised an issue https://github.com/sveltejs/kit/issues/14561. In the meantime, you can downgrade to sveltekit 2.37.0
I've reached for maybe a total of 3 times ever, so I like deprecating it in favor of self-referential imports.
I think I'm waiting for a few issues to be solved: https://github.com/sveltejs/kit/pull/14303 https://github.com/sveltejs/kit/pull/14304 https://github.com/sveltejs/kit/issues/14299 https://github.com/sveltejs/kit/issues/14035 https://github.com/sveltejs/kit/issues/14030 or generally for the experimental flag to be lifted.
Todo - zod 4, RouterOutput
Todo - switch from pages -> workers
This is what I came up with: ```json5 "workbench.editor.customLabels.patterns": { // Root "**/routes/+layout.svelte": "/ [layout]", "**/routes/+page.server.ts": "/ [server]", "**/routes/+layout.server.ts": "/ [layout.server]", "**/routes/+server.ts": "/ [endpoint]", "**/routes/+page.svelte": "/ [page]", // 1st level...
> @ottomated your setup can't differentiate between `+page.svelte` and `+page.js` Good catch, here's a more comprehensive version: ```json5 "workbench.editor.customLabels.patterns": { // Root "**/routes/+layout.svelte": "/ [layout]", "**/routes/+layout.server.[jt]s": "/ [layout.server.load]", "**/routes/+layout.[jt]s": "/...