refactor(css/prefixer): Rename crate (#4159)

This commit is contained in:
Donny/강동윤 2022-03-25 19:46:45 +09:00 committed by GitHub
parent 38d91471ab
commit 78175473fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
166 changed files with 22 additions and 20 deletions

View File

@ -287,7 +287,7 @@ jobs:
os: ubuntu-latest
- crate: swc_plugin_testing
os: windows-latest
- crate: swc_stylis
- crate: swc_css_prefixer
os: ubuntu-latest
- crate: swc_timer
os: ubuntu-latest

28
Cargo.lock generated
View File

@ -3221,6 +3221,20 @@ dependencies = [
"testing",
]
[[package]]
name = "swc_css_prefixer"
version = "0.99.3"
dependencies = [
"swc_atoms",
"swc_common",
"swc_css_ast",
"swc_css_codegen",
"swc_css_parser",
"swc_css_utils",
"swc_css_visit",
"testing",
]
[[package]]
name = "swc_css_utils"
version = "0.88.2"
@ -3935,20 +3949,6 @@ dependencies = [
name = "swc_plugin_testing"
version = "0.24.1"
[[package]]
name = "swc_stylis"
version = "0.99.3"
dependencies = [
"swc_atoms",
"swc_common",
"swc_css_ast",
"swc_css_codegen",
"swc_css_parser",
"swc_css_utils",
"swc_css_visit",
"testing",
]
[[package]]
name = "swc_timer"
version = "0.5.0"

View File

@ -5,6 +5,7 @@ members = [
"crates/swc_cli",
"crates/swc_css",
"crates/swc_css_lints",
"crates/swc_css_prefixer",
"crates/swc_ecmascript",
"crates/swc_ecma_lints",
"crates/swc_ecma_quote",
@ -13,7 +14,6 @@ members = [
"crates/swc_plugin_macro",
"crates/swc_plugin_runner",
"crates/swc_plugin_testing",
"crates/swc_stylis",
"crates/swc_timer",
"crates/swc_webpack_ast",
"crates/wasm",
@ -24,6 +24,7 @@ default-members = [
"crates/swc_cli",
"crates/swc_css",
"crates/swc_css_lints",
"crates/swc_css_prefixer",
"crates/swc_ecmascript",
"crates/swc_ecma_lints",
"crates/swc_ecma_quote",
@ -32,7 +33,6 @@ default-members = [
"crates/swc_plugin_macro",
"crates/swc_plugin_runner",
"crates/swc_plugin_testing",
"crates/swc_stylis",
"crates/swc_timer",
"crates/swc_webpack_ast",
]

View File

@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_stylis/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_stylis"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.3"

View File

@ -0,0 +1,3 @@
pub use self::prefixer::prefixer;
mod prefixer;

Some files were not shown because too many files have changed in this diff Show More