Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-14 | fix(vendor): do not panic vendoring with jsxImportSource and no jsx files ↵ | David Sherret | |
(#19837) Closes #19833 | |||
2023-07-05 | fix(vendor): support import mapped jsxImportSource (#19724) | David Sherret | |
Closes #16108 | |||
2023-05-19 | feat(vendor): support for npm specifiers (#19186) | David Sherret | |
We never properly added support for this. This fixes vendoring when it has npm or node specifiers. Vendoring occurs by adding a `"nodeModulesDir": true` property to deno.json then it uses a local node_modules directory. This can be opted out by setting `"nodeModulesDir": false` or running with `--node-modules-dir=false`. Closes #18090 Closes #17210 Closes #17619 Closes #16778 | |||
2023-05-09 | fix(vendor): better handling of redirects (#19063) | David Sherret | |
Closes #17582 Closes #19057 | |||
2023-02-22 | refactor: use deno_graph for npm specifiers (#17858) | David Sherret | |
This changes npm specifiers to be handled by deno_graph and resolved to an npm package name and version when the specifier is encountered. It also slightly changes how npm specifier resolution occurs—previously it would collect all the npm specifiers and resolve them all at once, but now it resolves them on the fly as they are encountered in the module graph. https://github.com/denoland/deno_graph/pull/232 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-02-15 | refactor: make resolver required (#17783) | David Sherret | |
Makes the resolver required and prints a warning when vendoring and a dynamic import can't be resolved. Closes #16522 | |||
2023-02-09 | refactor: deno_graph 0.43 upgrade (#17692) | David Sherret | |
2023-01-27 | chore: upgrade to Rust 1.67 (#17548) | David Sherret | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-01-02 | chore: update copyright year to 2023 (#17247) | David Sherret | |
Yearly tradition of creating extra noise in git. | |||
2022-09-27 | fix(cli/vendor): handle assert type json during vendoring (#16059) | Sylvain Cau | |
2022-08-22 | perf: cache swc dependency analysis and don't hold onto `ParsedSource`s in ↵ | David Sherret | |
memory (#15502) | |||
2022-08-04 | fix(vendor): existing import map with bare specifier in remote (#15390) | David Sherret | |
2022-06-14 | feat(vendor): support using an existing import map (#14836) | David Sherret | |
2022-05-23 | fix(vendor): handle relative imports when mapped local folder name differs ↵ | David Sherret | |
from remote's (#14465) | |||
2022-05-20 | refactor: upgrade to deno_ast 0.15 (#14680) | David Sherret | |
2022-05-02 | fix(vendor): do not panic on relative specifier with scheme-like folder name ↵ | David Sherret | |
(#14453) | |||
2022-02-18 | fix(vendor): do not add absolute specifiers to scopes (#13710) | David Sherret | |
2022-02-16 | feat: deno vendor (#13670) | David Sherret | |