1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

Use tagged version of prettier in CLI (#2387)

This commit is contained in:
Bartek Iwańczuk 2019-05-21 21:39:50 +02:00 committed by Ryan Dahl
parent 0e89ca7b70
commit 880265275f

View file

@ -398,7 +398,7 @@ pub fn parse_flags(matches: ArgMatches) -> DenoFlags {
}
/// Used for `deno fmt <files>...` subcommand
const PRETTIER_URL: &str = "https://deno.land/std/prettier/main.ts";
const PRETTIER_URL: &str = "https://deno.land/std@v0.5.0/prettier/main.ts";
/// These are currently handled subcommands.
/// There is no "Help" subcommand because it's handled by `clap::App` itself.