Created
November 23, 2018 14:55
-
-
Save moonglum/85bd5eeefa0b8aa685dff251091bb684 to your computer and use it in GitHub Desktop.
Bootstrap faucet starter kit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
sass: [{ | |
source: "./index.scss", | |
target: "./dist/bootstrap.css" | |
}] | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// only import the files you need, comment out the other ones | |
@import "bootstrap/scss/functions"; | |
@import "bootstrap/scss/variables"; | |
@import "bootstrap/scss/mixins"; | |
@import "bootstrap/scss/root"; | |
@import "bootstrap/scss/reboot"; | |
@import "bootstrap/scss/type"; | |
// @import "bootstrap/scss/images"; | |
// @import "bootstrap/scss/code"; | |
// @import "bootstrap/scss/grid"; | |
// @import "bootstrap/scss/tables"; | |
// @import "bootstrap/scss/forms"; | |
// @import "bootstrap/scss/buttons"; | |
// @import "bootstrap/scss/transitions"; | |
// @import "bootstrap/scss/dropdown"; | |
// @import "bootstrap/scss/button-group"; | |
// @import "bootstrap/scss/input-group"; | |
// @import "bootstrap/scss/custom-forms"; | |
// @import "bootstrap/scss/nav"; | |
// @import "bootstrap/scss/navbar"; | |
// @import "bootstrap/scss/card"; | |
// @import "bootstrap/scss/breadcrumb"; | |
// @import "bootstrap/scss/pagination"; | |
// @import "bootstrap/scss/badge"; | |
// @import "bootstrap/scss/jumbotron"; | |
// @import "bootstrap/scss/alert"; | |
// @import "bootstrap/scss/progress"; | |
// @import "bootstrap/scss/media"; | |
// @import "bootstrap/scss/list-group"; | |
// @import "bootstrap/scss/close"; | |
// @import "bootstrap/scss/modal"; | |
// @import "bootstrap/scss/tooltip"; | |
// @import "bootstrap/scss/popover"; | |
// @import "bootstrap/scss/carousel"; | |
// @import "bootstrap/scss/utilities"; | |
// @import "bootstrap/scss/print"; | |
// optional: your own CSS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"compile": "faucet" | |
}, | |
"dependencies": { | |
"bootstrap": "^4.1.3" | |
}, | |
"devDependencies": { | |
"faucet-pipeline-sass": "^1.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment