Skip to content

Commit

Permalink
获取数据
Browse files Browse the repository at this point in the history
  • Loading branch information
deepred5 committed Feb 19, 2019
1 parent 5fa00f6 commit ad57a75
Show file tree
Hide file tree
Showing 11 changed files with 4,000 additions and 107 deletions.
14 changes: 14 additions & 0 deletions gulpfile.js
@@ -0,0 +1,14 @@
const gulp = require('gulp');
const sass = require('gulp-sass');

gulp.task('sass', function () {
return gulp.src('./src/template/scss/**/*.scss')
.pipe(sass({ outputStyle: 'compressed' }).on('error', sass.logError))
.pipe(gulp.dest('./src/template/css'));
});

gulp.task('watch', function () {
gulp.watch('./src/template/scss/**/*.scss', gulp.series('sass'));
});

gulp.task('default', gulp.series('sass', 'watch'));

0 comments on commit ad57a75

Please sign in to comment.