Skip to content

Commit

Permalink
feat: upgrade to swc_ecma_parser 0.130 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Mar 20, 2023
1 parent d1209db commit 47fcf27
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 103 deletions.
133 changes: 87 additions & 46 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,32 @@ visit = ["swc_ecma_visit"]
anyhow = { version = "1.0.64", optional = true }
base64 = { version = "0.13.1", optional = true }
data-url = { version = "0.2.0", optional = true }
dprint-swc-ext = "0.7.0"
dprint-swc-ext = "0.8.0"
serde = { version = "1.0.144", features = ["derive"] }
text_lines = { version = "0.6.0", features = ["serialization"] }
url = { version = "2.3.1", features = ["serde"], optional = true }

# swc's version bumping is very buggy and there will often be patch versions
# published that break our build, so we pin all swc versions to prevent
# pulling in new versions of swc crates
swc_atoms = "=0.4.34"
swc_common = "=0.29.29"
swc_ecma_ast = "=0.96.3"
swc_ecma_codegen = { version = "=0.129.8", optional = true }
swc_atoms = "=0.4.39"
swc_common = "=0.29.37"
swc_ecma_ast = "=0.100.1"
swc_ecma_codegen = { version = "=0.135.2", optional = true }
swc_ecma_codegen_macros = { version = "=0.7.1", optional = true }
swc_ecma_dep_graph = { version = "=0.96.5", optional = true }
swc_ecma_loader = { version = "=0.41.31", optional = true }
swc_ecma_parser = "=0.124.5"
swc_ecma_transforms_base = { version = "=0.116.5", optional = true }
swc_ecma_transforms_classes = { version = "=0.105.5", optional = true }
swc_ecma_transforms_compat = { version = "=0.141.7", optional = true }
swc_ecma_dep_graph = { version = "=0.102.2", optional = true }
swc_ecma_loader = { version = "=0.41.39", optional = true }
swc_ecma_parser = "=0.130.2"
swc_ecma_transforms_base = { version = "=0.122.3", optional = true }
swc_ecma_transforms_classes = { version = "=0.111.3", optional = true }
swc_ecma_transforms_compat = { version = "=0.148.4", optional = true }
swc_ecma_transforms_macros = { version = "=0.5.0", optional = true }
swc_ecma_transforms_proposal = { version = "=0.149.8", optional = true }
swc_ecma_transforms_react = { version = "=0.160.9", optional = true }
swc_ecma_transforms_typescript = { version = "=0.164.10", optional = true }
swc_ecma_utils = { version = "=0.107.5", optional = true }
swc_ecma_visit = { version = "=0.82.3", optional = true }
swc_bundler = { version = "=0.199.11", optional = true }
swc_ecma_transforms_proposal = { version = "=0.156.4", optional = true }
swc_ecma_transforms_react = { version = "=0.167.4", optional = true }
swc_ecma_transforms_typescript = { version = "=0.171.4", optional = true }
swc_ecma_utils = { version = "=0.113.3", optional = true }
swc_ecma_visit = { version = "=0.86.1", optional = true }
swc_bundler = { version = "=0.208.4", optional = true }

[dev-dependencies]
pretty_assertions = "1.3.0"
Expand Down
Loading

0 comments on commit 47fcf27

Please sign in to comment.