Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(styled-jsx): Fix namespace visitor #205

Merged
merged 35 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
66f2bd4
Add a test
kdy1 Aug 31, 2023
80547c4
I don't like `<panicked>`
kdy1 Aug 31, 2023
ca6cc4e
Add test output
kdy1 Aug 31, 2023
68ac1c0
Change order
kdy1 Aug 31, 2023
c464af0
log
kdy1 Aug 31, 2023
52c5434
Harden test input
kdy1 Sep 1, 2023
cae866a
dbg!
kdy1 Sep 1, 2023
139b20b
Update test refs using main
kdy1 Sep 1, 2023
724e1d6
Update test refs
kdy1 Sep 1, 2023
a08dc2c
Update test refs
kdy1 Sep 1, 2023
60e6138
reverse
kdy1 Sep 1, 2023
1b346df
Update test refs
kdy1 Sep 1, 2023
48d66f9
Update test refs
kdy1 Sep 1, 2023
5120e8b
Update test refs
kdy1 Sep 1, 2023
d134346
fix
kdy1 Sep 1, 2023
57ede8f
Remove debug!
kdy1 Sep 1, 2023
942baf2
Remove dbg!
kdy1 Sep 1, 2023
656d91d
Update swc crates
kdy1 Sep 1, 2023
29ba03b
Bump npm package: ./packages/constify
kdy1 Sep 1, 2023
829720d
Bump npm package: ./packages/emotion
kdy1 Sep 1, 2023
813d3dd
Bump npm package: ./packages/jest
kdy1 Sep 1, 2023
4ba1cc0
Bump npm package: ./packages/loadable-components
kdy1 Sep 1, 2023
743f55b
Bump npm package: ./packages/noop
kdy1 Sep 1, 2023
0f14cd6
Bump npm package: ./packages/relay
kdy1 Sep 1, 2023
ecfe16a
Bump npm package: ./packages/styled-components
kdy1 Sep 1, 2023
a38af2e
Bump npm package: ./packages/styled-jsx
kdy1 Sep 1, 2023
bd9c13c
Bump npm package: ./packages/transform-imports
kdy1 Sep 1, 2023
179d595
Bump cargo crate: modularize_imports
kdy1 Sep 1, 2023
04f0b42
Bump cargo crate: styled_components
kdy1 Sep 1, 2023
83f3526
Bump cargo crate: styled_jsx
kdy1 Sep 1, 2023
da9299e
Bump cargo crate: swc_constify
kdy1 Sep 1, 2023
0193e4b
Bump cargo crate: swc_emotion
kdy1 Sep 1, 2023
14eb0ae
Bump cargo crate: swc_relay
kdy1 Sep 1, 2023
f792b64
Revert
kdy1 Sep 1, 2023
cb7b4e6
cargo lockfile
kdy1 Sep 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 54 additions & 54 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions packages/constify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ version = "0.1.0"
crate-type = ["cdylib", "rlib"]

[dependencies]
swc_common = { version = "0.32.0", features = ["concurrent"] }
swc_core = { version = "0.82.1", features = [
swc_common = { version = "0.32.1", features = ["concurrent"] }
swc_core = { version = "0.82.10", features = [
"ecma_plugin_transform",
"ecma_utils",
"ecma_visit",
Expand Down
2 changes: 1 addition & 1 deletion packages/constify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/plugin-constify",
"version": "0.1.4",
"version": "0.1.5",
"description": "SWC plugin for optimization",
"main": "swc_plugin_constify.wasm",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions packages/constify/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_constify"
repository = "https://github.com/swc-project/plugins.git"
version = "0.4.0"
version = "0.5.0"

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

Expand All @@ -18,13 +18,13 @@ swc_core = { features = [
"ecma_ast",
"ecma_utils",
"ecma_visit",
], version = "0.82.1" }
], version = "0.82.10" }


[dev-dependencies]
serde_json = "1"
swc_core = { features = [
"testing_transform",
"ecma_parser",
], version = "0.82.1" }
testing = "0.34.0"
], version = "0.82.10" }
testing = "0.34.1"
4 changes: 2 additions & 2 deletions packages/emotion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
serde = "1"
serde_json = "1.0.79"
swc_common = { version = "0.32.0", features = ["concurrent"] }
swc_core = { version = "0.82.1", features = [
swc_common = { version = "0.32.1", features = ["concurrent"] }
swc_core = { version = "0.82.10", features = [
"ecma_plugin_transform",
"ecma_utils",
"ecma_visit",
Expand Down
Loading