Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-13 | feat(node): stabilize detecting if CJS via `"type": "commonjs"` in a ↵ | David Sherret | |
package.json (#26439) This will respect `"type": "commonjs"` in a package.json to determine if `.js`/`.jsx`/`.ts`/.tsx` files are CJS or ESM. If the file is found to be ESM it will be loaded as ESM though. | |||
2024-10-11 | fix(lsp): relative completions for bare import-mapped specifiers (#26137) | Nayeem Rahman | |
2024-09-28 | refactor: use deno_path_util (#25918) | David Sherret | |
2024-09-18 | fix: do not panic running invalid file specifier (#25530) | Yazan AbdAl-Rahman | |
Co-authored-by: Bedis Nbiba <bedisnbiba@gmail.com> | |||
2024-08-24 | refactor(lsp): changes for lsp_types 0.97.0 (#25169) | Nayeem Rahman | |
2024-08-20 | fix(lsp): include scoped import map keys in completions (#25047) | Nayeem Rahman | |
2024-08-12 | fix(lsp): directly use file referrer when loading document (#24997) | Nayeem Rahman | |
2024-08-06 | feat(lsp): node specifier completions (#24904) | Nayeem Rahman | |
2024-07-30 | feat(lsp): registry completions for import-mapped specifiers (#24792) | Nayeem Rahman | |
2024-07-18 | fix(lsp): support npm workspaces and fix some resolution issues (#24627) | David Sherret | |
Makes the lsp use the same code as the rest of the cli. | |||
2024-06-05 | fix: better handling of npm resolution occurring on workers (#24094) | David Sherret | |
Closes https://github.com/denoland/deno/issues/24063 | |||
2024-06-03 | fix(lsp): complete exports for import mapped jsr specifiers (#24054) | Nayeem Rahman | |
2024-05-23 | refactor(lsp): determine file referrer for each document (#23867) | Nayeem Rahman | |
2024-05-09 | refactor(lsp): unify caching into LspCache (#23746) | Nayeem Rahman | |
2024-04-27 | chore(lsp): remove ConfigSnapshot (#23579) | Nayeem Rahman | |
2024-04-17 | perf: v8 code cache (#23081) | Igor Zinkovsky | |
This PR enables V8 code cache for ES modules and for `require` scripts through `op_eval_context`. Code cache artifacts are transparently stored and fetched using sqlite db and are passed to V8. `--no-code-cache` can be used to disable. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2024-04-02 | feat(lsp): respect nested deno.json for fmt and lint config (#23159) | Nayeem Rahman | |
2024-03-01 | feat(unstable/pm): support version contraints in 'deno add' (#22646) | Nayeem Rahman | |
2024-02-29 | feat(lsp): jsr specifier completions (#22612) | Nayeem Rahman | |
2024-02-10 | fix(lsp): complete npm specifier versions correctly (#22332) | Nayeem Rahman | |
2024-01-01 | chore: update copyright to 2024 (#21753) | David Sherret | |
2023-11-24 | fix(lsp): handle byonm specifiers in jupyter notebooks (#21332) | David Sherret | |
Part of https://github.com/denoland/deno/issues/21308 | |||
2023-10-24 | perf(lsp): cleanup workspace settings scopes (#20937) | Nayeem Rahman | |
2023-10-16 | fix(lsp): show diagnostics for untitled files (#20916) | Nayeem Rahman | |
2023-09-29 | feat(lsp): jupyter notebook analysis (#20719) | Nayeem Rahman | |
2023-09-19 | fix(lsp): refresh npm completions on each character (#20565) | Nayeem Rahman | |
2023-09-17 | fix(lsp): include JSON modules in local import completions (#20536) | Nayeem Rahman | |
2023-09-05 | feat(lsp): provide the deno.cache command server-side (#20111) | sigmaSd | |
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com> | |||
2023-08-29 | feat(lsp): npm specifier completions (#20121) | Nayeem Rahman | |
2023-08-08 | refactor: use deno_cache_dir crate (#20092) | David Sherret | |
Uses https://github.com/denoland/deno_cache/pull/26 | |||
2023-08-02 | feat(unstable): optional `deno_modules` directory (#19977) | David Sherret | |
Closes #15633 | |||
2023-07-08 | refactor: abstract away file system to be buried inside HttpCache (#19760) | David Sherret | |
This improves the HttpCache to make it being stored on the file system an implementation detail. | |||
2023-06-10 | chore(tests): test_util - Add `PathRef` (#19450) | David Sherret | |
This adds a new `PathRef` struct to test_util for making it easier to work with paths in test code. I'm going to expand on this more in the future. | |||
2023-05-11 | feat(lsp): ability to configure document pre-load limit (#19097) | David Sherret | |
Adds a `deno.preloadLimit` option (ex. `"deno.preloadLimit": 2000`) which specifies how many file entries to traverse on the file system when the lsp loads or its configuration changes. Closes #18955 | |||
2023-04-13 | refactor(cli,ext,ops): cleanup `regex` with `lazy-regex` (#17296) | Yiyu Lin | |
- bump deps: the newest `lazy-regex` need newer `oncecell` and `regex` - reduce `unwrap` - remove dep `lazy_static` - make more regex cached --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-04-01 | fix(repl): disable language server document preloading in the repl (#18543) | David Sherret | |
This was an oversight because the repl uses the language server under the hood. Also, never preloads from a root directory. Part of #18538 | |||
2023-03-29 | refactor(lsp): remove boolean parameters on `documents.documents(...)` (#18493) | David Sherret | |
I think this makes things clearer at the call sites. | |||
2023-03-21 | feat: TypeScript 5.0.2 (except decorators) (#18294) | David Sherret | |
This upgrades TypeScript to 5.0.2, but does not have ES decorator support because swc does not support that yet. | |||
2023-03-15 | fix(lsp): avoid calling client while holding lock (#18197) | David Sherret | |
2023-03-13 | refactor(core): pass cwd explicitly to resolve_path (#18092) | Bartek Iwańczuk | |
Towards landing #15454 | |||
2023-02-25 | fix: regression remapping remote specifier to local file (#17935) | David Sherret | |
Tests added to deno_graph, which were previously not there. Closes #17932 | |||
2023-01-27 | chore: upgrade to Rust 1.67 (#17548) | David Sherret | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-01-26 | refactor(lsp): fewer clones (#17551) | Geert-Jan Zwiers | |
2023-01-02 | chore: update copyright year to 2023 (#17247) | David Sherret | |
Yearly tradition of creating extra noise in git. | |||
2022-12-20 | fix(lsp/format): language formatter used should be based on language id (#17148) | David Sherret | |
Closes #11897 | |||
2022-12-17 | chore: update to Rust 1.66.0 (#17078) | linbingquan | |
2022-11-28 | refactor: create util folder, move nap_sym to napi/sym, move http_cache to ↵ | David Sherret | |
cache folder (#16857) | |||
2022-11-25 | refactor(lsp): consolidate relative_specifier (#16780) | David Sherret | |
Closes #14840 | |||
2022-11-18 | chore: use Rust 1.65.0 (#16688) | Aaron O'Mullan | |
2022-08-02 | fix(lsp): use correct commit chars for completions (#15366) | Kitson Kelly | |
Fixes: #15252 |