-
Notifications
You must be signed in to change notification settings - Fork 0
/
GulpFile.js
94 lines (74 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
93
94
var path = require('path'),
express = require('express'),
tinylr = require('tiny-lr'),
gulp = require('gulp'),
gutil = require('gulp-util'),
livereload = require('gulp-livereload'),
server = tinylr(),
opn = require("gulp-open"),
nodemon = require('gulp-nodemon');
gulp.task('default',['server'], function(){
var app = express();
app.use(express.static(path.resolve('./')));
app.listen(3001, function() {
gutil.log('Listening on', 3001);
});
server.listen(35729, function (err) {
if (err) {
throw err;
}
setTimeout(function() {
gulp.src('./front/index.html')
.pipe(opn("",{
//app:"google-chrome",
app:"chromium-browser",
url: "http://localhost:1337/"
}));
},1000)
gulp.watch(["./config/**/*"], function (evt) {
gutil.log(gutil.colors.cyan(evt.path), 'changed');
gulp.start('config');
});
gulp.watch(["./api/**/*","!./api/controllers/front/**.js"], function (evt) {
gutil.log(gutil.colors.cyan(evt.path), 'changed');
gulp.start('api');
});
gulp.watch([
"./front/**/*.js",
"./front/**/*.html"
], function (evt) {
gutil.log(gutil.colors.cyan(evt.path), 'changed');
gulp.start('front');
});
gulp.watch(["./views/**/*.ejs"], function (evt) {
gutil.log(gutil.colors.cyan(evt.path), 'changed');
gulp.start('views');
});
});
});
gulp.task('front',[], function() {
gulp.src('./front/**/*')
.pipe(livereload(server));
});
gulp.task('views', function() {
gulp.src('./views/**/*')
.pipe(livereload(server));
});
gulp.task('api', [], function() {
gulp.src('./api/**/*')
.pipe(livereload(server));
})
gulp.task('config', [], function() {
gulp.src('./config/**/*')
.pipe(livereload(server));
})
gulp.task('server', function(){
nodemon({ script: 'app.js', ext: 'js', ignore: ['GulpFile.js'] })
.on('change', ['front'])
.on('restart', function () {
console.log('restarted!')
})
//var spawn = require('child_process').spawn;
//spawn('pkill', ['/usr/bin/sails'], {stdio: 'inherit'});
//spawn('sails', ['lift'], {stdio: 'inherit'});
});