-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
100 lines (86 loc) · 2.46 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
95
96
97
98
99
100
var gulp = require('gulp');
var stylus = require('gulp-stylus');
var when = require('when');
var concat = require('gulp-concat');
var minifyJS = require('gulp-uglify');
var deploy = require("gulp-gh-pages");
var static = require('node-static');
var file = new static.Server('./out');
function runServer(port) {
require('http').createServer(function (request, response) {
request.addListener('end', function () {
file.serve(request, response);
}).resume();
}).listen(port || 9000);
}
// // compile css
gulp.task('stylus', function () {
return gulp.src('./css/[!_]*.styl')
.pipe(stylus({use: ['nib']}))
.pipe(gulp.dest('./out'))
});
// copy over everything from the static folder (images, etc)
// NOTE: into the root of the out folder
gulp.task('static', function(){
return gulp.src('./static/**')
.pipe(gulp.dest('./out'));
});
gulp.task('scripts', function(){
var tasks = [];
tasks.push(
gulp.src([
'./js/stripe.js',
'./js/jquery.js',
'./js/jquery.typewatch.js',
'./js/jquery.payment.js',
'./js/main.js'
])
.pipe(concat('event.js'))
.pipe(minifyJS())
.pipe(gulp.dest('./out'))
)
tasks.push(
gulp.src([
'./js/jquery.js',
'./js/jquery.typewatch.js',
'./js/mentors.js'
])
.pipe(concat('mentors.js'))
.pipe(minifyJS())
.pipe(gulp.dest('./out'))
)
tasks.push(
gulp.src([
'./js/jquery.js',
'./js/jquery.typewatch.js',
'./js/complete.js'
])
.pipe(concat('complete.js'))
.pipe(minifyJS())
.pipe(gulp.dest('./out'))
)
tasks.push(
gulp.src([
'./js/marked.js',
'./js/angular.js',
'./js/ng-sanitize.js',
'./js/projects.js'
])
.pipe(concat('projects.js'))
.pipe(minifyJS())
.pipe(gulp.dest('./out'))
)
return when.all(tasks);
});
gulp.task('default', ['static', 'scripts', 'stylus']);
gulp.task('deploy', ['static', 'scripts', 'stylus'], function () {
var remote = "https://github.com/gopilot/static.git";
return gulp.src("./out/**/*")
.pipe( deploy( remote ) );
});
gulp.task('watch', function() {
runServer();
gulp.watch('./static/**', ['static']);
gulp.watch('./css/*.styl', ['stylus']);
gulp.watch('./js/**/*.js', ['scripts'])
});