summaryrefslogtreecommitdiff
path: root/cli
AgeCommit message (Collapse)Author
2020-09-11feat(unstable): Support data: urls (#5157)Valentin Anger
2020-09-11feat(unstable): deno run --watch (#7382)Bartek Iwańczuk
Co-authored-by: Sebastian Seedorf <mail@sebse.de>
2020-09-11feat(unstable): enable importsNotUsedAsValues by default (#7413)Luca Casonato
2020-09-11refactor(core): JsRuntime initialization (#7415)Bartek Iwańczuk
Removes: - "deno_core::StartupData" - "deno_core::Script" - "deno_core::OwnedScript" Changes to "JsRuntime": - remove "new_with_loader()" - remove "with_heap_limits()" - rename "IsolateOptions" to "RuntimeOptions" and make public - "JsRuntime::new()" takes "RuntimeOptions" as a single param
2020-09-10Use gotham-like state for ops (#7385)Ryan Dahl
Provides a concrete state type that can be dynamically added. This is necessary for op crates. * renames BasicState to OpState * async ops take `Rc<RefCell<OpState>>` * sync ops take `&mut OpState` * removes `OpRegistry`, `OpRouter` traits * `get_error_class_fn` moved to OpState * ResourceTable moved to OpState
2020-09-10feat(console): support CSS styling with "%c" (#7357)Nayeem Rahman
2020-09-10feat(unstable): Add Deno.systemMemoryInfo() (#7350)Akshat Agarwal
Co-authored-by: marcopacini <pacinim88@gmail.com> Co-authored-by: Casper Beyer <caspervonb@pm.me>
2020-09-09fix: panic on process.kill() after run (#7405)Bartek Iwańczuk
This commit fixes panic caused by "unimplemented!()" calls for some variants of "nix::errno::Errno". Catch-all variant now returns "Error" class name instead of panicking. Co-authored-by: Bert Belder <bertbelder@gmail.com>
2020-09-09fix(cli): suppress 'WSANOTINITIALIZED' error on Deno exit (#7408)Bert Belder
Unblocks: #6901
2020-09-09feat(fmt, lint): show number of checked files (#7312)Yusuke Tanaka
2020-09-09upgrade: swc, deno_doc, deno_lint, dprint (#7402)Bartek Iwańczuk
- deno_doc - 0.1.6 - deno_lint - 0.1.29 - dprint-plugin-typescript 0.31.1 - swc_ecmascript 0.7.3
2020-09-09fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383)Nayeem Rahman
2020-09-09fix(tsc): config resolution using relative paths (#7392)Bartek Iwańczuk
2020-09-08feat(console): print proxy details (#7139)uki00a
2020-09-08feat(unstable): enable isolatedModules by default (#7327)Luca Casonato
2020-09-08upgrade: deno_doc to 0.1.5 (#7391)Bartek Iwańczuk
2020-09-08fix(cli): colors mismatch (#7367)EathonYe
2020-09-08upgrade: dprint-plugin-typescript 0.31.0 (#7381)David Sherret
2020-09-08fix: Empty Response body returns 0-byte array (#7387)Casper Beyer
2020-09-07feat(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-06refactor(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-06refactor(core): merge CoreIsolate and EsIsolate (#7370)Bartek Iwańczuk
2020-09-06Move JSON ops to deno_core (#7336)Bert Belder
2020-09-05feat: Implement WebSocket API (#7051)crowlKats
2020-09-05feat(install): bundle before installation (#5276)Yoshiya Hinosawa
2020-09-04v1.3.3Bartek Iwańczuk
2020-09-04run cargo update (#7348)Ryan Dahl
2020-09-04fix: don't expose globalThis.__bootstrap (#7344)Kitson Kelly
2020-09-04docs: fix anchor link (#7346)迷渡
2020-09-04fix: Handle bad redirects more gracefully (#7342)Ryan Dahl
2020-09-04fix: regex for TS refereces and deno-types (#7333)Bartek Iwańczuk
2020-09-03support env_logger / RUST_LOG (#7142)tokiedokie
2020-09-03refactor: use dependency analyzer from SWC (#7334)Bartek Iwańczuk
2020-09-03upgrade: swc, deno_doc, deno_lint, dprint (#7332)Bartek Iwańczuk
2020-09-02Remove unnecessary stdout pipes in tests (#7322)Ryan Dahl
2020-09-02fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319)YellowBird
2020-09-02chore: multi line deno_lint diagnostics (#7303)Luca Casonato
2020-09-02fix: 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-02deno_web 0.6.0 (#7317)Ryan Dahl
2020-09-01simplify deno_web init (#7313)Ryan Dahl
2020-09-01fix(URLSearchParams): fix handling of + character (#7314)Yoshiya Hinosawa
2020-09-01fix: use millisecond precision for Deno.futime and Deno.utime (#7299)Casper Beyer
2020-08-31test(std): ensure mod.ts modules have a test coverage (#7264)Casper Beyer
2020-08-31replace utime crate with filetime (#7268)Casper Beyer
2020-08-31fix(doc): fix some typos in cli docs (#7292)Michael Kurze
2020-08-31set maximum size of thread pool to 31 (#7290)Ryan Dahl
2020-08-31feat(unstable): add Deno.futime and Deno.futimeSync (#7266)Casper Beyer
2020-08-31refactor: 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-31fix no-inner-declaration lint rule (#7287)Yusuke Tanaka
2020-08-31update actions to run on ubuntu-18.04 (#7160)Trivikram Kamat