Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-11 | Add progress bar (#2309) | Ryan Dahl | |
2019-04-29 | Add support for custom tsconfig.json (#2089) | Kitson Kelly | |
Use `--config` | |||
2019-04-23 | Use tokio_threadpool's new panic_handler (#2188) | Ryan Dahl | |
2019-04-14 | Fix silent error, add custom panic handler (#2098) | Ryan Dahl | |
This is to work around Tokio's panic recovery feature. Ref https://github.com/tokio-rs/tokio/issues/495 Ref https://github.com/tokio-rs/tokio/issues/209 Ref https://github.com/denoland/deno/issues/1311 Fixes #2097 | |||
2019-04-11 | Improve op dispatch (#2088) | andy finch | |
2019-04-09 | Silence clippy warnings and format source code | Bert Belder | |
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-05 | add compile_async (#2053) | andy finch | |
2019-04-04 | Non-fatal compile_sync failures (#2039) | andy finch | |
And model worker resources as Stream | |||
2019-04-02 | cli: refactor compile_sync() for readability | Bert Belder | |
2019-04-02 | Clippy fixes | Bert Belder | |
2019-04-01 | Follow redirect location as new referrers for nested module imports (#2031) | Kevin (Kun) "Kassimo" Qian | |
Fixes #1742 Fixes #2021 | |||
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-30 | Rename crate deno_core to deno (#2022) | Ryan Dahl | |
2019-03-28 | Merge the --recompile and --reload flags (#2003) | Ryan Dahl | |
2019-03-28 | Clippy fixes (#2009) | Bert Belder | |
2019-03-25 | Resolve callback moved from Behavior to mod_instantiate() (#1999) | Ryan Dahl | |
This simplifies the Behavior trait and makes it more explicit where the resolve callback is being made. Also s/StartupScript/Script | |||
2019-03-20 | Fix clippy errors and upgrade Rust to 1.33.0 in CI (#1945) | Ryan Dahl | |
2019-03-19 | Separate behavior for the compiler isolate (#1973) | andy finch | |
2019-03-19 | Remove old Buf definition in cli.rs (#1971) | 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. |