Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-03-26 | feat(add): always produce multiline config file (#23077) | Bartek Iwańczuk | |
This commit changes `deno add` to always produce a multiline config file. In v1.41.3: ``` $ mkdir foo $ cd foo $ deno add @std/assert Created deno.json configuration file. Add @std/assert - jsr:@std/assert@^0.220.0 $ cat deno.json { "imports": { "@std/assert": "jsr:@std/assert@^0.220.0" } } ``` Now: ``` $ mkdir foo $ cd foo $ deno add @std/assert Created deno.json configuration file. Add @std/assert - jsr:@std/assert@^0.220.0 $ cat deno.json { "imports": { "@std/assert": "jsr:@std/assert@^0.220.0" } } ``` | |||
2024-03-11 | chore: enable clippy unused_async rule (#22834) | David Sherret | |
2024-03-06 | feat(unstable/pm): support npm packages in 'deno add' (#22715) | Nayeem Rahman | |
2024-03-01 | feat(unstable/pm): support version contraints in 'deno add' (#22646) | Nayeem Rahman | |
2024-02-29 | feat(unstable): `deno add` subcommand (#22520) | Bartek Iwańczuk | |
This commit adds "deno add" subcommand that has a basic support for adding "jsr:" packages to "deno.json" file. This currently doesn't support "npm:" specifiers and specifying version constraints. |