mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
refactor: Flatten more packages (#2706)
This commit is contained in:
parent
158136fae9
commit
4f70ee6d98
2
.github/workflows/compilation.yml
vendored
2
.github/workflows/compilation.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Check swc_common
|
- name: Check swc_common
|
||||||
run: |
|
run: |
|
||||||
(cd common && cargo hack check --feature-powerset --no-dev-deps)
|
(cd crates/swc_common && cargo hack check --feature-powerset --no-dev-deps)
|
||||||
|
|
||||||
- name: Check swc_ecma_ast
|
- name: Check swc_ecma_ast
|
||||||
run: |
|
run: |
|
||||||
|
@ -5,7 +5,7 @@ members = [
|
|||||||
"ecmascript",
|
"ecmascript",
|
||||||
"crates/swc_ecma_plugin_ast",
|
"crates/swc_ecma_plugin_ast",
|
||||||
"crates/swc_babel_compat",
|
"crates/swc_babel_compat",
|
||||||
"ecmascript/jsdoc",
|
"crates/jsdoc",
|
||||||
"crates/node",
|
"crates/node",
|
||||||
"crates/swc_plugin",
|
"crates/swc_plugin",
|
||||||
"crates/swc_plugin_runner",
|
"crates/swc_plugin_runner",
|
||||||
|
@ -16,7 +16,7 @@ darling = "0.10"
|
|||||||
pmutil = "0.5.1"
|
pmutil = "0.5.1"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
quote = "1"
|
quote = "1"
|
||||||
swc_macros_common = {version = "0.3.2", path = "../common"}
|
swc_macros_common = {version = "0.3.2", path = "../swc_macros_common"}
|
||||||
|
|
||||||
[dependencies.syn]
|
[dependencies.syn]
|
||||||
features = ["derive", "fold", "parsing", "printing"]
|
features = ["derive", "fold", "parsing", "printing"]
|
@ -14,7 +14,7 @@ proc-macro = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
pmutil = "0.5.1"
|
pmutil = "0.5.1"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
swc_macros_common = {version = "0.3.2", path = "../common"}
|
swc_macros_common = {version = "0.3.2", path = "../swc_macros_common"}
|
||||||
|
|
||||||
[dependencies.syn]
|
[dependencies.syn]
|
||||||
features = ["full", "parsing", "printing", "extra-traits"]
|
features = ["full", "parsing", "printing", "extra-traits"]
|
@ -14,7 +14,7 @@ proc-macro = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
pmutil = "0.5.3"
|
pmutil = "0.5.3"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
swc_macros_common = {version = "0.3.2", path = "../common"}
|
swc_macros_common = {version = "0.3.2", path = "../swc_macros_common"}
|
||||||
|
|
||||||
[dependencies.syn]
|
[dependencies.syn]
|
||||||
features = ["derive", "fold", "parsing", "printing"]
|
features = ["derive", "fold", "parsing", "printing"]
|
@ -12,13 +12,13 @@ version = "0.46.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
nom = "5.1.2"
|
nom = "5.1.2"
|
||||||
serde = {version = "1", features = ["derive"]}
|
serde = {version = "1", features = ["derive"]}
|
||||||
swc_atoms = {version = "0.2", path = "../../atoms"}
|
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
||||||
swc_common = {version = "0.14.0", path = "../../common"}
|
swc_common = {version = "0.14.0", path = "../swc_common"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
dashmap = "4.0.2"
|
dashmap = "4.0.2"
|
||||||
swc_ecma_ast = {version = "0.57.0", path = "../ast"}
|
swc_ecma_ast = {version = "0.57.0", path = "../../ecmascript/ast"}
|
||||||
swc_ecma_parser = {version = "0.77.0", path = "../parser"}
|
swc_ecma_parser = {version = "0.77.0", path = "../../ecmascript/parser"}
|
||||||
testing = {version = "0.15.0", path = "../../testing"}
|
testing = {version = "0.15.0", path = "../testing"}
|
||||||
walkdir = "2"
|
walkdir = "2"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user