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

chore: rename some crates #218

Merged
merged 2 commits into from
Sep 10, 2023
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ documentation = """
-p rome_*parser \
-p biome_text_edit \
-p biome_text_size \
-p rome_js_semantic \
-p biome_js_semantic \
-p biome_markup \
-p biome_rowan
--no-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A-Linter:
A-Parser:
- crates/biome_parser/**
- crates/rome_js_parser/**
- crates/rome_js_syntax/**
- crates/biome_js_syntax/**
- crates/rome_json_parser/**
- crates/rome_json_syntax/**
- crates/biome_css_parser/**
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/parser_conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches:
- main
paths:
- 'crates/rome_js_syntax/**'
- 'crates/rome_js_factory/**'
- 'crates/biome_js_syntax/**'
- 'crates/biome_js_factory/**'
- 'crates/rome_js_parser/**'
- 'crates/biome_rowan/**'
- 'xtask/**'
Expand Down
110 changes: 55 additions & 55 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ biome_diagnostics_categories = { version = "0.2.0", path = "./crates/biome_diagn
biome_diagnostics_macros = { version = "0.0.1", path = "./crates/biome_diagnostics_macros" }
biome_flags = { path = "./crates/biome_flags" }
biome_fs = { path = "./crates/biome_fs" }
biome_js_factory = { version = "0.2.0", path = "./crates/biome_js_factory" }
biome_js_semantic = { path = "./crates/biome_js_semantic" }
biome_js_syntax = { version = "0.2.0", path = "./crates/biome_js_syntax" }
biome_js_unicode_table = { version = "0.0.1", path = "./crates/biome_js_unicode_table" }
biome_lsp = { path = "./crates/biome_lsp" }
biome_markup = { version = "0.0.1", path = "./crates/biome_markup" }
Expand All @@ -53,11 +56,8 @@ biome_text_size = { version = "0.0.1", path = "./crates/biome_text_
rome_formatter = { version = "0.1.0", path = "./crates/rome_formatter" }
rome_formatter_test = { path = "./crates/rome_formatter_test" }
rome_js_analyze = { path = "./crates/rome_js_analyze" }
rome_js_factory = { version = "0.2.0", path = "./crates/rome_js_factory" }
rome_js_formatter = { path = "./crates/rome_js_formatter" }
rome_js_parser = { path = "./crates/rome_js_parser" }
rome_js_semantic = { path = "./crates/rome_js_semantic" }
rome_js_syntax = { version = "0.2.0", path = "./crates/rome_js_syntax" }
rome_json_analyze = { path = "./crates/rome_json_analyze" }
rome_json_factory = { version = "0.2.0", path = "./crates/rome_json_factory" }
rome_json_formatter = { path = "./crates/rome_json_formatter" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
authors.workspace = true
description = "Utilities to create JavaScript AST for rome_js_parser"
documentation = "https://docs.rs/rome_js_factory"
documentation = "https://docs.rs/biome_js_factory"
edition.workspace = true
license.workspace = true
name = "rome_js_factory"
name = "biome_js_factory"
repository.workspace = true
version = "0.2.0"

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

[dependencies]
biome_rowan = { workspace = true }
rome_js_syntax = { workspace = true }
biome_js_syntax = { workspace = true }
biome_rowan = { workspace = true }
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
[discord-url]: https://discord.gg/BypW39g6Yc
[ci-badge]: https://github.com/biomejs/biome/actions/workflows/main.yml/badge.svg
[ci-url]: https://github.com/biomejs/biome/actions/workflows/main.yml
[cargo-badge]: https://badgen.net/crates/v/rome_js_factory?&color=green
[cargo-url]: https://crates.io/crates/rome_js_factory/
[cargo-badge]: https://badgen.net/crates/v/biome_js_factory?&color=green
[cargo-url]: https://crates.io/crates/biome_js_factory/

</div>

# `rome_js_factory`
# `biome_js_factory`

Rome's JavaScript parser implementation. Follow the [documentation](https://docs.rs/rome_js_parser/latest).

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

Loading
Loading