From f61a7fb2c9d46fa4715ba8154dd741254b55a06b Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Tue, 6 Dec 2016 23:28:41 +0100 Subject: [PATCH] Move Sass dependencies from `_vendor/scss` to `_vendor` --- gulp/tasks/customizer.js | 2 +- gulp/tasks/sass.js | 2 +- scss/foundation.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gulp/tasks/customizer.js b/gulp/tasks/customizer.js index 3685222a0..3dd2b5408 100644 --- a/gulp/tasks/customizer.js +++ b/gulp/tasks/customizer.js @@ -51,7 +51,7 @@ gulp.task('customizer:prepareSassDeps', function() { return gulp.src([ 'node_modules/@(normalize-scss)/sass/**/*.scss' ]) - .pipe(gulp.dest('_vendor/scss')); + .pipe(gulp.dest('_vendor')); }); // Creates a Sass file from the module/variable list and creates foundation.css and foundation.min.css diff --git a/gulp/tasks/sass.js b/gulp/tasks/sass.js index 83ca4759c..c98a7df06 100644 --- a/gulp/tasks/sass.js +++ b/gulp/tasks/sass.js @@ -18,7 +18,7 @@ gulp.task('sass', ['sass:foundation', 'sass:docs']); // Prepare dependencies gulp.task('sass:deps', function() { return gulp.src(CONFIG.SASS_DEPS_FILES) - .pipe(gulp.dest('_vendor/scss')); + .pipe(gulp.dest('_vendor')); }); // Compiles Foundation Sass diff --git a/scss/foundation.scss b/scss/foundation.scss index d0c58689c..5de33535a 100644 --- a/scss/foundation.scss +++ b/scss/foundation.scss @@ -6,7 +6,7 @@ */ // Dependencies -@import "../_vendor/scss/normalize-scss/sass/normalize"; +@import "../_vendor/normalize-scss/sass/normalize"; // Settings // import your own `settings` here or -- 2.47.2