Skip to content

Instantly share code, notes, and snippets.

View alankent's full-sized avatar

Alan Kent alankent

View GitHub Profile
@kayintveen
kayintveen / gulpfile.js
Created January 26, 2016 10:53
Gulp with Livereload for Magento2, the only reason i wanted to use this is due to the speed of the current grunt way, i actually still use grunt for several tasks, but just the watching and generating of css files i think Gulp is the way to go. only downside is that you need to add your less files by hand. http://www.microdesign.nl
// Gulpfile for Magento 2 with livereload
// Author: Kay in 't Veen - Microdesign.nl
//
//
// Load gulp and plug-ins
var gulp = require('gulp'),
jshint = require('gulp-jshint'),
less = require('gulp-less'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),