我想构建自己编译的css文件 使用源Less引导程序文件 在我的项目中,我正在使用mean.io堆栈。
如何在平均堆栈中集成更少?
我发现了很多工具 喜欢
https://www.npmjs.org/package/grunt-bootstrap
https://github.com/sindresorhus/grunt-recess
https://github.com/gruntjs/grunt-contrib-less
所以我有点困惑^^
我也很满意一些教程
我最终使用grunt-contrib-less
手动复制文件
/less/bootstrap.less /less/variables.less
在我的src文件夹即 SRC /更少
比我的grunt文件
less: {
bootstrap: {
options: {
strictMath: true,
sourceMap: true,
outputSourceFiles: true,
sourceMapURL: '<%= pkg.name %>.css.map',
sourceMapFilename: '<%= distdir %>/css/<%= pkg.name %>.css.map'
},
files: {
'<%= distdir %>/css/<%= pkg.name %>.css': '<%= src.src %>/less/bootstrap.less'
}
}
}
和我的变量。我可以做
//** Background color for `<body>`.
@body-bg: #F70E29;
//** Global text color on `<body>`.
@text-color: #F70E29;
我有最酷的bg体色:)