File size: 4,100 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
use std::{
net::IpAddr,
path::{Path, PathBuf},
};
use clap::{Args, Parser, ValueEnum};
use serde::{Deserialize, Serialize};
use turbo_tasks::{NonLocalValue, TaskInput, trace::TraceRawVcs};
use turbopack_cli_utils::issue::IssueSeverityCliOption;
#[derive(Debug, Parser)]
#[clap(author, version, about, long_about = None)]
pub enum Arguments {
Build(BuildArguments),
Dev(DevArguments),
}
impl Arguments {
/// The directory of the application. see [CommonArguments]::dir
pub fn dir(&self) -> Option<&Path> {
match self {
Arguments::Build(args) => args.common.dir.as_deref(),
Arguments::Dev(args) => args.common.dir.as_deref(),
}
}
}
#[derive(
Copy,
Clone,
Debug,
ValueEnum,
PartialEq,
Eq,
Serialize,
Deserialize,
Hash,
TaskInput,
NonLocalValue,
TraceRawVcs,
)]
pub enum Target {
Browser,
Node,
}
#[derive(Debug, Args, Clone)]
pub struct CommonArguments {
/// The entrypoints of the project. Resolved relative to the project's
/// directory (`--dir`).
#[clap(value_parser)]
pub entries: Option<Vec<String>>,
/// The directory of the application.
/// If no directory is provided, the current directory will be used.
#[clap(short, long, value_parser)]
pub dir: Option<PathBuf>,
/// The root directory of the project. Nothing outside of this directory can
/// be accessed. e. g. the monorepo root.
/// If no directory is provided, `dir` will be used.
#[clap(long, value_parser)]
pub root: Option<PathBuf>,
/// Filter by issue severity.
#[clap(short, long)]
pub log_level: Option<IssueSeverityCliOption>,
/// Show all log messages without limit.
#[clap(long)]
pub show_all: bool,
/// Expand the log details.
#[clap(long)]
pub log_detail: bool,
/// Whether to enable full task stats recording in Turbo Engine.
#[clap(long)]
pub full_stats: bool,
// Enable experimental garbage collection with the provided memory limit in
// MB.
// #[clap(long)]
// pub memory_limit: Option<usize>,
/// Whether to build for the `browser` or `node``
#[clap(long)]
pub target: Option<Target>,
}
#[derive(Debug, Args)]
#[clap(author, version, about, long_about = None)]
pub struct DevArguments {
#[clap(flatten)]
pub common: CommonArguments,
/// The port number on which to start the application
/// Note: setting env PORT allows to configure port without explicit cli
/// args. However, this is temporary measure to conform with existing
/// next.js devserver and can be removed in the future.
#[clap(short, long, value_parser, default_value_t = 3000, env = "PORT")]
pub port: u16,
/// Hostname on which to start the application
#[clap(short = 'H', long, value_parser, default_value = "0.0.0.0")]
pub hostname: IpAddr,
/// Compile all, instead of only compiling referenced assets when their
/// parent asset is requested
#[clap(long)]
pub eager_compile: bool,
/// Don't open the browser automatically when the dev server has started.
#[clap(long)]
pub no_open: bool,
// ==
// = Inherited options from next-dev, need revisit later.
// ==
/// If port is not explicitly specified, use different port if it's already
/// in use.
#[clap(long)]
pub allow_retry: bool,
}
#[derive(Debug, Args)]
#[clap(author, version, about, long_about = None)]
pub struct BuildArguments {
#[clap(flatten)]
pub common: CommonArguments,
/// Don't generate sourcemaps.
#[clap(long)]
pub no_sourcemap: bool,
/// Don't minify build output.
#[clap(long)]
pub no_minify: bool,
/// Don't perform scope hoisting.
#[clap(long)]
pub no_scope_hoist: bool,
/// Drop the `TurboTasks` object upon exit. By default we intentionally leak this memory, as
/// we're about to exit the process anyways, but that can cause issues with valgrind or other
/// leak detectors.
#[clap(long, hide = true)]
pub force_memory_cleanup: bool,
}
|