Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/scss/gulp/gulpfile.js')
-rw-r--r--examples/scss/gulp/gulpfile.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/scss/gulp/gulpfile.js b/examples/scss/gulp/gulpfile.js
deleted file mode 100644
index 62c60de..0000000
--- a/examples/scss/gulp/gulpfile.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-
-const gulp = require('gulp'),
- sass = require('gulp-sass');
-
-gulp.task('build', function () {
- return gulp.src('./src/**/*.scss')
- .pipe(sass().on('error', sass.logError))
- .pipe(gulp.dest('./dest'));
-});
-
-gulp.task('watch', function () {
- gulp.watch('./src/**/*.scss', ['build']);
-});