Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-24 | chore: improve unanalyzable dynamic import diagnostic (#22051) | Luca Casonato | |
2024-01-23 | refactor: use parsed source cache when unfurling import map (#22001) | Luca Casonato | |
2024-01-22 | feat(lockfile): track JSR and npm dependencies in config file (#22004) | David Sherret | |
See overview in https://github.com/denoland/deno_lockfile/pull/13 | |||
2024-01-01 | chore: update copyright to 2024 (#21753) | David Sherret | |
2023-12-12 | refactor: nicer warning display (#21547) | Bartek Iwańczuk | |
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-29 | fix: use correct import map in tar & upload (#21380) | Luca Casonato | |
2023-11-23 | feat(unstable): tar up directory with deno.json (#21228) | Bartek Iwańczuk | |
Co-authored-by: David Sherret <dsherret@gmail.com> Co-authored-by: Luca Casonato <lucacasonato@yahoo.com> Co-authored-by: Luca Casonato <hello@lcas.dev> |