postcss-animation icon indicating copy to clipboard operation
postcss-animation copied to clipboard

Issue with partial @import

Open asifshirazi opened this issue 9 years ago • 0 comments

I'm using PreCSS pack for import. Let me briefly explain what is happening with me. When I run my gulp task it will adds @keyframes only for the first file.

_partial.pcss

.foo {
    animation: bounce 1s;
}

app.pcss

@import "partial";
h1 {
    font-size: 1.5em;
}

style.pcss

@import "partial";
p {
    margin: 0;
}

In my case it will adds .foo keyframes only in app.css and ignores rest of the files.

asifshirazi avatar Sep 02 '16 05:09 asifshirazi