-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
26 lines (22 loc) · 855 Bytes
/
gulpfile.js
File metadata and controls
26 lines (22 loc) · 855 Bytes
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
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.
|
*/
elixir(function(mix) {
mix.sass('app.scss', 'public/css/style.css');
mix.sass('status.scss', 'public/css/status.css');
mix.sass('dashboard/dashboard.scss', 'public/css/dashboard.css');
mix.browserify('app.js', 'public/js/script.js');
mix.browserify('dashboard/dashboard.js', 'public/js/dashboard.js');
mix.browserSync({
proxy: 'local.ac',
open: false
});
});