Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-17 | Add crypto.getRandomValues() (#2327) | chiefbiiko | |
2019-05-17 | Don't print new line if progress bar was not used (#2374) | Bartek Iwańczuk | |
2019-05-11 | Add progress bar (#2309) | Ryan Dahl | |
2019-05-03 | fix: deno version panic (#2286) | Bartek Iwańczuk | |
2019-05-03 | add "deno run" subcommand (#2215) | Bartek Iwańczuk | |
2019-05-03 | feat(cli cmd): deno xeval (#2260) | Kevin (Kun) "Kassimo" Qian | |
2019-05-03 | Fix: deno --v8-options does not print v8 options (#2277) | Bartek Iwańczuk | |
2019-05-03 | Optimize read and write ops (#2259) | Ryan Dahl | |
2019-05-03 | core,cli: fix clippy warnings | Bert Belder | |
2019-04-29 | Rewrite flags.rs::parse_flags (#2237) | Bartek Iwańczuk | |
2019-04-25 | compile lib.deno_runtime.d.ts into executable (#2209) | Ryan Dahl | |
2019-04-25 | Rename deno prefetch to deno fetch (#2210) | Bartek Iwańczuk | |
2019-04-21 | Add Deno.kill(pid, signo) and process.kill(signo) (Unix only) (#2177) | Kevin (Kun) "Kassimo" Qian | |
2019-04-21 | Refactor CLI entry point (#2157) | Bartek Iwańczuk | |
Changes "deno --types" to "deno types" and "deno --prefetch" to "deno prefetch" | |||
2019-04-19 | core: test Modules::deps and handle error cases better (#2141) | Ryan Dahl | |
2019-04-16 | Implement async module loading in CLI (#2084) | Ryan Dahl | |
2019-04-13 | Add deno eval subcommand (#2102) | Bartek Iwańczuk | |
2019-04-11 | Improve op dispatch (#2088) | andy finch | |
2019-04-09 | core: Rename Behavior to Dispatch (#2082) | Ryan Dahl | |
And rename IsolateState to ThreadSafeState. Also make ThreadSafeState directly implement Dispatch. This is simpler. | |||
2019-04-08 | Merge Worker and Isolate types (#2078) | Ryan Dahl | |
Reduces generics. | |||
2019-04-08 | core: snapshot improvements (#2052) | Ryan Dahl | |
* Moves how snapshots are supplied to the Isolate. Previously they were given by Behavior::startup_data() but it was only called once at startup. It makes more sense (and simplifies Behavior) to pass it to the constructor of Isolate. * Adds new libdeno type deno_snapshot instead of overloading deno_buf. * Adds new libdeno method to delete snapshot deno_snapshot_delete(). * Renames deno_get_snapshot() to deno_snapshot_new(). * Makes StartupData hold references to snapshots. This was implicit when it previously held a deno_buf but is made explicit now. Note that include_bytes!() returns a &'static [u8] and we want to avoid copying that. | |||
2019-04-07 | Refactor CLI flag parsing (#2025) | Bartek Iwańczuk | |
2019-04-01 | Add web worker JS API (#1993) | andy finch | |
* Refactored the way worker polling is scheduled and errors are handled. * Share the worker future as a Shared | |||
2019-03-19 | Separate behavior for the compiler isolate (#1973) | andy finch | |
2019-03-19 | Rename //src/ to //cli/ (#1962) | Ryan Dahl | |
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally. |