Basic Example

Laravel Elixir is a clean layer on top of Webpack to make the 80% use case laughably simple to execute. Most would agree that, though incredibly powerful, Webpack ships with a steep learning curve. But what if you didn't have to worry about that?

Have a look at a basic webpack.elixir.js file. Let's imagine that we only desire JavaScript (ES2015 with modules), and Sass compilation:

let Elixir = require('laravel-webpacker');


Elixir.mix(function (mix) {
    mix.sass('./src/app.sass', './dist/app.sass')
       .js('./src/app.js', './dist/bundle.js')
});


module.exports = Elixir;

Simple, right?

  1. Compile the Sass file, ./src/app.sass, to ./dist/app.sass
  2. Bundle all JavaScript (and any required modules) at ./src/app.js to ./dist/bundle.js.

With this configuration in place, we may trigger Webpack from the command line: node_modules/.bin/webpack.

During development, it's unnecessary to minify the output, however, this will be performed automatically when you trigger Webpack within a production environment: export NODE_ENV=production && webpack.

Less?

But what if you prefer Less compilation instead? No problem. Just swap mix.sass() with mix.less(), and you're done!

You'll find that most common Webpack tasks become a cinch with Laravel Elixir.

results matching ""

    No results matching ""