postcss-partial-import
postcss-partial-import copied to clipboard
Doesn't work for nested `@import`s
main.pcss:
@import 'foo';
body {
@import 'bar';
}
_foo.pcss:
p {
color: red;
}
_bar.pcss:
button {
color: blue;
}
Output:
p {
color: red;
}
body {
@import 'bar';
}
Who knows what plugin can solve this problem? I bump into this, when importing from vue component.