PostCSS Nested is a PostCSS plugin that unwraps nested CSS rules to match Sass-like syntax. It helps transform nested selectors into flattened CSS, including support for options like bubbling certain at-rules (such as @media) and unwrapping specific at-rules.
Project status
- The repository appears to be actively maintained at least in terms of ongoing development activity (recent upstream push dated 2026-04-21), but the provided recent published updates stop at postcss-nested 7.0.2 (2024-11-01).
- Apparent update frequency looks low, with multiple releases clustered in late Oct to Nov 2024 (7.0.0 on 2024-10-29, 7.0.1 on 2024-10-31, 7.0.2 on 2024-11-01) and no further published updates shown after that.
AI summary generated Today
Recent updates
7.0.2
11/1/2024Release 7.0.2 only claims one change: fixing a nested selector regression. The code diff shows the fix is implemented by refactoring the internal selector/comment “break out” logic and adding new test coverage around attached comments.
7.0.1
10/31/2024Release 7.0.1 claims to fix a RegExp-related issue involving nested comments. The code change in index.js adjusts the comment unwrapping logic used during selector/comment relocation, and it adds test coverage for comments containing RegExp-special characters.
7.0.0
10/29/2024postcss-nested 7.0.0 updates the plugin logic around moving comments when unwrapping nested rules, making the decision process more selective. It also raises the minimum supported Node.js version and modernizes the project tooling and CI.
Breaking