This repository was archived by the owner on Mar 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
86 lines (73 loc) · 2.3 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
var gulp = require('gulp'),
clean = require('gulp-clean'),
concat = require('gulp-concat'),
express = require('express'),
install = require('./plugins/install.js'),
run = require('./plugins/run.js'),
protobuf = require('./plugins/protobuf.js'),
less = require('gulp-less'),
livereload = require('connect-livereload'),
lrserver = require('tiny-lr')(),
spawn = require("gulp-spawn"),
refresh = require('gulp-livereload'),
rename = require('gulp-rename');
var livereloadport = 35729,
serverport = 5000;
gulp.task('styles', function() {
gulp.src('styles/main.less')
.pipe(less())
.pipe(gulp.dest('web/styles/css'))
.pipe(refresh(lrserver));
});
gulp.task('protobuf', function(){
gulp.src(["api/hello.proto"])
.pipe(protobuf());
})
gulp.task('dart', function(){
gulp.src(['!web/**/packages', 'web/src/**/*.dart'])
.pipe(refresh(lrserver));
})
gulp.task('html', function(){
gulp.src('web/**/*.html')
.pipe(refresh(lrserver));t
});
gulp.task('bower', function(){
gulp.src('bower.json')
.pipe(install.bower())
.pipe(refresh(lrserver));
});
gulp.task('install', ['bower', 'npm', 'pub']);
gulp.task('pub', function(){
gulp.src('pubspec.yaml')
.pipe(install.dart())
.pipe(refresh(lrserver));
});
gulp.task('npm', function(){
gulp.src('package.json')
.pipe(install.npm())
.pipe(refresh(lrserver));
});
gulp.task('dartium', function(){
run("dartium",['http://localhost:' + serverport]);
});
gulp.task('default', function() {
gulp.start('install', 'styles', 'serve', 'dartium', 'watch');
});
gulp.task('serve', function(){
var server = express();
server.use(livereload({port: livereloadport}));
server.use(express.static('web'));
server.use(express.static('bower_components'));
server.use(express.static('styles'));
server.listen(serverport);
lrserver.listen(livereloadport);
});
gulp.task('watch', function() {
gulp.watch('api/*.proto', ['protobuf']);
gulp.watch('styles/**/*.less', ['styles']);
gulp.watch(['!web/**/packages', 'web/**/*.dart'], ['dart']);
gulp.watch('web/**/*.html', ['html']);
gulp.watch('bower.json', ['bower']);
gulp.watch('pubspec.yaml', ['pub']);
gulp.watch('package.json', ['npm']);
});