-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
30 lines (28 loc) · 1.03 KB
/
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
25
26
27
28
29
30
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 Less
| file for our application, as well as publishing vendor resources.
|
*/
var paths = {
'bootstrap': './resources/assets/vendor/bootstrap-sass/assets/',
'jquery': './resources/assets/vendor/jquery/',
'jSignature': './resources/assets/vendor/jSignature/libs/'
}
elixir(function(mix) {
mix.sass("app.scss")
.copy(paths.bootstrap + 'fonts/bootstrap/**', 'public/fonts')
.scripts([
paths.jquery + "dist/jquery.js",
paths.bootstrap + "javascripts/bootstrap.js"
], "public/js/application.js")
.scripts([
paths.jSignature + "modernizr.js",
paths.jSignature + "jSignature.min.js"
], "public/js/signature.js");
});