Skip to content

Commit

Permalink
Merge pull request #230 from kwonoj/release-pkg
Browse files Browse the repository at this point in the history
build(release): release 0.0.21
  • Loading branch information
kwonoj committed Mar 16, 2024
2 parents 60f07a9 + 843d895 commit 6438b88
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ members = [
#lto = true

[workspace.dependencies]
istanbul-oxide = { path = "./packages/istanbul-oxide" }
swc-coverage-instrument = { path = "./packages/swc-coverage-instrument" }

getrandom = { version = "0.2.12" }
indexmap = { version = "2.2.2" }
once_cell = { version = "1.19.0" }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swc-plugin-coverage-instrument",
"version": "0.0.20",
"version": "0.0.21",
"description": "SWC coverage instrumentation plugin",
"main": "./target/wasm32-wasi/release/swc_plugin_coverage.wasm",
"napi": {
Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "istanbul-oxide"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.20"
version = "0.0.21"

[dependencies]
indexmap = { workspace = true, features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/swc-coverage-instrument/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ edition = "2021"
license = "MIT"
name = "swc-coverage-instrument"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.20"
version = "0.0.21"

[dependencies]
istanbul-oxide = { version = "0.0.20", path = "../istanbul-oxide" }
istanbul-oxide = { workspace = true }
once_cell = { workspace = true }
regex = "1.8.1"
serde = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/swc-plugin-coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ edition = "2021"
license = "MIT"
name = "swc-plugin-coverage"
repository = "https://github.com/kwonoj/swc-coverage-instrument"
version = "0.0.20"
version = "0.0.21"

[lib]
crate-type = ["cdylib"]

[dependencies]
serde_json = { workspace = true }
swc-coverage-instrument = { version = "0.0.20", path = "../swc-coverage-instrument" }
swc-coverage-instrument = { workspace = true }
swc_core = { workspace = true, features = ["ecma_plugin_transform"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt"] }
2 changes: 1 addition & 1 deletion spec/swc-coverage-custom-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ napi-derive = { version = "2.12.3", default-features = false, features = [
] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = { version = "1.0.96", features = ["unbounded_depth"] }
swc-coverage-instrument = { version = "0.0.20", path = "../../packages/swc-coverage-instrument" }
swc-coverage-instrument = { version = "0.0.21", path = "../../packages/swc-coverage-instrument" }

swc_core = { version = "0.90.7", features = [
"common_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion spec/swc-coverage-instrument-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ serde = { workspace = true, features = ["derive"] }
serde-wasm-bindgen = { workspace = true }
wasm-bindgen = { workspace = true, features = ["serde-serialize"] }

swc-coverage-instrument = { version = "0.0.20", path = "../../packages/swc-coverage-instrument" }
swc-coverage-instrument = { workspace = true }

0 comments on commit 6438b88

Please sign in to comment.