diff options
| -rw-r--r-- | gulpfile.js | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/gulpfile.js b/gulpfile.js index 1f9ddb6..56fd6b7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,27 +17,9 @@ gulp.task('styles', () => { .pipe(gulp.dest('themes')) }) -/* - Compiles a more robust version of each theme (full) - A separate task was created to aid in compiling both versions. -*/ -gulp.task('styles-full', () => { - const partial = '@import "../@theme-base/full";'; - const anchor = `// ${partial}`; - return gulp.src([themesPath, ...ignoredFiles]) - .pipe(replace(anchor, partial)) - .pipe(sass().on('error', sass.logError)) - .pipe(rename({ - suffix: "_full" - })) - .pipe(gulp.dest('themes')) -}) - - /* Lists tasks to be used by watch and build commands. */ const series = [ - 'styles', - 'styles-full' + 'styles' ] /* Registers changes in scrips and sass files. */ |
