]> BookStack Code Mirror - bookstack/blob - gulpfile.js
Cleaned book-show page/chapter list design
[bookstack] / gulpfile.js
1 var elixir = require('laravel-elixir');
2
3 /*
4  |--------------------------------------------------------------------------
5  | Elixir Asset Management
6  |--------------------------------------------------------------------------
7  |
8  | Elixir provides a clean, fluent API for defining some basic Gulp tasks
9  | for your Laravel application. By default, we are compiling the Sass
10  | file for our application, as well as publishing vendor resources.
11  |
12  */
13
14 elixir(function(mix) {
15     mix.sass('styles.scss');
16     mix.scripts('image-manager.js', 'public/js/image-manager.js');
17     mix.scripts('book-dashboard.js', 'public/js/book-dashboard.js');
18     mix.scripts('jquery-extensions.js', 'public/js/jquery-extensions.js');
19 });