Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-09 | feat(fmt, lint): show number of checked files (#7312) | Yusuke Tanaka | |
2020-09-09 | upgrade: 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-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-09 | test(std/mime): make tests runnable from any directory (#7398) | Casper Beyer | |
2020-09-08 | test(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-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-08 | test(std/fs): make tests runnable from any directory (#7388) | Casper Beyer | |
2020-09-07 | BREAKING(std/fs): remove writeJson and writeJsonSync (#7256) | Casper Beyer | |
2020-09-07 | BREAKING(std/fs): remove readJson and readJsonSync (#7255) | 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-07 | test(std/hash): make tests runnable from any directory (#7376) | Casper Beyer | |
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 | test(std/archive): make tests runnable from any directory (#7366) | Casper Beyer | |
2020-09-06 | test(std/encoding): make tests runnable from any directory (#7368) | Casper Beyer | |
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 | Fix hellish mistake in manual (#7363) | crowlKats | |
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 | test(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-04 | chore(std/wasi): enable and fix lint errors in tests (#7324) | Casper Beyer | |
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 | docs: use the rightwards arrow symbol uniformly (#7331) | reuixiy | |
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-01 | docs(std/uuid): remove mention of v3 which is not supported (#7318) | Casper Beyer | |
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 | Remove unused crate_modules feature (#7311) | Ryan Dahl | |
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 | |