Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-01 | chore: update copyright to 2024 (#21753) | David Sherret | |
2023-12-01 | feat(compile): support discovering modules for more dynamic arguments (#21381) | David Sherret | |
This PR causes Deno to include more files in the graph based on how a template literal looks that's provided to a dynamic import: ```ts const file = await import(`./dir/${expr}`); ``` In this case, it will search the `dir` directory and descendant directories for any .js/jsx/etc modules and include them in the graph. To opt out of this behaviour, move the template literal to a separate line: ```ts const specifier = `./dir/${expr}` const file = await import(specifier); ``` | |||
2023-11-17 | chore: combine `TestCommandBuilder` with `DenoCmd` (#21248) | David Sherret | |
2023-09-18 | feat(unstable): package manager (#20517) | David Sherret | |
Adds an experimental unstable built-in package manager to Deno, but it is currently not usable because the registry infrastructure hasn't been setup and it points to a non-existent url by default. The default registry url can be configured via the `DENO_REGISTRY_URL` environment variable. | |||
2023-07-25 | fix: deno info should respect import map (#19781) | Vedant Pandey | |
Closes #19742 | |||
2023-07-10 | chore(tests): update info_with_compiled_source to use TestContextBuilder ↵ | David Sherret | |
(#19783) | |||
2023-03-13 | fix(info/doc): add missing `--no-lock` and `--lock` flags (#18166) | David Sherret | |
Closes #18159 | |||
2023-02-23 | feat(npm): support bare specifiers from package.json in more subcommands and ↵ | David Sherret | |
language server (#17891) | |||
2023-01-13 | tests: move integration tests to a single module (#17380) | Bartek Iwańczuk | |
Effectively reverts changes done in https://github.com/denoland/deno/pull/16816 | |||
2022-11-26 | tests: move integration tests to separate modules (#16816) | Bartek Iwańczuk | |
2022-11-18 | chore: use Rust 1.65.0 (#16688) | Aaron O'Mullan | |
2022-09-19 | refactor: move out test files from root testdata directory into sub ↵ | David Sherret | |
directories (#15949) | |||
2022-07-19 | feat: emit files on demand and fix racy emit (#15220) | David Sherret | |
2022-06-13 | fix(cli): add config flag to `deno info` (#14706) | Mark Ladyshau | |
2022-04-01 | chore(tests): use custom temp dir creation for the tests (#14153) | David Sherret | |
2022-03-22 | chore: replace `.expect("...")` calls with `.unwrap()` in test code (#14081) | David Sherret | |
2022-01-07 | chore: update copyright to 2022 (#13306) | Ryan Dahl | |
Co-authored-by: Erfan Safari <erfanshield@outlook.com> | |||
2021-08-11 | chore: move test files to testdata directory (#11601) | David Sherret | |
2021-07-22 | fix(cli): info now displays type reference deps (#11478) | Kitson Kelly | |
Fixes #11476 | |||
2021-07-05 | chore: add tests for previous assertion error when file contained only ↵ | David Sherret | |
triple slash references (#11285) | |||
2021-06-27 | chore: split up integration_tests.rs into separate files (#11131) | David Sherret | |