Skip to content

Commit 7eb35db

Browse files
authored
feat: async fs + fix fmt (#101)
* feat: async fs + fix fmt * chore: fmt
1 parent e5c4b13 commit 7eb35db

37 files changed

+1148
-203
lines changed

Cargo.lock

Lines changed: 52 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@ lazy_static = "1.5.0"
2929
libsui = "0.10.0"
3030
log = "0.4.22"
3131
lsp-types = "0.97.0"
32-
nova_vm = { git = "https://github.com/trynova/nova", rev = "3308e0517a95515592f46d045b8f9b2d4fdd71d4", features = [
32+
nova_vm = { git = "https://github.com/trynova/nova", rev = "80f06f3874d5d5633b13b454e6e004d95e53ef9c", features = [
3333
"typescript"
3434
] }
3535
nu-ansi-term = "0.50.1"
36-
oxc_codegen = "0.79.1"
36+
oxc_codegen = "0.80.0"
3737
owo-colors = "4.2.2"
38-
oxc_ast = "0.79.1"
39-
oxc_minifier = "0.79.1"
40-
oxc_mangler = "0.79.1"
41-
oxc_allocator = "0.79.1"
42-
oxc_diagnostics = "0.79.1"
38+
oxc_ast = "0.80.0"
39+
oxc_minifier = "0.80.0"
40+
oxc_mangler = "0.80.0"
41+
oxc_allocator = "0.80.0"
42+
oxc_diagnostics = "0.80.0"
4343
oxc-miette = { version = "2.4.0", features = ["fancy"] }
44-
oxc_parser = "0.79.1"
45-
oxc_semantic = "0.79.1"
46-
oxc_span = "0.79.1"
47-
oxc_transformer = "0.79.1"
44+
oxc_parser = "0.80.0"
45+
oxc_semantic = "0.80.0"
46+
oxc_span = "0.80.0"
47+
oxc_transformer = "0.80.0"
4848
rand = "0.9.2"
4949
reedline = "0.41.0"
5050
regex = "1.11.1"
@@ -53,11 +53,11 @@ rusqlite = { version = "0.37.0", features = ["bundled"] }
5353
serde = { version = "1.0.219", features = ["derive"] }
5454
serde_json = "1.0.142"
5555
serde_yaml = "0.9.34-deprecated"
56-
toml = "0.9.4"
56+
toml = "0.9.5"
5757
signal-hook = "0.3.18"
5858
thiserror = "2.0.12"
5959
tempfile = "3.13.0"
60-
tokio = { version = "1.46.1", features = ["rt", "sync", "time"] }
60+
tokio = { version = "1.47.1", features = ["rt", "sync", "time", "fs"] }
6161
tokio-test = "0.4.4"
6262
tower-lsp = "0.20.0"
6363
ureq = { version = "3.0.12", features = ["json"] }

cli/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl Default for FormatConfig {
8888
line_width: 80,
8989
use_tabs: false,
9090
tab_width: 2,
91-
trailing_comma: true,
91+
trailing_comma: false,
9292
semicolons: true,
9393
single_quotes: false,
9494
}

0 commit comments

Comments
 (0)