-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
81 lines (66 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
'use strict';
var elixir = require('laravel-elixir')
, gulp = require('gulp')
, config = elixir.config;
// Expose application root path
config.rootPath = __dirname + '/';
// include vendor elixir tasks
require('laravel-elixir-imagemin');
// include application elixir tasks
require('./resources/tasks/clean');
require('./resources/tasks/webpack');
require('./resources/tasks/browser-sync');
// Check whether it is a watch task
const IS_WATCH = process.argv
.slice(1)
.some(function(arg) { return arg.toLowerCase() === 'watch' });
/*
|--------------------------------------------------------------------------
| 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) {
/*
* Clean all the directories
*/
mix.clean();
/*
* Minimy and copy images
*/
mix.imagemin();
/*
* Copy "extra_components" assets
* (all but javascripts as it should be included with webpack)
*/
mix.copy(
config.assetsPath + '/extra_components/**/*.!(js)',
config.publicPath + '/extra_components/'
);
/*
* Set up SASS compilation
*/
mix.sass('app.sass');
/*
* JS application compile
*/
mix.webpack({'app.bundle': './app.js'});
/*
* Versioning the files
*/
mix.version(['css/*.css', 'js/!(chunk-)*.js']);
if (IS_WATCH) {
/*
* Run browser with live connection
*/
mix.browserSync({
host: 'http://localhost:8000/',
src: __dirname + '/public/**/*',
port: 3000 // This is a default port
});
}
});