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

chore: reorder crates features list #918

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 5 additions & 4 deletions .taplo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ include = ["Cargo.toml", "crates/*/*.toml"]
align_entries = true
allowed_blank_lines = 1
column_width = 120
reorder_arrays = true
reorder_keys = true

# Do not reorder keys and arrays within `package or `bin`.
[[rule]]
keys = ["dependencies", "*-dependencies", "workspace.dependencies", "workspace.*-dependencies","target.*.dependencies", "target.*.*-dependencies"]

[rule.formatting]
reorder_keys = true
formatting = {reorder_arrays = false, reorder_keys = false}
keys = ["bin", "package"]
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ $ just ready-lite
Test.

```bash
$ pnpm playwright install # only need to run before the first time you run "jest test"
$ just test
# test specified testcase
$ cargo nextest run transformers::transform_try_resolve::tests
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["crates/*"]
resolver = "2"

[workspace.dependencies]
cached = "0.46.1"
Expand Down
44 changes: 22 additions & 22 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,39 +8,39 @@ license = "MIT"
[dependencies]
swc_core = { workspace = true, features = [
"__ecma",
"__visit",
"__utils",
"__ecma_plugin_transform",
"__ecma_transforms",
"__parser",
"__testing_transform",
"__utils",
"__visit",
"base_node",
"common_concurrent",
"common_sourcemap",
"common_tty",
"css_ast",
"css_codegen",
"css_compat",
"css_minifier",
"css_modules",
"css_parser",
"css_prefixer",
"css_utils",
"css_visit",
"css_visit_path",
"ecma_ast",
"__ecma_plugin_transform",
"ecma_codegen",
"ecma_quote",
"ecma_minifier",
"common_concurrent",
"common_tty",
"common_sourcemap",
"ecma_minifier_concurrent",
"ecma_transforms_react",
"ecma_preset_env",
"ecma_quote",
"ecma_transforms_compat",
"ecma_transforms_module",
"ecma_transforms_optimization",
"ecma_transforms_proposal",
"ecma_transforms_react",
"ecma_transforms_typescript",
"ecma_transforms_compat",
"__testing_transform",
"ecma_visit_path",
"ecma_preset_env",
"css_ast",
"css_codegen",
"css_parser",
"css_utils",
"css_visit",
"css_visit_path",
"css_minifier",
"css_compat",
"css_modules",
"css_prefixer",
"base_node",
] }

swc_emotion = "0.51.0"
Expand Down
Loading