refactor: Flatten more packages (#2706)

This commit is contained in:
Donny/강동윤 2021-11-10 16:39:01 +09:00 committed by GitHub
parent 158136fae9
commit 4f70ee6d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
628 changed files with 144 additions and 144 deletions

View File

@ -42,7 +42,7 @@ jobs:
- name: Check swc_common
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
run: |

View File

@ -5,7 +5,7 @@ members = [
"ecmascript",
"crates/swc_ecma_plugin_ast",
"crates/swc_babel_compat",
"ecmascript/jsdoc",
"crates/jsdoc",
"crates/node",
"crates/swc_plugin",
"crates/swc_plugin_runner",

View File

@ -16,7 +16,7 @@ darling = "0.10"
pmutil = "0.5.1"
proc-macro2 = "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]
features = ["derive", "fold", "parsing", "printing"]

View File

@ -14,7 +14,7 @@ proc-macro = true
[dependencies]
pmutil = "0.5.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]
features = ["full", "parsing", "printing", "extra-traits"]

View File

@ -14,7 +14,7 @@ proc-macro = true
[dependencies]
pmutil = "0.5.3"
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]
features = ["derive", "fold", "parsing", "printing"]

View File

@ -12,13 +12,13 @@ version = "0.46.0"
[dependencies]
nom = "5.1.2"
serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.2", path = "../../atoms"}
swc_common = {version = "0.14.0", path = "../../common"}
swc_atoms = {version = "0.2", path = "../swc_atoms"}
swc_common = {version = "0.14.0", path = "../swc_common"}
[dev-dependencies]
anyhow = "1"
dashmap = "4.0.2"
swc_ecma_ast = {version = "0.57.0", path = "../ast"}
swc_ecma_parser = {version = "0.77.0", path = "../parser"}
testing = {version = "0.15.0", path = "../../testing"}
swc_ecma_ast = {version = "0.57.0", path = "../../ecmascript/ast"}
swc_ecma_parser = {version = "0.77.0", path = "../../ecmascript/parser"}
testing = {version = "0.15.0", path = "../testing"}
walkdir = "2"

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