CodingGarden / coding.garden

The Coding Garden website.
https://coding.garden
MIT License
10 stars 7 forks source link

Install Clean #20

Closed MrAmericanMike closed 9 months ago

MrAmericanMike commented 1 year ago

Given that the project has some packages versioned as "next" example:

"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",

When following the readme it tells us to use npm install but that causes issues as it installs newer versions (with breaking changes)

The command to use should be npm install-clean this forces npm to use the package-lock.json

https://docs.npmjs.com/cli/v9/commands/npm-ci

Also, and to not open a separate issue. SvelteKit should be updated to use an specific version now that it's out of beta (IMO)