7

我想使用源 Less bootstrap 文件构建我自己编译的 css 文件在我的项目中,我使用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/less

比在我的 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'
                }
            }
        }

在我的 variables.less 我可以做

//** Background color for `<body>`.
@body-bg:               #F70E29;
//** Global text color on `<body>`.
@text-color:            #F70E29;

而且我拥有有史以来最酷的 bg 车身颜色 :)

4

0 回答 0