Skip to content

Commit

Permalink
Fixing up
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Aug 2, 2024
1 parent 316d942 commit d2a1d6a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use clap::{
};
use clap_complete::{generate, Shell};
pub use error::Error;
use serde::Serialize;
use serde::{Deserialize, Serialize};
use tracing::{debug, error, log::warn};
use turbopath::AbsoluteSystemPathBuf;
use turborepo_api_client::AnonAPIClient;
Expand Down
3 changes: 1 addition & 2 deletions crates/turborepo-lib/src/commands/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ use turborepo_repository::{
package_graph::PackageGraph, package_json::PackageJson, package_manager::PackageManager,
};

use crate::{cli, commands::CommandBase, turbo_json::UIMode};
use crate::cli::EnvMode;
use crate::{cli, cli::EnvMode, commands::CommandBase, turbo_json::UIMode};

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use turborepo_dirs::config_dir;
use turborepo_ui::UI;

use crate::{
cli::{Command, EnvMode, UIMode},
cli::Command,
config::{ConfigurationOptions, Error as ConfigError, TurborepoConfigBuilder},
turbo_json::UIMode,
Args,
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use turborepo_dirs::{config_dir, vercel_config_dir};
use turborepo_errors::TURBO_SITE;

pub use crate::turbo_json::{RawTurboJson, UIMode};
use crate::{cli, cli::EnvMode, commands::CommandBase, turbo_json};
use crate::{cli::EnvMode, commands::CommandBase, turbo_json};

#[derive(Debug, Error, Diagnostic)]
#[error("Environment variables should not be prefixed with \"{env_pipeline_delimiter}\"")]
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/turbo_json/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use turborepo_repository::{package_graph::ROOT_PKG_NAME, package_json::PackageJs
use turborepo_unescape::UnescapedString;

use crate::{
cli::{EnvMode, OutputLogsMode, UIMode},
cli::{EnvMode, OutputLogsMode},
config::{ConfigurationOptions, Error, InvalidEnvPrefixError},
run::{
task_access::{TaskAccessTraceFile, TASK_ACCESS_CONFIG_PATH},
Expand Down

0 comments on commit d2a1d6a

Please sign in to comment.