This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
gulp.task('default', function() { | |
// place code for your default task here | |
console.log('Hello World'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// load packages | |
var browserslist = require('browserslist'); | |
var gulp = require('gulp'); | |
var gulpAutoprefixer = require('gulp-autoprefixer'); | |
var gulpLess = require('gulp-less'); | |
var gulpMinifyCss = require('gulp-minify-css'); | |
// browsers for which autoprefix will add prefixes | |
var browsers = '> 1%, last 2 versions, IE >= 8, Firefox ESR, Opera 12.1'; |