struct Mint::Cli::Compile::Flags

Overview

Extend the flags struct to include the flag

Defined in:

commands/compile.cr:3
commands/compile.cr:8
commands/compile.cr:14
commands/compile.cr:19

Constant Summary

DESCRIPTIONS = {} of String => String
SPECS = {"env" => {kind: "nil", type: "String", default: "nil", description: {"--env, -e", "Loads the given .env file"}, short: "e", long: "env", is_required: false}, "__help__" => {kind: "bool", type: "Bool", default: "false", description: {"--help", "Displays help for the current command."}, short: "nil", long: "help", is_required: true}, "output" => {kind: "nil", type: "String", default: "\"program.js\"", description: {"--output, -o (default: \"program.js\")", "The output file"}, short: "o", long: "output", is_required: true}, "minify" => {kind: "bool", type: "Bool", default: "true", description: {"--minify, -m", "If specified the resulting JavaScript code will be minified"}, short: "m", long: "minify", is_required: true}, "runtime" => {kind: "nil", type: "String", default: "nil", description: {"--runtime", "Will use supplied runtime path instead of the default distribution"}, short: "nil", long: "runtime", is_required: false}} of String => NamedTuple(kind: String, type: String, default: String, description: Tuple(String, String | ::Nil), short: String | ::Nil, long: String, is_required: Bool)

Constructors

Instance Method Summary

Constructor Detail

def self.new(command : Admiral::Command) #

Instance Method Detail

def __help__ #

def env : String? #

def inspect(io) #

[View source]
def minify #

[View source]
def output #

[View source]
def runtime : String? #

[View source]
def validate!(command) #