miaow-css-pack

2.1.0 • Public • Published

miaow-css-pack

Miaow的CSS打包工具,以@import为打包关键字

使用效果

/* foo.css */
@import "bar.css" ;
@import "baz.css" print;
 
.foo {
  color: black;
}
 
/* bar.css */
.bar {
  color: red;
}
 
.bar::before {
  content: 'hello';
}
 
.bar::after {
  content: 'world';
}
 
/* 处理后 */
/* foo.css */
.bar {
  color: red;
}
 
.bar::before {
  content: 'hello';
}
 
.bar::after {
  content: 'world';
}
@import "baz.css" print;
 
.foo {
  color: black;
}

Readme

Keywords

Package Sidebar

Install

npm i miaow-css-pack

Weekly Downloads

11

Version

2.1.0

License

MIT

Last publish

Collaborators

  • anhulife