summaryrefslogtreecommitdiff
path: root/cli/flags.rs
AgeCommit message (Collapse)Author
2019-06-29feat: parse flags after script name (#2596)Bartek Iwańczuk
2019-06-26feat: deno completions command (#2577)Bartek Iwańczuk
2019-06-24refactor: use Path/PathBuf in deno dir (#2559)Bartek Iwańczuk
2019-06-22feat: log permission access (#2518)Bartek Iwańczuk
Replaces -D/--log-debug flag with --log-level=debug --log-level=info displays permission access
2019-06-20feat: upgrade installer and add docs (#2551)Bartek Iwańczuk
2019-06-15Upgrade INSTALLER_URL to include fixes (#2532)Ryan Dahl
denoland/deno_std#492
2019-06-15fix deno install (#2529)Bartek Iwańczuk
2019-06-14feat: add deno install command (#2522)Bartek Iwańczuk
2019-06-12Move ModuleSpecifier to //core (#2509)Bartek Iwańczuk
2019-06-12Refactor module resolving (#2493)Bartek Iwańczuk
Adds ModuleSpecifier, which wraps a URL. This is now passed around instead of specifier and resolver strings.
2019-06-11feat: default output filename for deno bundle (#2484)Ryan Dahl
And improve bundle docs
2019-06-11Add --seed for setting RNG seed (#2483)Matt Harrison
2019-06-10typo (#2489)Neil Richter
2019-06-09feat: Import maps (#2360)Bartek Iwańczuk
2019-06-08Add 'bundle' subcommand. (#2467)Kitson Kelly
2019-06-05feat: bring back deno <script> (#2451)Bartek Iwańczuk
2019-06-01fmt: add --stdout option (#2439)Yoshiya Hinosawa
2019-05-30bump std/prettier@0.5.0 to std/prettier@0.7.0 (#2425)Axetroy
2019-05-24typo (#2366)ztplz
2019-05-23Improve CLI help (#2388)Ryan Dahl
2019-05-23Rename --allow-high-precision to --allow-hrtime (#2398)Ryan Dahl
2019-05-21Use tagged version of prettier in CLI (#2387)Bartek Iwańczuk
2019-05-16Add permission whitelist docs (#2365)Daiki Ihara
2019-05-16fmt: use --write option of prettier/main.ts (#2363)Yoshiya Hinosawa
This is step 1 of the plan outlined here: https://github.com/denoland/deno/issues/2090#issuecomment-492897028
2019-05-14Fix command in docs (#2353)Ryan Dahl
2019-05-11Add progress bar (#2309)Ryan Dahl
2019-05-09fix: support relative path for whitelisting (#2317)Kevin (Kun) "Kassimo" Qian
Using `std::fs::canonicalize` to expand path to full existing path, such that later attempt to loop-pop and compare path segment would work.
2019-05-08First pass at permissions whitelist (#2129)andy finch
2019-05-06fix: Add all permissions to deno xeval (#2290)Bartek Iwańczuk
2019-05-03add "deno run" subcommand (#2215)Bartek Iwańczuk
2019-05-03feat(cli cmd): deno xeval (#2260)Kevin (Kun) "Kassimo" Qian
2019-05-03add --no-fetch CLI flag to prevent remote downloads (#2213)Bartek Iwańczuk
2019-05-03Fix: deno --v8-options does not print v8 options (#2277)Bartek Iwańczuk
2019-05-01doc: add long about messages for subcommands (#2264)Kevin (Kun) "Kassimo" Qian
Type deno <subcommand> -h to view descriptions.
2019-04-29flags: fix merge error (#2244)Ryan Dahl
2019-04-29Rewrite flags.rs::parse_flags (#2237)Bartek Iwańczuk
2019-04-29Add support for custom tsconfig.json (#2089)Kitson Kelly
Use `--config`
2019-04-27disable --version flag from deno version (#2226)Bartek Iwańczuk
2019-04-25Rename CLI flags to subcommands (#2212)Bartek Iwańczuk
2019-04-25Rename deno prefetch to deno fetch (#2210)Bartek Iwańczuk
2019-04-21Refactor CLI entry point (#2157)Bartek Iwańczuk
Changes "deno --types" to "deno types" and "deno --prefetch" to "deno prefetch"
2019-04-17Fix clippy warningsBert Belder
2019-04-13Add deno eval subcommand (#2102)Bartek Iwańczuk
2019-04-11fix --v8-options (#2093)Bartek Iwańczuk
2019-04-09Silence clippy warnings and format source codeBert Belder
2019-04-08Allow high precision performance.now() (#1977)Vincent LE GOFF
2019-04-07Flags clean up: DenoFlags::from (#2068)Bartek Iwańczuk
2019-04-07Refactor CLI flag parsing (#2025)Bartek Iwańczuk
2019-03-30Rename crate deno_core to deno (#2022)Ryan Dahl
2019-03-28Merge the --recompile and --reload flags (#2003)Ryan Dahl