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