News

Laravel Elixir Version 3 is released

Published

Laravel Elixir version 3 is now released and available for everyone. This release features some exciting new features included true sequential tasks, more explicit logging, and easier configuration.

Sequential tasks

With version 2 this code:

mix.sass('one.scss').coffee('module.coffee').sass('two.scss');

Would trigger both sass calls before moving on to the coffee task. Now with version three these would processed in order.

More explicit logging

The Terminal will now detail the exact source and output files/directories that the current task is referencing (based upon your Gulpfile).

[![New Elixir Logging](https://i2.wp.com/wp.laravel-news.com/media/2015/07/elixir-logging-1024x576.png?resize=525%2C295&ssl=1)](https://i0.wp.com/wp.laravel-news.com/media/2015/07/elixir-logging.png?ssl=1)
New Elixir Logging
Better File Validation ----------------------
[![File Not Found in Elixir](https://i2.wp.com/wp.laravel-news.com/media/2015/07/elixir-notfound.png?resize=384%2C180&ssl=1)](https://i2.wp.com/wp.laravel-news.com/media/2015/07/elixir-notfound.png?ssl=1)
File Not Found in Elixir
Simpler Extensions ------------------
Elixir.extend('speak', function(message) {
 
new Task('speak', function() {
return gulp.src('').pipe(shell('say ' + message));
})
.watch('./app/**');
 
});
 
// mix.speak('Hello World');

More Information

For more information on Elixir v3, check out the official release announcement which outlines all the changes. Also, Laracasts has added new videos to the Painless builds with Elixir series covering these.

Eric L. Barnes photo

Eric is the creator of Laravel News and has been covering Laravel since 2012.

Sponsored

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article