Commit b9b88088 authored by Mattia Migliorini's avatar Mattia Migliorini

#1: use import paths for third party SASS files inclusion

parent 068d2de8
...@@ -24,7 +24,9 @@ var autoprefixer = require("autoprefixer"); ...@@ -24,7 +24,9 @@ var autoprefixer = require("autoprefixer");
gulp.task("sass", function() { gulp.task("sass", function() {
return gulp.src("scss/build.scss") return gulp.src("scss/build.scss")
.pipe(sass().on("error", sass.logError)) .pipe(sass({
includePaths: ['node_modules']
}).on("error", sass.logError))
.pipe(postcss([autoprefixer()])) .pipe(postcss([autoprefixer()]))
.pipe(gulp.dest(".")); .pipe(gulp.dest("."));
}); });
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<http://www.gnu.org/licenses/>. <http://www.gnu.org/licenses/>.
*/ */
@import '../node_modules/ubuntu-vanilla-theme/scss/theme'; @import 'ubuntu-vanilla-theme/scss/theme';
@import 'vanilla-theme'; @import 'vanilla-theme';
@include ubuntuit-vanilla-theme; @include ubuntuit-vanilla-theme;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment