laravel-elixir-myth
v1.0.0
Published
Laravel Elixir Myth Extension
Downloads
6
Readme
laravel-elixir-myth
Simple extension to laravel elixir to precompile with Myth.
Install
npm install --save-dev laravel-elixir-myth
Usage
Example Gulpfile:
var elixir = require("laravel-elixir");
require("laravel-elixir-myth");
elixir(function(mix) {
mix.myth("app.css");
});
Advanced example
elixir(function(mix) {
mix.myth("app.css", {
sourcemap: false
});
});