0.2.0 • Published 7 years ago

nds-laravel-elixir-tasks v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

nds-laravel-elixir-tasks

This Laravel Elixir 6 extension brings support for several useful tasks.

Install

npm install nds-laravel-elixir-tasks --save-dev

Usage

gulpfile.js

const Elixir = require('laravel-elixir');
require('nds-laravel-elixir-tasks');

Elixir(mix => {
	mix.TASK(OPTIONS)
});

Tasks

JSHint

mix.jshint(); // Laravel's default js assets folder

or

mix.jshint(src, options);

Imagemin

mix.imagemin(); // Laravel's default images assets folder

or

mix.imagemin(src, output, options);

License

Laravel Elixir is open-sourced software licensed under the MIT license.