From 1e5ce1e1a9ff3959d9772777b0b1f45a9d972768 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 18 Jan 2015 14:53:06 -0800 Subject: [PATCH] Temporarily revert "Rename scss/bootstrap.scss -> scss/_bootstrap.scss" This reverts commit 2916ac43ed57baacc49d2cc7550b8d1dfe87b261. This reverts commit 3d635f30795deb11ee7feaea5595b78c70221389. This reverts commit 61a21205575aa03b4fbbacee2052d20bf75941d4. This change broke the Grunt build. --- bower.json | 2 +- grunt/bs-sass-compile/libsass.js | 2 +- grunt/bs-sass-compile/sass.js | 2 +- package.json | 2 +- scss/{_bootstrap.scss => bootstrap.scss} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename scss/{_bootstrap.scss => bootstrap.scss} (100%) diff --git a/bower.json b/bower.json index 903c71d81b..ef98190e6a 100644 --- a/bower.json +++ b/bower.json @@ -14,7 +14,7 @@ ], "homepage": "http://getbootstrap.com", "main": [ - "scss/_bootstrap.scss", + "scss/bootstrap.scss", "dist/css/bootstrap.css", "dist/js/bootstrap.js" ], diff --git a/grunt/bs-sass-compile/libsass.js b/grunt/bs-sass-compile/libsass.js index c698536036..e3d13a989f 100644 --- a/grunt/bs-sass-compile/libsass.js +++ b/grunt/bs-sass-compile/libsass.js @@ -12,7 +12,7 @@ module.exports = function configureLibsass(grunt) { }, core: { files: { - 'dist/css/<%= pkg.name %>.css': 'scss/_<%= pkg.name %>.scss' + 'dist/css/<%= pkg.name %>.css': 'scss/<%= pkg.name %>.scss' } }, docs: { diff --git a/grunt/bs-sass-compile/sass.js b/grunt/bs-sass-compile/sass.js index ba6e6147a4..d7743515d8 100644 --- a/grunt/bs-sass-compile/sass.js +++ b/grunt/bs-sass-compile/sass.js @@ -15,7 +15,7 @@ module.exports = function configureRubySass(grunt) { core: { options: options, files: { - 'dist/css/<%= pkg.name %>.css': 'scss/_<%= pkg.name %>.scss' + 'dist/css/<%= pkg.name %>.css': 'scss/<%= pkg.name %>.scss' } }, docs: { diff --git a/package.json b/package.json index b2b48efd2e..c6295a0797 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "test": "grunt test" }, "style": "dist/css/bootstrap.css", - "sass": "scss/_bootstrap.scss", + "sass": "scss/bootstrap.scss", "main": "./dist/js/npm", "repository": { "type": "git", diff --git a/scss/_bootstrap.scss b/scss/bootstrap.scss similarity index 100% rename from scss/_bootstrap.scss rename to scss/bootstrap.scss