Update compiler.js (#712)

This commit is contained in:
leixuesong 2018-10-09 10:57:57 +08:00 committed by neverland
parent 8ed16151f7
commit 351866500e

View File

@ -23,7 +23,7 @@ gulp.task('compile-less', () => {
.pipe(postcss())
.pipe(cssmin())
.pipe(insert.transform((contents, file) => {
if (!file.path.includes('packages/common')) {
if (!file.path.includes('packages'+ path.sep +'common')) {
contents = `@import '../common/index.wxss';` + contents;
}
return contents;