2.1.0 • Published 8 years ago

miaow-css-pack v2.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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;
}
2.1.0

8 years ago

2.0.1

9 years ago

2.0.0

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago