summaryrefslogtreecommitdiff
path: root/src/flags.rs
AgeCommit message (Collapse)Author
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.