Commit 24dd18c0 authored by Thomas McDonald's avatar Thomas McDonald
Browse files

Merge pull request #135 from twbs/force-expanded

specify expanded output style for generated css with libsass
parents 317c667d b84bb4e2
Showing with 1397 additions and 804 deletions
+1397 -804
...@@ -38,7 +38,7 @@ module.exports = function (grunt) { ...@@ -38,7 +38,7 @@ module.exports = function (grunt) {
banner: '/*!\n' + banner: '/*!\n' +
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + ' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' + ' * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n' +
' */\n', ' */\n',
jqueryCheck: 'if (typeof jQuery === \'undefined\') {\n' + jqueryCheck: 'if (typeof jQuery === \'undefined\') {\n' +
' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\')\n' + ' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\')\n' +
......
This diff is collapsed.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This diff is collapsed.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This diff is collapsed.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This diff is collapsed.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -8,7 +8,8 @@ module.exports = function configureLibsass(grunt) { ...@@ -8,7 +8,8 @@ module.exports = function configureLibsass(grunt) {
includePaths: ['scss'], includePaths: ['scss'],
precision: 6, precision: 6,
sourceComments: false, sourceComments: false,
sourceMap: true sourceMap: true,
outputStyle: 'expanded'
}, },
core: { core: {
files: { files: {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment