Skip to content

Commit a659647

Browse files
committed
fmt
1 parent 3896ee7 commit a659647

3 files changed

Lines changed: 124 additions & 95 deletions

File tree

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
2-
name = "biome_js_formatter"
3-
version = "0.5.7"
4-
authors.workspace = true
5-
edition.workspace = true
6-
description = "Biome's JavaScript formatter"
7-
homepage.workspace = true
2+
name = "biome_js_formatter"
3+
version = "0.5.7"
4+
authors.workspace = true
5+
edition.workspace = true
6+
description = "Biome's JavaScript formatter"
7+
homepage.workspace = true
88
repository.workspace = true
9-
license.workspace = true
10-
keywords.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
1111
categories.workspace = true
12-
publish = true
12+
publish = true
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

@@ -19,44 +19,44 @@ independent = true
1919

2020
[[bench]]
2121
harness = false
22-
name = "js_formatter"
22+
name = "js_formatter"
2323

2424
[dependencies]
25-
biome_deserialize = { workspace = true }
26-
biome_deserialize_macros = { workspace = true }
25+
biome_deserialize = { workspace = true }
26+
biome_deserialize_macros = { workspace = true }
2727
biome_diagnostics_categories = { workspace = true }
28-
biome_formatter = { workspace = true }
29-
biome_js_factory = { workspace = true }
30-
biome_js_syntax = { workspace = true }
31-
biome_languages = { workspace = true, features = ["lang_js"] }
32-
biome_rowan = { workspace = true }
33-
biome_string_case = { workspace = true }
34-
biome_suppression = { workspace = true }
35-
biome_text_size = { workspace = true }
36-
biome_unicode_table = { workspace = true }
37-
camino = { workspace = true }
38-
schemars = { workspace = true, optional = true }
39-
serde = { workspace = true, features = ["derive"], optional = true }
40-
smallvec = { workspace = true }
41-
unicode-width = { workspace = true }
28+
biome_formatter = { workspace = true }
29+
biome_js_factory = { workspace = true }
30+
biome_js_syntax = { workspace = true }
31+
biome_languages = { workspace = true, features = ["lang_js"] }
32+
biome_rowan = { workspace = true }
33+
biome_string_case = { workspace = true }
34+
biome_suppression = { workspace = true }
35+
biome_text_size = { workspace = true }
36+
biome_unicode_table = { workspace = true }
37+
camino = { workspace = true }
38+
schemars = { workspace = true, optional = true }
39+
serde = { workspace = true, features = ["derive"], optional = true }
40+
smallvec = { workspace = true }
41+
unicode-width = { workspace = true }
4242

4343
[dev-dependencies]
44-
biome_configuration = { path = "../biome_configuration" }
45-
biome_formatter = { path = "../biome_formatter", features = ["countme"] }
44+
biome_configuration = { path = "../biome_configuration" }
45+
biome_formatter = { path = "../biome_formatter", features = ["countme"] }
4646
biome_formatter_test = { path = "../biome_formatter_test", features = ["lang_js"] }
47-
biome_fs = { path = "../biome_fs" }
48-
biome_js_factory = { path = "../biome_js_factory" }
49-
biome_js_parser = { path = "../biome_js_parser" }
50-
biome_parser = { path = "../biome_parser" }
51-
biome_service = { path = "../biome_service", features = ["lang_js"] }
52-
biome_test_utils = { path = "../biome_test_utils", features = ["lang_js"] }
53-
countme = { workspace = true, features = ["enable"] }
54-
criterion = { package = "codspeed-criterion-compat", version = "=3.0.5" }
55-
quickcheck = { workspace = true }
56-
serde = { workspace = true, features = ["derive"] }
57-
serde_json = { workspace = true }
58-
similar-asserts = { workspace = true }
59-
tests_macros = { path = "../tests_macros" }
47+
biome_fs = { path = "../biome_fs" }
48+
biome_js_factory = { path = "../biome_js_factory" }
49+
biome_js_parser = { path = "../biome_js_parser" }
50+
biome_parser = { path = "../biome_parser" }
51+
biome_service = { path = "../biome_service", features = ["lang_js"] }
52+
biome_test_utils = { path = "../biome_test_utils", features = ["lang_js"] }
53+
countme = { workspace = true, features = ["enable"] }
54+
criterion = { package = "codspeed-criterion-compat", version = "=3.0.5" }
55+
quickcheck = { workspace = true }
56+
serde = { workspace = true, features = ["derive"] }
57+
serde_json = { workspace = true }
58+
similar-asserts = { workspace = true }
59+
tests_macros = { path = "../tests_macros" }
6060

6161
[target.'cfg(all(target_family="unix", not(all(target_arch = "aarch64", target_env = "musl"))))'.dev-dependencies]
6262
tikv-jemallocator = { workspace = true }
@@ -66,7 +66,7 @@ mimalloc = { workspace = true }
6666

6767
[features]
6868
schema = ["dep:schemars", "serde"]
69-
serde = ["dep:serde"]
69+
serde = ["dep:serde"]
7070

7171
[lints]
7272
workspace = true

crates/biome_module_graph/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ biome_js_parser = { path = "../biome_js_parser" }
5858
biome_json_parser = { path = "../biome_json_parser" }
5959
biome_json_value = { path = "../biome_json_value" }
6060
biome_service = { path = "../biome_service", features = ["testing"] }
61-
biome_test_utils = { path = "../biome_test_utils", features = ["lang_css", "lang_html", "lang_js", "module_graph", "type_inference"] }
61+
biome_test_utils = {
62+
path = "../biome_test_utils",
63+
features = ["lang_css", "lang_html", "lang_js", "module_graph", "type_inference"]
64+
}
6265
biome_workspace_db = { path = "../biome_workspace_db" }
6366
divan = { package = "codspeed-divan-compat", version = "=4.4.1" }
6467
insta = { workspace = true }

crates/biome_test_utils/Cargo.toml

Lines changed: 78 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,91 @@
11
[package]
2-
name = "biome_test_utils"
3-
version = "0.0.0"
4-
authors.workspace = true
5-
edition.workspace = true
6-
description = "Utilities for tests"
7-
homepage.workspace = true
2+
name = "biome_test_utils"
3+
version = "0.0.0"
4+
authors.workspace = true
5+
edition.workspace = true
6+
description = "Utilities for tests"
7+
homepage.workspace = true
88
repository.workspace = true
9-
license.workspace = true
10-
keywords.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
1111
categories.workspace = true
12-
publish = false
12+
publish = false
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
biome_analyze = { workspace = true }
18-
biome_configuration = { workspace = true }
19-
biome_console = { workspace = true }
20-
biome_css_parser = { workspace = true, optional = true }
21-
biome_css_syntax = { workspace = true, optional = true }
22-
biome_db = { workspace = true }
23-
biome_deserialize = { workspace = true }
24-
biome_diagnostics = { workspace = true }
25-
biome_formatter = { workspace = true }
26-
biome_fs = { workspace = true }
27-
biome_html_parser = { workspace = true, optional = true }
28-
biome_html_syntax = { workspace = true, optional = true }
29-
biome_js_analyze = { workspace = true, optional = true }
30-
biome_js_parser = { workspace = true, optional = true }
31-
biome_js_semantic = { workspace = true, optional = true }
32-
biome_js_type_info = { workspace = true, optional = true }
33-
biome_languages = { workspace = true }
34-
biome_module_graph = { workspace = true, optional = true }
35-
biome_package = { workspace = true }
36-
biome_parser = { workspace = true }
17+
biome_analyze = { workspace = true }
18+
biome_configuration = { workspace = true }
19+
biome_console = { workspace = true }
20+
biome_css_parser = { workspace = true, optional = true }
21+
biome_css_syntax = { workspace = true, optional = true }
22+
biome_db = { workspace = true }
23+
biome_deserialize = { workspace = true }
24+
biome_diagnostics = { workspace = true }
25+
biome_formatter = { workspace = true }
26+
biome_fs = { workspace = true }
27+
biome_html_parser = { workspace = true, optional = true }
28+
biome_html_syntax = { workspace = true, optional = true }
29+
biome_js_analyze = { workspace = true, optional = true }
30+
biome_js_parser = { workspace = true, optional = true }
31+
biome_js_semantic = { workspace = true, optional = true }
32+
biome_js_type_info = { workspace = true, optional = true }
33+
biome_languages = { workspace = true }
34+
biome_module_graph = { workspace = true, optional = true }
35+
biome_package = { workspace = true }
36+
biome_parser = { workspace = true }
3737
biome_project_layout = { workspace = true }
38-
biome_rowan = { workspace = true, features = ["countme"] }
39-
biome_service = { workspace = true, features = ["testing"] }
40-
biome_string_case = { workspace = true }
41-
biome_workspace_db = { workspace = true }
42-
camino = { workspace = true }
43-
countme = { workspace = true, features = ["enable"] }
44-
json_comments = "0.2.2"
45-
owo-colors = { version = "4.3.0" }
46-
serde_json = { workspace = true }
47-
similar = { workspace = true }
48-
ureq = { workspace = true }
49-
url = { workspace = true }
38+
biome_rowan = { workspace = true, features = ["countme"] }
39+
biome_service = { workspace = true, features = ["testing"] }
40+
biome_string_case = { workspace = true }
41+
biome_workspace_db = { workspace = true }
42+
camino = { workspace = true }
43+
countme = { workspace = true, features = ["enable"] }
44+
json_comments = "0.2.2"
45+
owo-colors = { version = "4.3.0" }
46+
serde_json = { workspace = true }
47+
similar = { workspace = true }
48+
ureq = { workspace = true }
49+
url = { workspace = true }
5050

5151
[features]
52-
html_embeds = ["biome_service/html_embeds", "biome_workspace_db/html_embeds", "lang_css", "lang_html", "lang_js", "lang_json"]
53-
js_embeds = ["biome_service/js_embeds", "lang_css", "lang_graphql", "lang_js"]
54-
lang_css = ["biome_service/lang_css", "biome_configuration/lang_css", "biome_languages/lang_css", "dep:biome_css_parser", "dep:biome_css_syntax"]
55-
lang_graphql = ["biome_service/lang_graphql", "biome_configuration/lang_graphql", "biome_languages/lang_graphql"]
56-
lang_grit = ["biome_service/lang_grit", "biome_languages/lang_grit"]
57-
lang_html = ["biome_service/lang_html", "biome_configuration/lang_html", "biome_languages/lang_html", "dep:biome_html_parser", "dep:biome_html_syntax"]
58-
lang_js = ["biome_service/lang_js", "biome_configuration/lang_js", "biome_languages/lang_js", "dep:biome_js_parser", "dep:biome_js_analyze", "dep:biome_js_semantic"]
59-
lang_json = ["biome_service/lang_json", "biome_configuration/lang_json", "biome_languages/lang_json"]
60-
lang_md = ["biome_service/lang_md", "biome_configuration/lang_md", "biome_languages/lang_md"]
61-
lang_yaml = ["biome_service/lang_yaml", "biome_configuration/lang_yaml", "biome_languages/lang_yaml"]
62-
module_graph = ["biome_service/module_graph", "biome_workspace_db/module_graph", "dep:biome_module_graph"]
52+
html_embeds = [
53+
"biome_service/html_embeds",
54+
"biome_workspace_db/html_embeds",
55+
"lang_css",
56+
"lang_html",
57+
"lang_js",
58+
"lang_json"
59+
]
60+
js_embeds = ["biome_service/js_embeds", "lang_css", "lang_graphql", "lang_js"]
61+
lang_css = [
62+
"biome_configuration/lang_css",
63+
"biome_languages/lang_css",
64+
"biome_service/lang_css",
65+
"dep:biome_css_parser",
66+
"dep:biome_css_syntax"
67+
]
68+
lang_graphql = ["biome_configuration/lang_graphql", "biome_languages/lang_graphql", "biome_service/lang_graphql"]
69+
lang_grit = ["biome_languages/lang_grit", "biome_service/lang_grit"]
70+
lang_html = [
71+
"biome_configuration/lang_html",
72+
"biome_languages/lang_html",
73+
"biome_service/lang_html",
74+
"dep:biome_html_parser",
75+
"dep:biome_html_syntax"
76+
]
77+
lang_js = [
78+
"biome_configuration/lang_js",
79+
"biome_languages/lang_js",
80+
"biome_service/lang_js",
81+
"dep:biome_js_analyze",
82+
"dep:biome_js_parser",
83+
"dep:biome_js_semantic"
84+
]
85+
lang_json = ["biome_configuration/lang_json", "biome_languages/lang_json", "biome_service/lang_json"]
86+
lang_md = ["biome_configuration/lang_md", "biome_languages/lang_md", "biome_service/lang_md"]
87+
lang_yaml = ["biome_configuration/lang_yaml", "biome_languages/lang_yaml", "biome_service/lang_yaml"]
88+
module_graph = ["biome_service/module_graph", "biome_workspace_db/module_graph", "dep:biome_module_graph"]
6389
type_inference = ["biome_service/type_inference", "dep:biome_js_type_info", "lang_js", "module_graph"]
6490

6591
[lints]

0 commit comments

Comments
 (0)