Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-09 | fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383) | Nayeem Rahman | |
2020-09-09 | fix(tsc): config resolution using relative paths (#7392) | Bartek Iwańczuk | |
2020-09-08 | feat(console): print proxy details (#7139) | uki00a | |
2020-09-08 | feat(unstable): enable isolatedModules by default (#7327) | Luca Casonato | |
2020-09-08 | upgrade: deno_doc to 0.1.5 (#7391) | Bartek Iwańczuk | |
2020-09-08 | fix(cli): colors mismatch (#7367) | EathonYe | |
2020-09-08 | upgrade: dprint-plugin-typescript 0.31.0 (#7381) | David Sherret | |
2020-09-08 | fix: Empty Response body returns 0-byte array (#7387) | Casper Beyer | |
2020-09-07 | feat(info): Dependency count and sizes (#6786) | KrisChambers | |
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width | |||
2020-09-06 | refactor(core): rename CoreIsolate to JsRuntime (#7373) | Bartek Iwańczuk | |
deno_core/ - rename core_isolate.rs to runtime.rs - rename CoreIsolate to JsRuntime - rename JSError to JsError - rename JSStackFrame to JsStackFrame cli/ - update references from deno_core::CoreIsolate to deno_core::JsRuntime - rename deno_core::JSError to deno_core::JsError - rename fmt_errors::JSError to fmt_errors::JsError | |||
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: Implement WebSocket API (#7051) | crowlKats | |
2020-09-05 | feat(install): bundle before installation (#5276) | Yoshiya Hinosawa | |
2020-09-04 | v1.3.3 | Bartek Iwańczuk | |
2020-09-04 | run cargo update (#7348) | Ryan Dahl | |
2020-09-04 | fix: don't expose globalThis.__bootstrap (#7344) | Kitson Kelly | |
2020-09-04 | docs: fix anchor link (#7346) | 迷渡 | |
2020-09-04 | fix: Handle bad redirects more gracefully (#7342) | Ryan Dahl | |
2020-09-04 | fix: regex for TS refereces and deno-types (#7333) | Bartek Iwańczuk | |
2020-09-03 | support env_logger / RUST_LOG (#7142) | tokiedokie | |
2020-09-03 | refactor: use dependency analyzer from SWC (#7334) | Bartek Iwańczuk | |
2020-09-03 | upgrade: swc, deno_doc, deno_lint, dprint (#7332) | Bartek Iwańczuk | |
2020-09-02 | Remove unnecessary stdout pipes in tests (#7322) | Ryan Dahl | |
2020-09-02 | fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319) | YellowBird | |
2020-09-02 | chore: multi line deno_lint diagnostics (#7303) | Luca Casonato | |
2020-09-02 | fix: support missing features in --no-check (#7289) | Bartek Iwańczuk | |
This commit adds "EmitTranspileOptions" to "transpile()" function, that allows to configure transpilation process based on the currently loaded "tsconfig.json". | |||
2020-09-02 | deno_web 0.6.0 (#7317) | Ryan Dahl | |
2020-09-01 | simplify deno_web init (#7313) | Ryan Dahl | |
2020-09-01 | fix(URLSearchParams): fix handling of + character (#7314) | Yoshiya Hinosawa | |
2020-09-01 | fix: use millisecond precision for Deno.futime and Deno.utime (#7299) | Casper Beyer | |
2020-08-31 | test(std): ensure mod.ts modules have a test coverage (#7264) | Casper Beyer | |
2020-08-31 | replace utime crate with filetime (#7268) | Casper Beyer | |
2020-08-31 | fix(doc): fix some typos in cli docs (#7292) | Michael Kurze | |
2020-08-31 | set maximum size of thread pool to 31 (#7290) | Ryan Dahl | |
2020-08-31 | feat(unstable): add Deno.futime and Deno.futimeSync (#7266) | Casper Beyer | |
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-31 | fix no-inner-declaration lint rule (#7287) | Yusuke Tanaka | |
2020-08-31 | update actions to run on ubuntu-18.04 (#7160) | Trivikram Kamat | |
2020-08-31 | feat(lint): Add support for reading input from stdin (#7263) | Yusuke Tanaka | |
2020-08-31 | fix(cli): use upstream type definitions for WebAssembly (#7216) | Casper Beyer | |
2020-08-31 | upgrade: swc, deno_doc, deno_lint, dprint (#7276) | Bartek Iwańczuk | |
2020-08-31 | chore: remove unreachable code to pass linter (#7270) | Yusuke Tanaka | |
2020-08-31 | refactor: remove dead code in tsc (#7277) | Bartek Iwańczuk | |
2020-08-29 | v1.3.2 | Bartek Iwańczuk | |
2020-08-29 | fix(lint): use recommended rules set (#7222) | Yusuke Tanaka | |
2020-08-29 | fix(URL): Add missing part assignment (#7239) | Nayeem Rahman | |
2020-08-28 | test(cli/flags): restore disabled test cases (#7236) | Yoshiya Hinosawa | |
2020-08-28 | refactor: migrate ops to new dispatch wrapper (#7118) | Bartek Iwańczuk | |
2020-08-28 | Move benchmarks to Rust (#7134) | Valentin Anger | |
All benchmarks are done in Rust and can be invoked with `cargo bench`. Currently this has it's own "harness" that behaves like `./tools/benchmark.py` did. Because of this tests inside `cli/bench` are currently not run. This should be switched to the language provided harness once the `#[bench]` attribute has been stabilized. |