skeletonlabs / create-skeleton-app

CLI installer for Skeleton apps and monorepo for the sites that form the templates
16 stars 5 forks source link

No .svelte-kit folder and no .svelte-kit/tsconfig.json file within it for configuring paths #3

Closed codelabspro closed 1 year ago

codelabspro commented 1 year ago

Current Behavior

Used the CLI to generate the Skeleton Welcome scaffold

Tried to find the .svelte-kit folder and the .svelte-kit/tsconfig.json file in order to configure $lib path.

Expected

.svelte-kit folder should be available

Actual

No .svelte-kit folder was found

Steps To Reproduce

Used the CLI to generate the Skeleton Welcome scaffold

Tried to find the .svelte-kit folder and the .svelte-kit/tsconfig.json file in order to configure $lib path.

Expected

.svelte-kit folder should be available

Actual

No .svelte-kit folder was found

Anything else?

Unable to configure $lib path witout .svelte-kit/tsconfig.json

endigo9740 commented 1 year ago

@codelabspro I've transferred your issue to the correct repo for this. I'm not sure of a solution to your issue, so I'll let @niktek chime in here. He's the one that built the CLI and can provide better support here.

niktek commented 1 year ago

.svelte-kit is generated on 'npm run dev' this will also generate the $lib alias for you if there is a src/lib/ folder - you shouldn't have to do any of this manually

codelabspro commented 1 year ago

Thanks @niktek Re-running 'nom run dev' solved it for me.