我买了一个模板。如果我尝试使用预编译版本的引导程序编译它,一切都很好。
@import "bootstrap.css"; //Precompiled Bootstrap
@import "nifty/nifty.less"; //My theme
但是,如果我将编译 bootstrap less 变体,则某些颜色与预期不同:
@import "bootstrap/bootstrap.less"; //Same Version as above, but not precompiled
@import "nifty/nifty.less"; //My theme
有什么区别。dist
我应该如何编译引导程序,以在颜色方面与文件夹中的预编译变体具有完全相同的结果?
我需要这个,因为我需要将我的模板与Kendo UI一起编译,并且我的模板并未提供 Kendo UI Bootstrap Mapper 所需的每个主题变量。
这是我的吞咽任务:
gulp.task('theme',
function () {
return gulp.src('./Content/less/theme.less')
.pipe(plumber())
.pipe(less({
paths: [path.join(__dirname, 'less', 'includes')]
}))
.pipe(gulp.dest('./Content/theme'));
});