Skip to content

Instantly share code, notes, and snippets.

@antwon
antwon / gulpfile.js
Last active December 5, 2015 06:32
(Gulp 3) Basic front-end starter kit. Compiles sass with sourcemaps, combines js, prefix-free styles, live reloads browser
// ----- Gulp ----- //
// Compiles sass with sourcemaps, combines js, auto prefixes styles, live reloads browser
// $ cd this-project
// $ npm install
// $ gulp
var gulp = require('gulp');
var autoprefixer = require('gulp-autoprefixer'), // No more -vendor-prefixes- :)
autoprefixerOptions = {
browsers: ['last 2 versions', '> 5%', 'Firefox ESR']
@antwon
antwon / gulpfile.js
Last active August 13, 2023 08:00
(Gulp 4) Basic gulpfile front-end starter kit
// ----- Gulp ----- //
// Compiles sass with sourcemaps, combines js, prefix-free styles, live reloads browser
// cd into your project and run 'gulp'
// compiles sass
// combines js
// prefix-free styles
// live reloads browser
var gulp = require('gulp'),