Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --silent option for use with fnm env #1401

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ repo/packages/my-package$ fnm use
error: Can't find version in dotfiles. Please provide a version manually to the command.
```

### `--silent`

Suppress "Using Node Version..." message when changing versions with --use-on-cd

### `--corepack-enabled`

**🧪 Experimental**
Expand Down
3 changes: 3 additions & 0 deletions e2e/shellcode/shells/cmdEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ type EnvConfig = {
corepackEnabled: boolean
resolveEngines: boolean
nodeDistMirror: string
silent: boolean
}
export type HasEnv = { env(cfg: Partial<EnvConfig>): ScriptLine }

Expand All @@ -18,6 +19,7 @@ function stringify(envConfig: Partial<EnvConfig> = {}) {
resolveEngines,
executableName = "fnm",
nodeDistMirror,
silent,
} = envConfig
return [
`${executableName} env`,
Expand All @@ -26,6 +28,7 @@ function stringify(envConfig: Partial<EnvConfig> = {}) {
corepackEnabled && "--corepack-enabled",
resolveEngines && `--resolve-engines`,
nodeDistMirror && `--node-dist-mirror=${JSON.stringify(nodeDistMirror)}`,
silent && "--silent",
]
.filter(Boolean)
.join(" ")
Expand Down
4 changes: 4 additions & 0 deletions src/commands/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ pub struct Env {
/// Print the script to change Node versions every directory change
#[clap(long)]
use_on_cd: bool,
/// Suppress "Using Node Version..." message when changing versions with --use-on-cd
#[clap(long)]
silent: bool,
}

fn generate_symlink_path() -> String {
Expand Down Expand Up @@ -89,6 +92,7 @@ impl Command for Env {
),
("FNM_RESOLVE_ENGINES", bool_as_str(config.resolve_engines())),
("FNM_ARCH", config.arch.as_str()),
("FNM_SILENT", bool_as_str(config.silent())),
];

if self.json {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/use.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl Command for Use {
}
};

if !self.silent_if_unchanged || will_version_change(&version_path, config) {
if !config.silent() && (!self.silent_if_unchanged || will_version_change(&version_path, config)) {
outln!(config, Info, "{}", message);
}

Expand Down
14 changes: 14 additions & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,15 @@ pub struct FnmConfig {
)]
corepack_enabled: bool,

/// Suppress "Using Node Version..." message when changing versions with --use-on-cd
#[clap(
long,
env = "FNM_SILENT",
global = true,
hide_env_values = true
)]
silent: bool,

/// Resolve `engines.node` field in `package.json` whenever a `.node-version` or `.nvmrc` file is not present.
/// This feature is enabled by default. To disable it, provide `--resolve-engines=false`.
///
Expand Down Expand Up @@ -110,6 +119,7 @@ impl Default for FnmConfig {
arch: Arch::default(),
version_file_strategy: VersionFileStrategy::default(),
corepack_enabled: false,
silent: false,
resolve_engines: None,
directories: Directories::default(),
}
Expand All @@ -125,6 +135,10 @@ impl FnmConfig {
self.corepack_enabled
}

pub fn silent(&self) -> bool {
self.silent
}

pub fn resolve_engines(&self) -> bool {
self.resolve_engines.flatten().unwrap_or(true)
}
Expand Down