https://github.com/PressForward/pressforward
Revision 211fc36037ff49a58b6832c0f1640d195d7b3ac3 authored by Aram Zucker-Scharff on 07 January 2017, 19:59:14 UTC, committed by Aram Zucker-Scharff on 07 January 2017, 19:59:14 UTC
Item Author handling is causing issues on Nominate This items which are
never attached to a source.
1 parent 3618b10
Raw File
Tip revision: 211fc36037ff49a58b6832c0f1640d195d7b3ac3 authored by Aram Zucker-Scharff on 07 January 2017, 19:59:14 UTC
Assure post meta is added.
Tip revision: 211fc36
Gulpfile.js
'use strict';

var gulp = require( 'gulp' );
var sass = require( 'gulp-sass' );

gulp.task('sass', function() {
	return gulp.src( 'assets/sass/**/*.scss' )
		.pipe( sass() )
		.on( 'error', sass.logError )
		.pipe( gulp.dest( 'assets/css/' ) )
		.on('error', function(error) {
			console.log( error );
		});
});

// Watch task
gulp.task('default',function() {
	gulp.watch( 'assets/sass/**/*.scss',['sass'] );
});
back to top