0.1.0 • Published 9 years ago

laravel-elixir-bootlint v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

laravel-elixir-bootlint

Simple extension to laravel elixir to lint bootstrap with bootlint.

Install

npm install --save-dev laravel-elixir-bootlint

Usage

Example Gulpfile:

var elixir = require("laravel-elixir");

require("laravel-elixir-bootlint");

elixir(function(mix) {
    mix.bootlint("resources/views/index.blade.php");
});

First argument is the entry point of your application (default directory is resources/assets/js). In third argument you could pass bootlint options. In production bundle will be compressed.

Advanced example

elixir(function(mix) {
    mix.bootlint("resources/views/index.blade.php", {
        stoponerror: true,
        stoponwarning: true,
    });
});