Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-06 | refactor(core): merge CoreIsolate and EsIsolate (#7370) | Bartek Iwańczuk | |
2020-09-06 | Move JSON ops to deno_core (#7336) | Bert Belder | |
2020-09-05 | feat(install): bundle before installation (#5276) | Yoshiya Hinosawa | |
2020-09-03 | support env_logger / RUST_LOG (#7142) | tokiedokie | |
2020-08-31 | refactor: Compiler config in Rust (#7228) | Bartek Iwańczuk | |
* port tsc_config.rs * cleanup options * bring back allowNonTsExtension * try * fix test * fix test2 * move config for bundling * remove Transpile compile request * remove dead code * remove more dead code * remove checkJs regex * fix * handle config str for runtime APIs * lint * runtimeCompile config in Rust * runtimeCompile and runtimeTranspile config in Rust * fix * remove lint supression * upgrade: jsonc-parser 0.13.0 * remove unneeded to_string() * upgrade: jsonc-parser 0.14.0 * remove AsRef<str> | |||
2020-08-26 | refactor: remove OpError, use ErrBox everywhere (#7187) | Bert Belder | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-08-23 | fix(doc): stack overflow for .d.ts files (#7167) | Bartek Iwańczuk | |
2020-08-19 | refactor: move cli/doc/ to separate crate (#7103) | Bartek Iwańczuk | |
2020-08-19 | Make Rc/Arc wrapper around State/GlobalState visible (#7104) | Bert Belder | |
2020-08-13 | feat: Add "--json" flag to deno lint (#6940) | souldzin | |
Co-authored-by: JackSkylark <jdslaughter44@gmail.com> | |||
2020-08-12 | feat: add "--ignore" to deno lint (#6934) | Divy Srivastava | |
2020-08-11 | doc: Remove detailed / summary distinction (#6818) | Valentin Anger | |
2020-08-10 | feat(doc): handle imports (#6987) | Bartek Iwańczuk | |
This commit adds additional objects to JSON output of "deno doc" command to facilitate linking between types in different modules. | |||
2020-08-08 | fix(cli): show error on unrecognized V8 flag, exit on --help (#6980) | Bert Belder | |
2020-08-07 | Op crate for Web APIs (#6906) | Bartek Iwańczuk | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-08-04 | refactor: remove repeated code in main.rs (#6954) | Bartek Iwańczuk | |
2020-08-03 | fix(cli): add support for non-UTF8 source files (#6789) | Maayan Hanin | |
Fixes: #5542 | |||
2020-07-31 | upgrade: deno_lint, dprint, swc (#6928) | Bartek Iwańczuk | |
This commit upgrades: deno_lint 0.1.20 dprint-plugin-typescript 0.25.0 swc_ecmascript 0.1.0 SWC is no longer reexported from dprint nor deno_lint. | |||
2020-07-30 | feat(unstable): add "--ignore" flag to deno fmt (#6890) | Divy Srivastava | |
2020-07-20 | Remove deno_typescript (#6813) | Ryan Dahl | |
2020-07-16 | fix: ModuleSpecifier removes relative path parts (#6762) | Bartek Iwańczuk | |
2020-07-12 | feat(doc): Improve terminal printer (#6594) | Valentin Anger | |
- Add more support for generics - Add the --private flag - displays documentation for not exported and private nodes - Display more attributes like abstract, static and readonly - Display type aliases - Refactor module to use the Display trait - Use a bit more color | |||
2020-07-11 | chore: upgrade deno_lint, remove direct dprint dep (#6679) | Bartek Iwańczuk | |
This PR removes direct dependency on dprint-plugin-typescript and swc_ecma_visit. Both of these dependencies have been pushed out to deno_lint crate. This should make it a bit easier to do the upgrades and prevent having conflicting crate requirements. | |||
2020-07-08 | feat(cli): json option for "deno info" (#6372) | Emmanuel | |
2020-07-06 | feat: deno upgrade --output (#6352) | crowlKats | |
2020-07-05 | feat(cli): Added support for the --cert flag with 'deno upgrade' (#6609) | Jacob Gee-Clarke | |
2020-07-02 | refactor: lock file (#6569) | Bartek Iwańczuk | |
- refactor lock file creation - provide deterministic output in lock file (alphabetically sorted) - dynamic imports are checked against lock file | |||
2020-06-30 | refactor: Improvements to TsCompiler and its tests (#6576) | Kitson Kelly | |
2020-06-29 | refactor: util functions take slices instead of heap values (#6547) | Valentin Anger | |
2020-06-26 | Re-land "fix(cli): ipv6 parsing for --allow-net params" (#6472) | Bartek Iwańczuk | |
With some minor adjustments | |||
2020-06-25 | Revert "fix(cli): ipv6 parsing for --allow-net params (#6453)" (#6458) | Bartek Iwańczuk | |
2020-06-24 | fix(cli): ipv6 parsing for --allow-net params (#6453) | Colin Harrington | |
Co-authored-by: Liming Jin <jinliming2@gmail.com> | |||
2020-06-24 | Add ability to output compiler performance information (#6434) | Kitson Kelly | |
2020-06-19 | refactor(compiler): split code paths for compile and bundle (#6304) | Bartek Iwańczuk | |
* refactor "compile" and "runtimeCompile" in "compiler.ts" and factor out separate methods for "compile" and "bundle" operations * remove noisy debug output from "compiler.ts" * provide "Serialize" implementations for enums in "msg.rs" * rename "analyze_dependencies_and_references" to "pre_process_file" and move it to "tsc.rs" * refactor ModuleGraph to use more concrete types and properly annotate locations where errors occur * remove dead code from "file_fetcher.rs" - "SourceFile.types_url" is no longer needed, as type reference parsing is done in "ModuleGraph" * remove unneeded field "source_path" from ".meta" files stored for compiled source file (towards #6080) | |||
2020-06-18 | chore(test): move testing utilities to test_util crate (#6360) | Bartek Iwańczuk | |
2020-06-12 | feat(lint): add --rules flag (#6264) | Bartek Iwańczuk | |
2020-06-12 | update: deno_lint to v0.1.10 (#6248) | Bartek Iwańczuk | |
* update: deno lint to v0.1.10 * Parallelize "deno lint" subcommand | |||
2020-06-11 | feat: allow reading the entry file from stdin (#6130) | Jaap Aarts | |
2020-06-10 | feat(lint): use default globs, upgrade to v0.1.9 (#6222) | Bartek Iwańczuk | |
This commit: * added default file globs so "deno lint" can be run without arguments (just like "deno fmt") * added test for globs in "deno lint" * upgrade "deno_lint" crate to v0.1.9 | |||
2020-06-09 | upgrade: deno_lint v0.1.8 (#6208) | Bartek Iwańczuk | |
2020-06-09 | feat(doc): display all overloads in cli details view (#6186) | uki00a | |
2020-06-08 | feat: "deno lint" subcommand (#6125) | Bartek Iwańczuk | |
2020-06-06 | Add diff for "deno fmt --check" (#5599) | Filippo Rossi | |
2020-06-06 | feat: deno eval -p (#5682) | Ryan Dahl | |
2020-06-04 | Revert "feat: format deno bundle output (#5139)" (#6085) | Ryan Dahl | |
This reverts commit 93cf3bd5341d5985201ea0905280082d5a3310f9. | |||
2020-06-01 | Move create_main_worker to MainWorker::create (#6034) | Ryan Dahl | |
2020-06-01 | fix(bundle): better size output (#5997) | Ali Hasani | |
2020-05-29 | refactor: Split isolate and state using safe get_slot() (#5929) | Ryan Dahl | |
2020-05-29 | refactor: TS compiler and module graph (#5817) | Bartek Iwańczuk | |
This PR addresses many problems with module graph loading introduced in #5029, as well as many long standing issues. "ModuleGraphLoader" has been wired to "ModuleLoader" implemented on "State" - that means that dependency analysis and fetching is done before spinning up TS compiler worker. Basic dependency tracking for TS compilation has been implemented. Errors caused by import statements are now annotated with import location. Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-05-29 | fix(cli): write lock file before running any code (#5794) | Adam Odziemkowski | |