Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Upgrade SWC version and migrate to PNPM (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Drevoed authored May 17, 2023
1 parent 8d8d16b commit 7671db8
Show file tree
Hide file tree
Showing 5 changed files with 647 additions and 3,264 deletions.
17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "effector-swc-plugin"
version = "0.0.9"
version = "0.0.10"
edition = "2021"
resolver = "2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -10,11 +11,11 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
radix_fmt = "1.0.0"
ahash = { version = "0.8.2", features = ["serde"] }
ahash = { version = "0.8.3", features = ["serde"] }
phf = { version = "0.11.1", features = ["macros"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
swc_core = { version = "0.58.3", features = [
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
swc_core = { version = "0.76.11", features = [
"ecma_plugin_transform",
"ecma_utils",
"ecma_visit",
Expand All @@ -24,7 +25,7 @@ swc_core = { version = "0.58.3", features = [
"testing_transform"
] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"]}
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}

[profile.release]
codegen-units = 1
Expand All @@ -33,5 +34,5 @@ opt-level = 3
panic = "abort"

[dev-dependencies]
swc_ecmascript = { version = "0.212.3", features = ["parser", "transforms"] }
testing = "0.31.29"
swc_ecmascript = { version = "0.228.8", features = ["parser", "transforms"] }
testing = "0.33.11"
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effector/swc-plugin",
"version": "0.0.9",
"version": "0.0.10",
"main": "target/wasm32-wasi/release/effector_swc_plugin.wasm",
"files": [
"target/wasm32-wasi/release/effector_swc_plugin.wasm"
Expand All @@ -15,12 +15,12 @@
"author": "Kirill Mironov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.20.12",
"@babel/core": "~7.21.8",
"@effector/swc-plugin": "link:.",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
"effector": "~22.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.58",
"effector": "~22.8.5",
"unplugin-swc": "^1.3.2",
"vite": "^4.0.4"
"vite": "^4.3.7"
}
}
Loading

0 comments on commit 7671db8

Please sign in to comment.