summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-09test(std/mime): make tests runnable from any directory (#7398)Casper Beyer
2020-09-08test(std/node): make tests runnable from any directory (#7397)Casper Beyer
This makes std/node tests runnable from any directory by resolving the testdata directory and files relative to the module directory resolved from import.meta.url.
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-08test(std/fs): make tests runnable from any directory (#7388)Casper Beyer
2020-09-07BREAKING(std/fs): remove writeJson and writeJsonSync (#7256)Casper Beyer
2020-09-07BREAKING(std/fs): remove readJson and readJsonSync (#7255)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-07test(std/hash): make tests runnable from any directory (#7376)Casper Beyer
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-06test(std/archive): make tests runnable from any directory (#7366)Casper Beyer
2020-09-06test(std/encoding): make tests runnable from any directory (#7368)Casper Beyer
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-05Fix hellish mistake in manual (#7363)crowlKats
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-04test(std/wasi): explicitly list modules for deterministic test runs (#7245)Casper Beyer
This explicitly lists std/wasi test modules in a pre-sorted array for deterministic test runs. As a side effect it makes it a bit more visible when a test has been added or removed aside from having to look at the submodule update.
2020-09-04chore(std/wasi): enable and fix lint errors in tests (#7324)Casper Beyer
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-03docs: use the rightwards arrow symbol uniformly (#7331)reuixiy
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-01docs(std/uuid): remove mention of v3 which is not supported (#7318)Casper Beyer
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-01Remove unused crate_modules feature (#7311)Ryan Dahl
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