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

feat(deps): upgrade swc rust dependencies to latest #139

Merged
merged 3 commits into from
Jan 25, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 32 additions & 42 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 crates/does-it-throw-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ crate-type = ["cdylib"]
[dependencies]
does-it-throw = { path = "../does-it-throw", version = "0.2.0"}
swc_common = "0.33"
swc_ecma_parser = "0.141.34"
swc_ecma_ast = "0.110.17"
swc_ecma_visit = "0.96"
swc_ecma_parser = "0.142.1"
swc_ecma_ast = "0.111.1"
swc_ecma_visit = "0.97.1"
wasm-bindgen = {version = "0.2.90"}
serde-wasm-bindgen = "0.6.1"
serde_json = "1.0.111"
Expand Down
6 changes: 3 additions & 3 deletions crates/does-it-throw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ bench = false

[dependencies]
swc_common = "0.33"
swc_ecma_parser = "0.141"
swc_ecma_ast = "0.110"
swc_ecma_visit = "0.96"
swc_ecma_parser = "0.142.1"
swc_ecma_ast = "0.111.1"
swc_ecma_visit = "0.97.1"
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"Hint"
],
"default": "Hint",
"description": "Controls the severity level (underline) of a throw statement."
"description": "Controls the severity level of a throw statement."
},
"doesItThrow.functionThrowSeverity": {
"scope": "resource",
Expand All @@ -90,7 +90,7 @@
"Hint"
],
"default": "Hint",
"description": "Controls the severity level (underline) of a function/const that throws."
"description": "Controls the severity level of a function/const that throws."
},
"doesItThrow.callToThrowSeverity": {
"scope": "resource",
Expand All @@ -102,7 +102,7 @@
"Hint"
],
"default": "Hint",
"description": "Controls the severity level (underline) of a function/const that calls a function that throws in the same file."
"description": "Controls the severity level of a function/const that calls a function that throws in the same file."
},
"doesItThrow.callToImportedThrowSeverity": {
"scope": "resource",
Expand All @@ -114,7 +114,7 @@
"Hint"
],
"default": "Hint",
"description": "Controls the severity level (underline) of a function/const that calls a function that throws in a different file."
"description": "Controls the severity level of a function/const that calls a function that throws in a different file."
},
"doesItThrow.maxNumberOfProblems": {
"scope": "resource",
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "does-it-throw-lsp",
"description": "Language Server for Does It Throw",
"version": "0.4.0",
"//": "target-version: 0.4.1",
"//": "target-version: 0.5.0",
"author": {
"name": "Michael Angelo Rivera",
"email": "[email protected]"
Expand Down
Loading