-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
41 lines (34 loc) · 1.22 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
31
32
33
34
35
36
37
38
39
40
41
var elixir = require('laravel-elixir');
elixir.config.sourcemaps = false;
/*
|--------------------------------------------------------------------------
| 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.
|
*/
elixir(function(mix) {
mix.sass([
'frontend.scss'
], 'public/css/frontend.css');
mix.scripts([
'v1.js'
], 'public/js/v1.js');
mix.scripts([
'../../../bower_components/modernizr/modernizr.js',
'../../../bower_components/jquery/dist/jquery.js',
'../../../bower_components/spectrum/spectrum.js',
'../../../bower_components/fastclick/lib/fastclick.js',
'../../../bower_components/foundation/js/foundation/foundation.js',
'../../../bower_components/foundation/js/foundation/foundation.reveal.js',
'redactor/redactor.js',
'frontend.js'
], 'public/js/frontend.js');
mix.version([
'public/css/frontend.css',
'public/js/frontend.js'
]);
});