Skip to content

Commit

Permalink
Merge branch 'main' into c/no-comment-text-node
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Oct 22, 2023
2 parents 1c9b1ce + 76ac9cd commit 4c700a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/oxc_index/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Indexing Utilities
//!
//! <https://github.com/rust-lang/rust/tree/master/compiler/rustc_index>
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_index>

pub use index_vec::{define_index_type, index_vec, IndexSlice, IndexVec};
pub use static_assertions::*;
4 changes: 4 additions & 0 deletions crates/oxc_span/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
//! Source positions and related helper functions.
//!
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_span>

mod atom;
mod source_type;
mod span;
Expand Down
7 changes: 3 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ _default:
alias r := ready
alias c := coverage

# Initialize the project by installing all the necessary tools.
# Make sure you have cargo-binstall installed.
# You can download the pre-compiled binary from <https://github.com/cargo-bins/cargo-binstall#installation>
# or install via `cargo install cargo-binstall`
# Initialize the project by installing all the necessary tools.
init:
cargo binstall cargo-nextest cargo-watch cargo-insta cargo-edit typos-cli taplo-cli wasm-pack cargo-llvm-cov -y

Expand All @@ -25,12 +25,11 @@ ready:

# Update our local branch with the remote branch (this is for you to sync the submodules)
update:
git pull
git submodule update --init
git pull --recurse-submodules

# Run `cargo watch`
# --no-vcs-ignores: cargo-watch has a bug loading all .gitignores, including the ones listed in .gitignore
# use .ignore file getting the ignore list
# Run `cargo watch`
watch command:
cargo watch --no-vcs-ignores -i '*snap*' -x '{{command}}'

Expand Down

0 comments on commit 4c700a7

Please sign in to comment.