Skip to content

Commit

Permalink
Merge pull request #29 from 2fd/feature/upgrade-swc-core-0-03-4
Browse files Browse the repository at this point in the history
feat: upgrade swc core to 0.93.4
  • Loading branch information
2fd authored Jun 17, 2024
2 parents 6988f90 + 8778a83 commit 2cde6a7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ Cargo.lock
node_modules/
tests/fixture/*/input.js
*.wasm
.swc/
.swc/
.idea/
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ strip = "symbols"
[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
swc_core = { version = "0.92.2", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.113.0"
swc_ecma_visit = "0.99.0"
swc_core = { version = "0.93.4", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.113.1"
swc_ecma_visit = "0.99.1"
swc_plugin_macro = "0.9.16"

[dev-dependencies]
swc_atoms = "0.6.6"
swc_common = "0.33.22"
swc_ecma_parser = "0.144.0"
swc_ecma_transforms_base = "0.138.0"
swc_ecma_transforms_testing = "0.141.0"
swc_ecma_transforms_typescript = "0.189.0"
swc_ecma_utils = "0.128.0"
swc_atoms = "0.6.5"
swc_common = "0.33.26"
swc_ecma_parser = "0.144.1"
swc_ecma_transforms_base = "0.138.1"
swc_ecma_transforms_testing = "0.141.1"
swc_ecma_transforms_typescript = "0.189.1"
swc_ecma_utils = "0.128.1"
testing = "0.35.22"
tracing = { version="0.1", features = ["release_max_level_info"] }
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ If you are using SWC to transpile your TypeScript code, and your target is `es20
| ------------------------------------------ | ----------- | -------------- |
| `1.0.x` | `1.4.0` | `0.6.x` |
| `1.1.x` | `1.5.0` | |
| `1.2.x` | `1.5.0` | |

## Usage

Expand Down

0 comments on commit 2cde6a7

Please sign in to comment.