Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: gulpfile.js

Issue 29442559: [Demo] Issue 4961 - Fix card group field alignment on acceptableads.com (Closed)
Patch Set: Created May 19, 2017, 5:30 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « css/main.css ('k') | index.html » ('j') | scss/main.scss » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 var gulp = require('gulp');
2 var sass = require('gulp-sass');
3
4 gulp.task('sass', function () {
5 gulp.src('./scss/main.scss')
6 .pipe(sass().on('error', sass.logError))
7 .pipe(gulp.dest('./css'));
8 });
9
10 gulp.task('watch', function () {
11 gulp.watch('./scss/*.scss', ['sass']);
12 });
13
14 gulp.task('default', ['sass', 'watch']);
OLDNEW
« no previous file with comments | « css/main.css ('k') | index.html » ('j') | scss/main.scss » ('J')

Powered by Google App Engine
This is Rietveld