The sv command is the same as the one used by runit and therefore running npx sv will not actually run the Svelte CLI and you will get a very confusing error message instead:
❯ npx sv create my-app
fail: my-app: unable to change to service directory: file does not exist
Running the CLI requires running it as, for example, npx sv@latest, this is not a huge problem but might be worth mentioning in the docs, for example in the "Creating a project" section, to avoid problems and unnecessary support requests.
The
svcommand is the same as the one used by runit and therefore runningnpx svwill not actually run the Svelte CLI and you will get a very confusing error message instead:Running the CLI requires running it as, for example,
npx sv@latest, this is not a huge problem but might be worth mentioning in the docs, for example in the "Creating a project" section, to avoid problems and unnecessary support requests.