wip #727 - importing bootstrap

This commit is contained in:
Kevin Ross 2015-11-21 07:43:52 -06:00
parent fd732ee09d
commit cc59aab1ed
2 changed files with 9 additions and 1 deletions

View File

@ -42,6 +42,13 @@ module.exports = function (grunt) {
options: { options: {
replacements: [ replacements: [
// convert bootstrap imports
{ // https://regex101.com/r/bM6cP0/2
pattern: /bower_components\/(bootstrap\/less\/)/gi,
replacement: "bower_components\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/",
order: 2
},
// convert all shadow mixins // convert all shadow mixins
{ // https://regex101.com/r/sJ2lH4/1 { // https://regex101.com/r/sJ2lH4/1
pattern: /.shadow-z-(\d+)((?:-hover)?) {/gi, pattern: /.shadow-z-(\d+)((?:-hover)?) {/gi,

View File

@ -43,6 +43,7 @@
"license": "https://github.com/FezVrasta/bootstrap-material-design/blob/master/LICENSE.md", "license": "https://github.com/FezVrasta/bootstrap-material-design/blob/master/LICENSE.md",
"dependencies": { "dependencies": {
"jquery": "~2.1.1", "jquery": "~2.1.1",
"bootstrap": "~3.3.5" "bootstrap": "~3.3.5",
"bootstrap-sass": "~3.3.5"
} }
} }