Closed bryanforbes closed 6 years ago
Bug
Package Version: 3.0.0
Code
@keyframes fadeIn { // ... }
Expected behavior:
The task postcss:modules-dev transforms the above code to:
postcss:modules-dev
@keyframes filename__fadeIn__hash { // ... }
Actual behavior:
The above code is transformed to:
@keyframes a { // ... }
This causes @keyframes to overwrite each other.
@keyframes
Bug
Package Version: 3.0.0
Code
Expected behavior:
The task
postcss:modules-dev
transforms the above code to:Actual behavior:
The above code is transformed to:
This causes
@keyframes
to overwrite each other.