laravel-elixir-bootlint

0.1.0 • Public • Published

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,
    });
});

Package Sidebar

Install

npm i laravel-elixir-bootlint

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • joecohen