Skip to content

Commit

Permalink
feat(deps): upgrade swc rust dependencies to latest (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelangeloio authored Jan 25, 2024
1 parent ea29908 commit 2ae9f64
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 53 deletions.
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

0 comments on commit 2ae9f64

Please sign in to comment.