Replies: 1 comment 2 replies
-
Hey, the place to start normally in a lot of open source of repositories is to check on the root directory the A few questions: did you install pnpm? did you installed the packages?
Whenever an adapter changes, you need to publish a change set like it says on the CONTRIBUTING.MD file:
And all the CI actions of precommit hooks as you call it are referenced here:
Which it will run all the CI commands before commiting on the official repository. Like the linter, the formatter, and the test. And if you want to set up the kit.svelte.dev and the docs file you go to the directory and run:
After that you are set to go. There some few things that one need to figure it out like the kit.svelte.dev doc thing, but we can always improve the documentation. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I cloned the svelte-kit repository and I can't for the life of me figure out where it all begins. I've looked through the package.json for each package and can't find a build script or a main entry file. The kit package has svelte-kit.js, but that just points to the cli.js file.
I guessed the build was run through some action on GitHub, checked that, but it's just a reference to changeset publish; which is another blackhole of its own.
I also tried to scrutinise the vite config, but came up empty. Tried running the test, they're too much and don't really point to any where concrete.
I need help, can someone help me figure this out.
Beta Was this translation helpful? Give feedback.
All reactions