Age | Commit message (Collapse) | Author |
|
|
|
|
|
Yearly tradition of creating extra noise in git.
|
|
Closes #17116
|
|
This allows the user to completely opt out from the lock file or rename
it without having to use `--no-lock` and/or `--lock` in all commands.
## Don’t Use Lock File
```json
{
"lock": false
}
```
## Use Lock File With a Different Name
```json
{
"lock": "deno2.lock"
}
```
The CLI args `--no-lock` and `--lock` will always override what is in
the config file.
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
|
|
This is just a straight refactor and doesn't make any improvements to
the code that could now be made.
Closes #16493
|
|
cache folder (#16857)
|
|
This should be in the `args` folder as it's similar to `config_file`.
|