This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
68 lines (48 loc) · 1.71 KB
/
index.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
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
var notify = require('gulp-notify');
var _ = require('underscore');
var Elixir = require('laravel-elixir');
var Task = Elixir.Task;
var initializePlugin = function(){
function notify_message(title, subtitle, message, icon){
gulp.src('').pipe(notify({
title: title,
subtitle: subtitle,
icon: __dirname + icon,
message: message
}));
}
Elixir.extend("BrowserSync", function(options, src){
var defaultSrc = [
"app/**/*",
"public/**/*",
"resources/views/**/*"
];
options = _.extend({
proxy : "homestead.app",
logPrefix : "Laravel Elixir BrowserSync",
logConnections : true,
reloadOnRestart : true,
notify : true
}, options);
src = src || defaultSrc;
browserSync.init(options);
new Task("BrowserSync", function(){
var onError = function(err){
notify.onError({
title : "BrowserSync",
subtitule : "BrowserSync Failed!",
message : "Error : <%= error.message %>",
icon : __dirname + '/../laravel-elixir/icons/fail.png'
})(err);
this.emit('end');
}
notify_message('Laravel Elixir BrowserSync', '', 'Start', '/../laravel-elixir/icons/pass.png');
browserSync.reload();
}).watch(src);
});
}
module.exports = {
init: initializePlugin
};