We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correction
in the new Svelte 5 Docs the yarn cmd is yarn install ... instead of the correct yarn add ...
yarn install ...
yarn add ...
if you try to run it you get a warning by yarn and it won't install
example:
yarn install v1.22.15 error `install` has been replaced with `add` to add new dependencies. Run "yarn add @tanstack/table-core" instead.
the issue seems to be related with the usage of package-manager-detector/commands in lib/stores/package-manager.ts
package-manager-detector/commands
The text was updated successfully, but these errors were encountered:
@AdrianGonz97 Is there a reason PMD uses install instead of add?
edit: This isn't PMDs fault it's mine! Should be using resolve add instead. Sorry!
add
Sorry, something went wrong.
install
<PMInstall/>
No branches or pull requests
Change Type
Correction
Proposed Changes
in the new Svelte 5 Docs the yarn cmd is
yarn install ...
instead of the correctyarn add ...
if you try to run it you get a warning by yarn and it won't install
example:
the issue seems to be related with the usage of
package-manager-detector/commands
in lib/stores/package-manager.tsThe text was updated successfully, but these errors were encountered: