Skip to content

Commit

Permalink
feat(biome_glob): add dedicated crate for globs
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos committed Nov 28, 2024
1 parent 516314c commit aa10598
Show file tree
Hide file tree
Showing 9 changed files with 219 additions and 69 deletions.
12 changes: 12 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ biome_diagnostics_categories = { version = "0.5.7", path = "./crates/biome_diagn
biome_diagnostics_macros = { version = "0.5.7", path = "./crates/biome_diagnostics_macros" }
biome_formatter = { version = "0.5.7", path = "./crates/biome_formatter" }
biome_fs = { version = "0.5.7", path = "./crates/biome_fs" }
biome_glob = { version = "0.1.0", path = "./crates/biome_glob" }
biome_graphql_analyze = { version = "0.0.1", path = "./crates/biome_graphql_analyze" }
biome_graphql_factory = { version = "0.1.0", path = "./crates/biome_graphql_factory" }
biome_graphql_formatter = { version = "0.1.0", path = "./crates/biome_graphql_formatter" }
Expand Down
27 changes: 27 additions & 0 deletions crates/biome_glob/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "biome_glob"
repository.workspace = true
version = "0.1.0"

[lints]
workspace = true

[dependencies]
biome_deserialize = { workspace = true, optional = true }
biome_text_size = { workspace = true, optional = true }
globset = { workspace = true }
schemars = { workspace = true, optional = true }
serde = { workspace = true, optional = true }

[features]
biome_deserialize = ["dep:biome_deserialize", "dep:biome_text_size"]
schemars = ["dep:schemars"]
serde = ["dep:serde"]
Loading

0 comments on commit aa10598

Please sign in to comment.