Skip to content

Commit 7837306

Browse files
committed
set explicit file paths for scss
1 parent ed77ba1 commit 7837306

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

css/creative.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Start Bootstrap - Creative v5.1.2 (https://startbootstrap.com/template-overviews/creative)
2+
* Start Bootstrap - Creative v5.1.3 (https://startbootstrap.com/template-overviews/creative)
33
* Copyright 2013-2019 Start Bootstrap
44
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-creative/blob/master/LICENSE)
55
*/

css/creative.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function css() {
7777
.pipe(plumber())
7878
.pipe(sass({
7979
outputStyle: "expanded",
80-
includePaths: "./node_modules/bootstrap/scss",
80+
includePaths: "./node_modules",
8181
}))
8282
.on("error", sass.logError)
8383
.pipe(autoprefixer({

js/creative.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "Creative",
33
"name": "startbootstrap-creative",
4-
"version": "5.1.2",
4+
"version": "5.1.3",
55
"scripts": {
66
"start": "gulp watch"
77
},

scss/creative.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Import custom variables (overrides Bootstrap default variables)
2-
@import "variables.scss";
2+
@import "./variables.scss";
33

44
// Import Bootstrap
5-
@import "bootstrap.scss";
5+
@import "bootstrap/scss/bootstrap.scss";
66

77
// Import custom styles
8-
@import "global.scss";
9-
@import "navbar.scss";
10-
@import "masthead.scss";
11-
@import "portfolio.scss";
8+
@import "./global.scss";
9+
@import "./navbar.scss";
10+
@import "./masthead.scss";
11+
@import "./portfolio.scss";

0 commit comments

Comments
 (0)