Skip to content

Commit

Permalink
chore: rename rome_migrate to biome_migrate biomejs#88
Browse files Browse the repository at this point in the history
  • Loading branch information
kyu08 committed Sep 8, 2023
1 parent 2f89b06 commit 013eafe
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 54 deletions.
78 changes: 28 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ rome_json_factory = { version = "0.2.0", path = "./crates/rome_json_fa
rome_json_formatter = { path = "./crates/rome_json_formatter" }
rome_json_parser = { path = "./crates/rome_json_parser" }
rome_json_syntax = { version = "0.2.0", path = "./crates/rome_json_syntax" }
rome_migrate = { path = "./crates/rome_migrate" }
biome_migrate = { path = "./crates/biome_migrate" }
rome_parser = { version = "0.2.0", path = "./crates/rome_parser" }
rome_rowan = { version = "0.2.0", path = "./crates/rome_rowan" }
rome_service = { path = "./crates/rome_service" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
edition = "2021"
name = "rome_migrate"
name = "biome_migrate"
version = "0.2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/rome_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rome_fs = { workspace = true }
rome_json_formatter = { workspace = true }
rome_json_parser = { workspace = true }
rome_json_syntax = { workspace = true }
rome_migrate = { workspace = true }
biome_migrate = { workspace = true }
rome_rowan = { workspace = true }
rome_service = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rome_cli/src/execute/migrate.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use crate::execute::diagnostics::{ContentDiffAdvice, MigrateDiffDiagnostic};
use crate::{CliDiagnostic, CliSession};
use biome_migrate::{migrate_configuration, ControlFlow};
use rome_console::{markup, ConsoleExt};
use rome_diagnostics::{category, PrintDiagnostic};
use rome_fs::{FileSystemExt, OpenOptions};
use rome_json_parser::JsonParserOptions;
use rome_json_syntax::JsonRoot;
use rome_migrate::{migrate_configuration, ControlFlow};
use rome_rowan::AstNode;
use rome_service::workspace::FixAction;
use std::borrow::Cow;
Expand Down

0 comments on commit 013eafe

Please sign in to comment.