-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
24 lines (22 loc) · 882 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Sass
| file for our application, as well as publishing vendor resources.
|
*/
var paths ={
'jquery':'./vendor/bower-components/jquery/',
'bootstrap':'./vendor/bower-components/bootstrap-sass/assets/'
}
elixir(function(mix) {
mix.sass('style.scss','public/css', {includePaths: [ paths.bootstrap +'/stylesheets']})
.copy(paths.bootstrap + 'fonts/bootstrap', 'public/fonts')
.scripts([
paths.jquery + "dist/jquery.js",
paths.bootstrap +"javascripts/bootstrap.js"],'public/js/app.js');
});