Skip to main content
CSS-Tricks
  • Articles
  • Alamanac
  • Guides
  • Videos
  • Books
  • Newsletter
Search

Articles Tagged
gulp

10 Articles
{
,

}
Direct link to the article Run Gulp as You Open a VS Code Project
gulp terminal vs code

Run Gulp as You Open a VS Code Project

When I open my local project for this very site, there is a 100% chance that I need to run this command before anything else: gulp. I set that up fresh less than a year ago so I’m on …

Avatar of Chris Coyier
Chris Coyier on Oct 12, 2020
Direct link to the article Just Sharing My Gulpfile
gulp

Just Sharing My Gulpfile

Seemingly out of the blue, the Gulp processing I had set up for this site started to have a race condition. I’d run my watch command, change some CSS, and the processing would sometimes leave behind some extra files that …

Avatar of Chris Coyier
Chris Coyier on Dec 11, 2019
Direct link to the article Quick Gulp Cache Busting
cache gulp

Quick Gulp Cache Busting

You should for sure be setting far-out cache headers on your assets like CSS and JavaScript (and images and fonts and whatever else). That tells the browser “hang on to this file basically forever.” That way, when navigating from page …

Avatar of Chris Coyier
Chris Coyier on Aug 7, 2019
Direct link to the article Moving from Gulp to Parcel
bundling gulp webpack

Moving from Gulp to Parcel

Ben Frain just made some notes about the switch from Gulp to Parcel, a relatively new “web application bundler” which, from a quick look at things, is similar to webpack but without all the hassle of setting things up. …

Avatar of Robin Rendle
Robin Rendle on Apr 25, 2019
Direct link to the article Gulp for WordPress: Creating the Tasks
build tool gulp WordPress

Gulp for WordPress: Creating the Tasks

This is the second post in a two-part series about creating a Gulp workflow for WordPress theme development. Part one focused on the initial installation, setup, and organization of Gulp in a WordPress theme project. This post goes deep into …

Avatar of Ali Alaa
Ali Alaa on Dec 27, 2018 (Updated on Jan 6, 2019)
Direct link to the article Gulp for WordPress: Initial Setup
build tool gulp WordPress

Gulp for WordPress: Initial Setup

This is the first part of a two-part series on creating a Gulp workflow for WordPress theme development. This first part covers a lot of ground for the initial setup, including Gulp installation and an outline of the tasks we …

Avatar of Ali Alaa
Ali Alaa on Dec 26, 2018 (Updated on Aug 2, 2019)
Direct link to the article Annotated Build Processes
build tool gulp webpack

Annotated Build Processes

When you’re putting together a build process for a site, it’s so dang useful to look at other people’s processes. I ran across Andrew Welch’s “An Annotated webpack 4 Config for Frontend Web Development” the other day and was glad …

Avatar of Chris Coyier
Chris Coyier on Dec 14, 2018 (Updated on Dec 15, 2018)
Direct link to the article Combine Webpack with Gulp 4
build tool gulp webpack

Combine Webpack with Gulp 4

Webpack is so hot right now! Webpack is great when it comes to module bundling and working with frameworks like Vue or React, but it is a bit more awkward when handling static assets (like CSS). You might be more …

Avatar of Pascal Klau (@pascalaoms)
Pascal Klau (@pascalaoms) on May 15, 2017 (Updated on May 22, 2017)
Direct link to the article Transpiling ES6
babel es2015 es6 gulp JavaScript

Transpiling ES6

While support for ES6 is always increasing, we can’t always assume that users will be using a browser that supports all its features. So, in order to utilize ES6 features now and make sure we won’t run into cross-browser compatibility …

Avatar of Ryan Christiani
Ryan Christiani on Sep 13, 2016
Direct link to the article Gulp for Beginners
browsersync css injection gulp

Gulp for Beginners

Gulp is a tool that helps you out with several tasks when it comes to web development. It’s often used to do front end tasks like:

  • Spinning up a web server
  • Reloading the browser automatically whenever a file is saved
…
Avatar of Zell Liew
Zell Liew on Sep 1, 2015 (Updated on Nov 30, 2019)

CSS-Tricks is powered by DigitalOcean.

Keep up to date on web dev

with our hand-crafted newsletter

DigitalOcean
  • About DO
  • Cloudways hosting
  • Legal stuff
  • Get free credit!
CSS-Tricks
  • Write for us!
  • Advertise with us
  • Contact us
Social
  • RSS Feeds
  • CodePen
  • Mastodon
  • X
Back to Top