diff options
| author | Mark Otto <[email protected]> | 2013-12-18 13:06:47 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-18 13:06:47 -0800 |
| commit | 5bba8744679ddead8673c003997410c71fc47000 (patch) | |
| tree | 7cb520f428a788652871240a19a9fcc401ecf9f6 /Gruntfile.js | |
| parent | 6315043b1c11c6391f155e0c7299783a13cfee74 (diff) | |
| parent | 3f577ab86c4e07493d5d24f5fdd3dba30c199400 (diff) | |
| download | bootstrap-5bba8744679ddead8673c003997410c71fc47000.tar.xz bootstrap-5bba8744679ddead8673c003997410c71fc47000.zip | |
Merge branch 'master' into docs_derp
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 5ba8abbfb..ab4b56cd2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -113,12 +113,27 @@ module.exports = function (grunt) { }, less: { - compile: { + compileCore: { options: { - strictMath: true + strictMath: true, + sourceMap: true, + outputSourceFiles: true, + sourceMapURL: '<%= pkg.name %>.css.map', + sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map' + }, + files: { + 'dist/css/<%= pkg.name %>.css': 'less/bootstrap.less' + } + }, + compileTheme: { + options: { + strictMath: true, + sourceMap: true, + outputSourceFiles: true, + sourceMapURL: '<%= pkg.name %>-theme.css.map', + sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map' }, files: { - 'dist/css/<%= pkg.name %>.css': 'less/bootstrap.less', 'dist/css/<%= pkg.name %>-theme.css': 'less/theme.less' } }, |
