summaryrefslogtreecommitdiff
path: root/src/flags.rs
AgeCommit message (Collapse)Author
2019-01-15 Add --prefetch flag for deps prefetch without running (#1475)Kevin (Kun) "Kassimo" Qian
2019-01-15Clippy fixes (also fixes build with nightly) (#1527)Bert Belder
2019-01-14Update to rust 2018 editionAndy Hayden
2019-01-09Add --allow-all flag (#1482)Ryan Dahl
2019-01-08Minimal 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-02Happy new year!Ryan Dahl
2018-11-30clippy fixes (#1250)Andy Hayden
2018-11-16First pass at running subprocesses (#1156)Bert Belder
2018-11-16improve flag parsingBartek Iwańczuk
2018-11-06Fix many of the clippy::pedantic warningsAndy Hayden
2018-11-06Remove flags::processAndy 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-04Fix clippy warnings (#1149)Andy Hayden
Run with: cargo clippy https://github.com/rust-lang-nursery/rust-clippy
2018-10-26Remove broken feature: --depsRyan Dahl
2018-10-24fix typos (#1083)Joseph
2018-10-23Switch to getopts for flag parsing (#1080)Kevin (Kun) "Kassimo" Qian
2018-10-16FormatRyan Dahl
2018-10-15`deno -v` should report typescript versionJinho Bang
Fixes #993
2018-10-15Exit cleanly on unrecognized arguments (#990)Andy Hayden
Refactor set_flags to return a Result
2018-10-15Specify 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-11Add support for --typesKitson Kelly
2018-10-01Format.Ryan Dahl
2018-10-01rename parse_core_args to v8_set_flags_preprocess (#871)ztplz
2018-09-25formatRyan Dahl
2018-09-25Clean up flags.Ryan Dahl
2018-09-24Add flag --recompile (#801)Bartek Iwańczuk
2018-09-22Rename deno.argv, libdeno::DenoC and deno_set_flags (#796)ztplz
2018-09-16formatBert Belder
2018-09-16Remove 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-06Implementing --deps flagMirko 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-05Rename src/binding.rs -> src/libdeno.rsRyan Dahl
2018-09-04Better flag parsingIan Shehadeh
2018-09-03Format.Ryan Dahl
2018-08-31Implemented deno.env and refactored flags.rsAaron Power
2018-08-22Change usage example script extension from .js to .tsJeremy Banks
2018-08-21Better error handling in src/handlers.rsRyan Dahl
Introduces error codes that are shared between JS/RS Fixes #526.
2018-08-17Command line flag parsing (#524)Ryan Dahl
In particular this allow -D for logging debug output.