summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
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
2020-08-31chore(std/wasi): fix no-inner-declarations lints (#7286)Casper Beyer
2020-08-31feat(lint): Add support for reading input from stdin (#7263)Yusuke Tanaka
2020-08-31fix(cli): use upstream type definitions for WebAssembly (#7216)Casper Beyer
2020-08-31upgrade: swc, deno_doc, deno_lint, dprint (#7276)Bartek Iwańczuk
2020-08-31chore: remove unreachable code to pass linter (#7270)Yusuke Tanaka
2020-08-31refactor: remove dead code in tsc (#7277)Bartek Iwańczuk
2020-08-30refactor(std/uuid): remove dependency on isString from std/node (#7273)Casper Beyer
2020-08-30test(std/uuid): reorganize to use one test module per public module (#7272)Casper Beyer
2020-08-29docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254)Casper Beyer