Skip to content

Commit

Permalink
build(cargo): Update swc_core to v0.90.0 (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 authored Feb 5, 2024
1 parent caa73e8 commit cc3526d
Show file tree
Hide file tree
Showing 55 changed files with 377 additions and 242 deletions.
164 changes: 83 additions & 81 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions packages/emotion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-emotion

## 2.5.117

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 2.5.116

### Patch Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/emotion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_emotion"
publish = false
version = "0.18.3"
version = "0.18.4"

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

[dependencies]
serde = "1"
serde_json = "1.0.79"
swc_common = { version = "0.33.14", features = ["concurrent"] }
swc_core = { version = "0.88.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.111.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_common = { version = "0.33.16", features = ["concurrent"] }
swc_core = { version = "0.90.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.112.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_emotion = { path = "./transform" }
swc_plugin_macro = "0.9.16"
swc_plugin_proxy = "0.40.0"
swc_plugin_proxy = "0.41.0"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
6 changes: 6 additions & 0 deletions packages/emotion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ Source code for plugin itself (not transforms) are copied from https://github.co
# @swc/plugin-emotion
## 2.5.117
### Patch Changes
- 8bd92c7: swc_core 0.90.x
## 2.5.116
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/emotion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-emotion",
"version": "2.5.116",
"version": "2.5.117",
"description": "SWC plugin for emotion css-in-js library",
"main": "swc_plugin_emotion.wasm",
"scripts": {
Expand Down
20 changes: 10 additions & 10 deletions packages/emotion/transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_emotion"
repository = "https://github.com/swc-project/plugins.git"
version = "0.72.2"
version = "0.72.3"

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

Expand All @@ -19,17 +19,17 @@ regex = "1.5"
serde = "1"
sourcemap = "6.0.1"
swc_atoms = "0.6.5"
swc_common = "0.33.14"
swc_ecma_ast = "0.111.0"
swc_ecma_codegen = "0.147.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_common = "0.33.16"
swc_ecma_ast = "0.112.0"
swc_ecma_codegen = "0.148.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_trace_macro = "0.1.3"
tracing = { version = "0.1.37" }

[dev-dependencies]
serde_json = "1"
swc_ecma_parser = "0.142.0"
swc_ecma_transforms_react = "0.182.0"
swc_ecma_transforms_testing = "0.139.0"
testing = "0.35.15"
swc_ecma_parser = "0.143.0"
swc_ecma_transforms_react = "0.183.0"
swc_ecma_transforms_testing = "0.140.0"
testing = "0.35.17"
6 changes: 6 additions & 0 deletions packages/jest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-jest

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/jest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_jest"
publish = false
version = "0.31.2"
version = "0.31.3"

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

[dependencies]
phf = { version = "0.10.0", features = ["macros"] }
serde = { version = "1.0.130", features = ["derive"] }
swc_common = { version = "0.33.14", features = ["concurrent"] }
swc_core = { version = "0.88.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.111.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_common = { version = "0.33.16", features = ["concurrent"] }
swc_core = { version = "0.90.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.112.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_plugin_macro = "0.9.16"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
6 changes: 6 additions & 0 deletions packages/jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# @swc/plugin-jest

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-jest",
"version": "1.5.114",
"version": "1.5.115",
"description": "SWC plugin for jest",
"main": "swc_plugin_jest.wasm",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/loadable-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-loadable-components

## 0.3.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 0.3.114

### Patch Changes
Expand Down
16 changes: 8 additions & 8 deletions packages/loadable-components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_loadable_components"
publish = false
version = "0.18.2"
version = "0.18.3"

[lib]
crate-type = ["cdylib", "rlib"]
Expand All @@ -14,14 +14,14 @@ crate-type = ["cdylib", "rlib"]
once_cell = "1.13.1"
regex = "1.6.0"
serde_json = "1.0.79"
swc_common = { version = "0.33.14", features = ["concurrent"] }
swc_core = { version = "0.88.0", features = ["ecma_quote", "ecma_plugin_transform"] }
swc_ecma_ast = "0.111.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_common = { version = "0.33.16", features = ["concurrent"] }
swc_core = { version = "0.90.0", features = ["ecma_quote", "ecma_plugin_transform"] }
swc_ecma_ast = "0.112.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_plugin_macro = "0.9.16"
swc_plugin_proxy = "0.40.0"
swc_plugin_proxy = "0.41.0"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }

[dev-dependencies]
testing = "0.35.15"
testing = "0.35.17"
6 changes: 6 additions & 0 deletions packages/loadable-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

# @swc/plugin-loadable-components

## 0.3.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 0.3.114

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/loadable-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-loadable-components",
"version": "0.3.114",
"version": "0.3.115",
"description": "SWC plugin for `@loadable/components`",
"main": "swc_plugin_loadable_components.wasm",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/noop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-noop

## 1.5.113

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.112

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/noop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_noop"
publish = false
version = "0.18.2"
version = "0.18.3"

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

[dependencies]
swc_common = { version = "0.33.14", features = ["concurrent"] }
swc_core = { version = "0.88.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.111.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_common = { version = "0.33.16", features = ["concurrent"] }
swc_core = { version = "0.90.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.112.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_plugin_macro = "0.9.16"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
6 changes: 6 additions & 0 deletions packages/noop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# @swc/plugin-noop

## 1.5.113

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.112

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/noop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-noop",
"version": "1.5.112",
"version": "1.5.113",
"description": "Noop SWC plugin, for debugging",
"main": "swc_plugin_noop.wasm",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/react-remove-properties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-react-remove-properties

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/react-remove-properties/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_react_remove_properties"
publish = false
version = "0.19.2"
version = "0.19.3"

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

[dependencies]
react_remove_properties = { path = "./transform" }
serde_json = "1.0.79"
swc_cached = "0.3.18"
swc_common = { version = "0.33.14", features = ["concurrent"] }
swc_core = { version = "0.88.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.111.0"
swc_ecma_utils = "0.126.0"
swc_ecma_visit = "0.97.0"
swc_cached = "0.3.19"
swc_common = { version = "0.33.16", features = ["concurrent"] }
swc_core = { version = "0.90.0", features = ["ecma_plugin_transform"] }
swc_ecma_ast = "0.112.0"
swc_ecma_utils = "0.127.0"
swc_ecma_visit = "0.98.0"
swc_plugin_macro = "0.9.16"
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
6 changes: 6 additions & 0 deletions packages/react-remove-properties/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ or

# @swc/plugin-react-remove-properties

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-remove-properties/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-react-remove-properties",
"version": "1.5.114",
"version": "1.5.115",
"description": "SWC plugin for https://www.npmjs.com/package/babel-plugin-react-remove-properties",
"main": "swc_plugin_react_remove_properties.wasm",
"scripts": {
Expand Down
18 changes: 9 additions & 9 deletions packages/react-remove-properties/transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ edition = "2021"
license = "Apache-2.0"
name = "react_remove_properties"
repository = "https://github.com/swc-project/plugins.git"
version = "0.24.2"
version = "0.24.3"

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

[dependencies]
serde = { version = "1", features = ["derive"] }
swc_atoms = "0.6.5"
swc_cached = "0.3.18"
swc_common = "0.33.14"
swc_ecma_ast = "0.111.0"
swc_ecma_visit = "0.97.0"
swc_cached = "0.3.19"
swc_common = "0.33.16"
swc_ecma_ast = "0.112.0"
swc_ecma_visit = "0.98.0"

[dev-dependencies]
swc_ecma_parser = "0.142.0"
swc_ecma_transforms_base = "0.136.0"
swc_ecma_transforms_testing = "0.139.0"
testing = "0.35.15"
swc_ecma_parser = "0.143.0"
swc_ecma_transforms_base = "0.137.0"
swc_ecma_transforms_testing = "0.140.0"
testing = "0.35.17"
6 changes: 6 additions & 0 deletions packages/relay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @swc/plugin-relay

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes
Expand Down
Loading

0 comments on commit cc3526d

Please sign in to comment.