Skip to content

Instantly share code, notes, and snippets.

View nobiart's full-sized avatar

Dmitri Besleaga nobiart

View GitHub Profile
@nobiart
nobiart / webstoemp-gulpfile.js
Created September 5, 2020 16:10 — forked from jeromecoupe/webstoemp-gulpfile.js
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"use strict";
// Load plugins
const autoprefixer = require("autoprefixer");
const browsersync = require("browser-sync").create();
const cp = require("child_process");
const cssnano = require("cssnano");
const del = require("del");
const eslint = require("gulp-eslint");
const gulp = require("gulp");