A Simple Gulp'y Workflow For Sass
Key Takeaways
- A Gulp workflow can improve the Sass compilation time in large Rails projects, moving away from the asset pipeline and embracing the speed of LibSass.
- The Gulp workflow includes Sass compilation with LibSass, generating sourcemaps for easier debugging, prefixing CSS with Autoprefixer, and generating Sass documentation with SassDoc.
- The workflow can be further optimized by adding a watch task that monitors changes in stylesheets to recompile them, eliminating the need to manually run the sass task after every file save.
- A ‘prod’ task can be created for deploying to production, which compiles Sass in compressed mode, prefixes CSS with Autoprefixer, regenerates SassDoc documentation, and avoids any sourcemaps.
I have recently been in charge of optimizing the Sass side of quite a big Rails project, and one of most important things to do was to improve the compilation time. Because of the Sass architecture in place and the fact that Ruby Sass (through the Rails asset pipeline in this case) tends to be slow when dealing with a huge number of files, it could take up to 40 seconds to compile the stylesheets. Talk about a fast development process. :)
My idea was to move away from the asset pipeline and embrace the speed of LibSass. To make things easier I decided to go with a simple Gulp workflow. It was the first time I would be using Gulp, and I must say it was quite an enjoyable experience (which was not the case for Grunt as far as I am concerned).
In this short article, let’s just have a quick tour on how to set up a Gulp’y workflow to work with Sass. Here is what we will include:
- Unsurprisingly, Sass compilation with LibSass
- Generating sourcemaps for easier debugging
- Prefixing CSS with Autoprefixer
- Generating Sass documentation with SassDoc
Compiling Sass
Watch AtoZ: Sass Learn Sass letter by letter
The first thing to do is to install the dependencies and to create a Gulpfile.js. We will need Gulp (no shit, Sherlock), but also gulp-sass to compile our stylesheets:
1 |
|
This line tells npm to install both gulp and gulp-sass packages as development dependencies. You can now find them in the devDependencies object of your package.json. And the Gulpfile.js:
1 2 |
|
Wow, that was short. What we need now is a task to run Sass (actually gulp-sass) on our stylesheets folder.
1 |
|
That’s it! We can now compile our stylesheets using LibSass thanks to a very minimal Gulp task. What about that? We can pass options to gulp-sass to compile stylesheets in expanded mode and to print errors in console:
1 2 |
|
Adding sourcemaps
So far, so good. Now, what about generating sourcemaps? In case you don’t know what sourcemaps are, it basically is a way to map compressed production sources with expanded development sources in order to make debugging live code easier. They are not restricted to CSS at all, sourcemaps can be used in JavaScript as well.
We have a nice article about sourcemaps here at SitePoint. Feel free to give it a read before going on if you feel a bit short on the understanding of sourcemaps.
Okay, so to add sourcemaps generation to our task, we need to install gulp-sourcemaps:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
And now let’s optimise our task:
1 2 3 4 5 6 7 8 9 10 11 |
|
By default, gulp-sourcemaps writes the sourcemaps inline in the compiled CSS files. Depending on the project setup, we might want to write them in separate files, in which case we can specify a path relative to the gulp.dest() destination in the sourcemaps.write()function like:
1 |
|
Bringing Autoprefixer to the party
I won’t go into much detail about why using Autoprefixer is better than writing vendor by hand (or with a mixin which is basically the same thing), but roughly Autoprefixer is a post-processing step meaning it actually updates already compiled stylesheets to add relevant prefixes based on an up-to-date database and a given configuration. In other words, you tell Autoprefixer which browsers you want to support, and it adds only relevant prefixes to the stylesheets. Zero effort, perfect support (please remind me to patent this catch phrase).
To include Autoprefixer in our Gulp’y workflow, we only need it to pipe it after Sass has done its thing. Then Autoprefixer updates the stylesheets to add prefixes.
First, let’s install it (you get the gist by now):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Then we add it to our task:
1 2 3 4 5 6 7 8 |
|
Right now, we run with the default configuration from Autoprefixer which is
- Browsers with over 1% market share,
- Last 2 versions of all browsers,
- Firefox ESR,
- Opera 12.1
We can use our own configuration like so:
1 |
|
Release the docs!
The last, but not least, tool to add to our workflow, Sass documentation generation with SassDoc. SassDoc is to Sass what JSDoc is to JavaScript: a documentation tool. It parses your stylesheets looking for comment blocks documenting variables, mixins, functions and placeholders.
If your project uses SassDoc (it should!), you can add the automatic documentation generation in your Gulp workflow.
The cool thing with SassDoc is that it can be piped directly in Gulp because its API is Gulp compatible. So you don’t actually have a gulp-sassdoc plugin.
1 |
|
1 2 |
|
Note that depending on the size of your project and the number of documented items, SassDoc can take up to a few of seconds to run (rarely above 3 as far as I’ve noticed), so you might want to have a separate task for this.
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Again, we use the default configuration but we can use our own if we want to.
1 2 3 4 5 6 7 8 9 10 11 |
|
I’m watching you
There is still something we can do before leaving: creating a watch task. The point of this task would be to watch for changes in stylesheets to recompile them again. It is very convenient when working on the Sass side of the project so you don’t have to run the sass task by hand every time you save a file.
1 |
|
Here is another reason why I recommend not including SassDoc in the sass task: you probably don’t want to regenerate the docs every time you touch a stylesheet. This is likely something you want to do on build or push, maybe with a pre-commit hook.
Adding the final touch
A last, yet important, thing to think about: running sass in the default task.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
The array passed as second argument of the task(..) function is a list of dependency tasks. Basically, it tells Gulp to run those tasks before running the one specified as a third argument (if any).
Also, we could probably create a prod task that could be run right before deploying to production (maybe with a git hook). This task should:
- Compile Sass in compressed mode
- Prefix CSS with Autoprefixer
- Regenerate SassDoc documentation
- Avoid any sourcemaps
1 2 3 4 5 6 7 8 |
|
Final thoughts
That’s it folks! In just a couple of minutes and a few lines of JavaScript, we have managed to create a powerful little Gulp workflow. You can find the full file here. What would you add to it?
Frequently Asked Questions (FAQs) about Gulp and SASS Workflow
How do I install Gulp and SASS for my project?
To install Gulp and SASS for your project, you need to have Node.js and npm installed on your computer. Once you have these, you can install Gulp globally by running the command npm install --global gulp-cli in your terminal. After that, navigate to your project directory and run npm init to create a package.json file. Then, install Gulp and gulp-sass in your project by running npm install --save-dev gulp gulp-sass.
How do I compile my SASS files using Gulp?
To compile your SASS files using Gulp, you need to create a Gulp task. In your gulpfile.js, you can create a task named ‘sass’ that will compile your SASS files into CSS. Here’s a simple example of how to do this:
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css'));
});
This task will take all .scss files in your sass directory, compile them into CSS using gulp-sass, and output the resulting CSS files in your css directory.
How do I watch for changes in my SASS files and automatically compile them?
Gulp provides a method called watch that you can use to automatically run tasks whenever files are changed. Here’s how you can modify the ‘sass’ task to watch for changes:
gulp.task('sass', function () {
gulp.watch('./sass/**/*.scss', ['sass']);
});
Now, whenever you save a .scss file in your sass directory, the ‘sass’ task will automatically run and compile your SASS files into CSS.
How do I handle errors in my SASS files?
When compiling SASS files, you might encounter syntax errors. You can handle these errors using the on method provided by gulp-sass. Here’s how you can modify the ‘sass’ task to log errors:
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css'));
});
Now, whenever there’s a syntax error in your SASS files, gulp-sass will log the error and continue with the task.
How do I use Gulp to minify my CSS files?
To minify your CSS files, you can use a Gulp plugin called gulp-clean-css. First, install it in your project by running npm install --save-dev gulp-clean-css. Then, you can create a task that will minify your CSS files:
var cleanCSS = require('gulp-clean-css');
gulp.task('minify-css', () => {
return gulp.src('styles/*.css')
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(gulp.dest('dist'));
});
This task will take all .css files in your styles directory, minify them using gulp-clean-css, and output the resulting minified CSS files in your dist directory.
The above is the detailed content of A Simple Gulp'y Workflow For Sass. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
