diff options
author | Roj <ez@roj.im> | 2022-12-08 02:13:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-08 00:13:45 +0100 |
commit | 44b2b950fd20e59fca1e6dddf522d456d2fd622f (patch) | |
tree | 3a2485812c6b302476a2eeb571164b2a44aadb98 /cli/tests/testdata/run/config_file_lock_boolean/main.ts | |
parent | dac30af1510b12b5d81d2cd437560f8be6c2e01c (diff) |
feat(cli): support configuring the lock file in the config file (#16781)
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>
Diffstat (limited to 'cli/tests/testdata/run/config_file_lock_boolean/main.ts')
-rw-r--r-- | cli/tests/testdata/run/config_file_lock_boolean/main.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/testdata/run/config_file_lock_boolean/main.ts b/cli/tests/testdata/run/config_file_lock_boolean/main.ts new file mode 100644 index 000000000..baa52775d --- /dev/null +++ b/cli/tests/testdata/run/config_file_lock_boolean/main.ts @@ -0,0 +1 @@ +import "http://localhost:4545/subdir/mod2.ts"; |