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(postcss_configs): support for resolve postcss.config.json file #6651

Merged
merged 5 commits into from
Feb 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/turbopack-node/src/transforms/postcss.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@
".config/postcssrc.js",
".config/postcssrc.mjs",
".config/postcssrc.cjs",
"postcss.config.js",

Check failure on line 78 in crates/turbopack-node/src/transforms/postcss.rs

View workflow job for this annotation

GitHub Actions / Rust lints

Diff in /root/actions-runner/_work/turbo/turbo/crates/turbopack-node/src/transforms/postcss.rs
"postcss.config.mjs",
"postcss.config.cjs",
"postcss.config.json"
]
.into_iter()
.map(ToOwned::to_owned)
Expand Down