Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2019-03-13 | --no-prompt flag for non-interactive environments (#1913) | andy finch | |
2019-03-11 | core: Abstract out Behavior from Isolate (#1904) | Ryan Dahl | |
Move v8_set_flags and v8_version to core. (The idea is that src/ should not depend on libdeno.rs anymore. This is a step towards that.) | |||
2019-02-27 | Add NO_COLOR to CLI usage (#1843) | Ryan Dahl | |
2019-02-26 | Updated some type assertions to work with other libc implementations. (#1837) | andy finch | |
2019-02-08 | Add --allow-read (#1689) | Dmitry Sharshakov | |
Co-authored-by: Greg Altman <g.s.altman@gmail.com> | |||
2019-02-02 | Support --fmt | Ryan Dahl | |
2019-02-02 | Add --info flag to display file info (compiled code/source map) (#1647) | Kevin (Kun) "Kassimo" Qian | |
2019-01-30 | nit: add missing dot when printing help | Amen | |
2019-01-15 | Add --prefetch flag for deps prefetch without running (#1475) | Kevin (Kun) "Kassimo" Qian | |
2019-01-15 | Clippy fixes (also fixes build with nightly) (#1527) | Bert Belder | |
2019-01-14 | Update to rust 2018 edition | Andy Hayden | |
2019-01-09 | Add --allow-all flag (#1482) | Ryan Dahl | |
2019-01-08 | Minimal Worker support (#1476) | Ryan Dahl | |
This adds the ability to spawn additional Isolates from Rust and send and receive messages from them. This is preliminary work to support running the typescript compiler in a separate isolate and thus support native ES modules. Ref #975. | |||
2019-01-02 | Happy new year! | Ryan Dahl | |
2018-11-30 | clippy fixes (#1250) | Andy Hayden | |
2018-11-16 | First pass at running subprocesses (#1156) | Bert Belder | |
2018-11-16 | improve flag parsing | Bartek Iwańczuk | |
2018-11-06 | Fix many of the clippy::pedantic warnings | Andy Hayden | |
2018-11-06 | Remove flags::process | Andy Hayden | |
It was doing two independent things: - print help and exit - set log level It's better to do those explicitly in main.rs | |||
2018-11-04 | Fix clippy warnings (#1149) | Andy Hayden | |
Run with: cargo clippy https://github.com/rust-lang-nursery/rust-clippy | |||
2018-10-26 | Remove broken feature: --deps | Ryan Dahl | |
2018-10-24 | fix typos (#1083) | Joseph | |
2018-10-23 | Switch to getopts for flag parsing (#1080) | Kevin (Kun) "Kassimo" Qian | |
2018-10-16 | Format | Ryan Dahl | |
2018-10-15 | `deno -v` should report typescript version | Jinho Bang | |
Fixes #993 | |||
2018-10-15 | Exit cleanly on unrecognized arguments (#990) | Andy Hayden | |
Refactor set_flags to return a Result | |||
2018-10-15 | Specify deno_dir location with env var DENO_DIR (#970) | Amos Lim | |
(Use C:\deno instead of c:\deno in appveyor config because it's cloned to c:\ by clone_folder variable in .appveyor.yml. On the other hand, build directory is pointed to C:\ by $(APPVEYOR_BUILD_FOLDER) so that test targets are placed on separated partitions.) | |||
2018-10-11 | Add support for --types | Kitson Kelly | |
2018-10-01 | Format. | Ryan Dahl | |
2018-10-01 | rename parse_core_args to v8_set_flags_preprocess (#871) | ztplz | |
2018-09-25 | format | Ryan Dahl | |
2018-09-25 | Clean up flags. | Ryan Dahl | |
2018-09-24 | Add flag --recompile (#801) | Bartek Iwańczuk | |
2018-09-22 | Rename deno.argv, libdeno::DenoC and deno_set_flags (#796) | ztplz | |
2018-09-16 | format | Bert Belder | |
2018-09-16 | Remove remove_timer asserts (#760) | Kevin (Kun) "Kassimo" Qian | |
* Remove remove_timer asserts * Add clearTimeout invalid id no-panic test * Move timer test to its file AND some lint side-effects | |||
2018-09-06 | Implementing --deps flag | Mirko Jotic | |
- Adding a ModuleId type alias to specify original url or local file of dependency - Modifying ModuleMetaData class to contain ModuleId - Adding a --deps flag | |||
2018-09-05 | Rename src/binding.rs -> src/libdeno.rs | Ryan Dahl | |
2018-09-04 | Better flag parsing | Ian Shehadeh | |
2018-09-03 | Format. | Ryan Dahl | |
2018-08-31 | Implemented deno.env and refactored flags.rs | Aaron Power | |
2018-08-22 | Change usage example script extension from .js to .ts | Jeremy Banks | |
2018-08-21 | Better error handling in src/handlers.rs | Ryan Dahl | |
Introduces error codes that are shared between JS/RS Fixes #526. | |||
2018-08-17 | Command line flag parsing (#524) | Ryan Dahl | |
In particular this allow -D for logging debug output. |