1.0.3 • Published 8 years ago

laravel-elixir-mixer v1.0.3

Weekly downloads
1
License
UNLICENCED
Repository
-
Last release
8 years ago

Laravel Elixir Mixer

ATTENTION!

This is a private package. At the current state it requires a Laravel (5.3) project environment (or a Laravel (5.3) folder structure) to work.

Installation

npm install laravel-elixir-mixer --save-dev

Usage

Use the sass, webpack or the combined method on the ElixirMixer object to trigger the correspondig methods on elixirs mix object.

elixir(mix => {
    var Mixer = new ElixirMixer(mix);

    Mixer.sass('path/to/scss/file');
    Mixer.webpack('path/to/js/file');
    Mixer.combined('path/to/scss|js/file');
});