From 0e7f871961fb47e67226b7524f58658a1982ca6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Tue, 14 Jun 2022 15:43:13 +0900 Subject: [PATCH] chore: Publish `v1.2.202` --- Cargo.lock | 2 +- Cargo.toml | 8 ++++---- crates/binding_core_wasm/Cargo.toml | 26 +++++++++++++------------- package.json | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66b12109617..5edabe9a62d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,7 +200,7 @@ dependencies = [ [[package]] name = "binding_core_wasm" -version = "1.2.201" +version = "1.2.202" dependencies = [ "anyhow", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index 7562d53239a..2b38c874857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ members = [ ] [profile.release] -lto = true +# lto = true # We use CARGO_PROFILE_RELEASE_LTO for production builds # lto = "fat" @@ -32,8 +32,8 @@ lto = true # opt-level = 'z' [profile.bench] -lto = true debug = true +lto = true # Without this, printing diff consumes more than a minute. @@ -44,5 +44,5 @@ opt-level = 3 opt-level = 3 [patch.crates-io] -cranelift-codegen = { git = "https://github.com/kdy1/wasmtime", branch = "tls" } -cranelift-entity = { git = "https://github.com/kdy1/wasmtime", branch = "tls" } +cranelift-codegen = {git = "https://github.com/kdy1/wasmtime", branch = "tls"} +cranelift-entity = {git = "https://github.com/kdy1/wasmtime", branch = "tls"} diff --git a/crates/binding_core_wasm/Cargo.toml b/crates/binding_core_wasm/Cargo.toml index 151c5b2a74f..27e5598e3ff 100644 --- a/crates/binding_core_wasm/Cargo.toml +++ b/crates/binding_core_wasm/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" name = "binding_core_wasm" publish = false repository = "https://github.com/swc-project/swc.git" -version = "1.2.201" +version = "1.2.202" [lib] bench = false @@ -30,23 +30,23 @@ plugin = [ [dependencies] anyhow = "1.0.42" console_error_panic_hook = "0.1.6" -js-sys = { version = "0.3.56", optional = true } +js-sys = {version = "0.3.56", optional = true} once_cell = "1.10.0" parking_lot_core = "0.9.1" path-clean = "0.1" -serde = { version = "1", features = ["derive"] } +serde = {version = "1", features = ["derive"]} serde_json = "1" -swc = { path = "../swc" } -swc_common = { path = "../swc_common", features = ["perf"] } -swc_ecma_lints = { path = "../swc_ecma_lints", features = [ +swc = {path = "../swc"} +swc_common = {path = "../swc_common", features = ["perf"]} +swc_ecma_lints = {path = "../swc_ecma_lints", features = [ "non_critical_lints", -] } -swc_ecmascript = { path = "../swc_ecmascript" } -swc_plugin_runner = { path = "../swc_plugin_runner", default-features = false, optional = true } -tracing = { version = "0.1.32", features = ["release_max_level_off"] } -wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } -wasmer = { version = "2.3.0", optional = true, default-features = false } -wasmer-wasi = { version = "2.3.0", optional = true, default-features = false } +]} +swc_ecmascript = {path = "../swc_ecmascript"} +swc_plugin_runner = {path = "../swc_plugin_runner", default-features = false, optional = true} +tracing = {version = "0.1.32", features = ["release_max_level_off"]} +wasm-bindgen = {version = "0.2", features = ["serde-serialize"]} +wasmer = {version = "2.3.0", optional = true, default-features = false} +wasmer-wasi = {version = "2.3.0", optional = true, default-features = false} [package.metadata.wasm-pack.profile.release] wasm-opt = false diff --git a/package.json b/package.json index 68bde6bc105..ae3d382ab7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@swc/core", - "version": "1.2.201", + "version": "1.2.202", "description": "Super-fast alternative for babel", "homepage": "https://swc.rs", "main": "./index.js",