手写笔加载器缓存错误
测试步骤:
git clone https://github.com/jordansexton/stylus-loader-cache-bug.git
cd stylus-loader-cache-bug
npm install
webpack
预期输出(dest/index.css):
. home-header {
background : # f00 ;
}
. page-header {
background : # 00f ;
}
实际输出(dest/index.css):
. page-header {
background : # 00f ;
}
. page-header {
background : # 00f ;
}
/*
* sometimes this is .home-header { ... } dependin
1