volta
volta copied to clipboard
Volta: JS Toolchains as Code. ⚡
I feel a bit uncomfortable running `curl https://get.volta.sh | bash` to install Volta in a CI or Docker environment. Am I misguided in this discomfort? Is there any text in...
With `npm` versions 5.0.0 and above, you can pass `--json` to `npm install` and get machine-readable output from the call. This could be useful to provide better error messages when...
From discussion on Discord related to failures we're seeing when downloading / unpacking Node: [@rwjblue] basically, as far as I can see it, we have a few different possible failure...
Currently, if we can't figure out the bundled `npm` version when running `volta pin npm@bundled`, we show an error. One legitimate use-case where we wouldn't be able to determine the...
With tools like `npm` and `yarn`, the configuration parameters can be set using config files (`.npmrc`) _or_ with environment variables (`NPM_CONFIG_REGISTRY`). To support one-off calls and specific, sandboxed environments, Volta...
**NOTE: this issue predates this project's [rename to Volta](https://blog.volta.sh/2019/05/13/hello-volta/).** ### Repro Instructions Create a repo with this package.json package.json ```json { "name": "ember-cli-document-title-northm", "version": "0.0.0-development", "description": "Adding document title functionality...
**NOTE: this issue predates this project's [rename to Volta](https://blog.volta.sh/2019/05/13/hello-volta/).** We should verify the checksums of the distributions downloaded by Notion, to: * verify the downloaded distro is correct, and *...
I'm thinking maybe we shouldn't lazily read the config file, since it means we can get late errors after Volta does some work. It's probably best to just fail out...
Several of our error messages have a generic "Please ensure you have correct permissions to the Volta directory.", however in practice many of these situations are _not_ permissions-related. If there...
Backtraces would be useful for verbose diagnostics, not just for Volta maintainers. But we don't want to require Volta users to know about the `RUST_BACKTRACE` environment variable (and it could...