This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gulpfile.js
155 lines (137 loc) · 3.51 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
"use strict";
var fs = require("fs");
var copy = require("gulp-copy"),
gulp = require("gulp"),
jshint = require("gulp-jshint"),
rename = require("gulp-rename"),
replace = require("gulp-replace"),
run = require("gulp-run"),
sourcemaps = require("gulp-sourcemaps"),
uglify = require("gulp-uglify"),
env = require('gulp-env'),
webserver = require("gulp-webserver"),
concat = require('gulp-concat'),
mainBowerFiles = require('main-bower-files'),
hb = require("gulp-hb"),
copy = require("gulp-copy");
// Gulp mix-ins
require("gulp-autopolyfiller");
require("gulp-watch");
var paths = {
js: "./js/*.js",
publicJs: "./build/js"
};
//
// Run all default tasks
//
gulp.task("default",function() {
gulp.start("cleanup");
gulp.start("lint");
gulp.start("uglify");
gulp.start("templates");
gulp.start("templates:holos");
gulp.start("static");
});
gulp.task("cleanup",function(cb) {
run("rm -rf ./build/*", {}).exec();
});
//
// Check quality of Javascript
// warn if errors or style problems are found
//
gulp.task("lint", function() {
gulp
.src(paths.js)
.pipe(jshint({
predef: [
"document",
"location",
"navigator",
"window",
"L"
],
expr: true
}))
.pipe(jshint.reporter("jshint-stylish"));
});
gulp.task("uglify", function() {
gulp
.src(mainBowerFiles({filter: new RegExp('.js$', 'i')}).concat([paths.js, "./viewJS/**"]))
.pipe(sourcemaps.init())
.pipe(concat('ecoengine.js'))
.pipe(gulp.dest(paths.publicJs))
.pipe(uglify({
mangle: true,
output: {
beautify: false
}
}))
.pipe(rename({extname: ".min.js"}))
.pipe(sourcemaps.write("./")) // Write a sourcemap for browser debugging
.pipe(gulp.dest(paths.publicJs));
});
gulp.task("static", function() {
return gulp.src(["./static/**"], {"prefix":1})
.pipe(copy("./build/"));
});
//
// Build handlebars templates
// and create html files from them in
// the public directory
//
gulp.task("templates", function() {
gulp
.src("./templates/*.handlebars")
.pipe(hb({
data: "./data/**/*.{js,json}",
helpers: [
"./helpers/*.js"
],
partials: [
"./templates/partials/*.handlebars"
]
}))
.pipe(rename({extname: ".html"}))
.pipe(gulp.dest("./build/"));
});
gulp.task("templates:holos", function() {
gulp
.src("./templates/*.handlebars")
.pipe(hb({
data: ["./data/**/*.{js,json}","./holos/holos-templates.json"],
helpers: [
"./helpers/*.js"
],
partials: [
"./templates/partials/*.handlebars"
]
}))
.pipe(rename({extname: ".ninja2.html"}))
.pipe(gulp.dest("./build/"));
});
//
// Serve contents of the public directory
// locally on port :8000
//
gulp.task("webserver", function() {
gulp
.src("./build/")
.pipe(webserver({
open: false, // unless you want it
livereload: false, // unless you want it
directoryListing: false,
fallback: "index.html",
host:"0.0.0.0",
port:8000
}));
});
//
// Watch directories for changes
//
gulp.task("watch", function() {
gulp.watch(mainBowerFiles().concat([paths.js, "./viewJS/**"]),["lint", "uglify"]);
console.log("watching directory:", paths.js);
gulp.watch("./templates/**", ["templates, templates:holos"]);
console.log("watching directory:", paths.templates);
gulp.start("webserver");
});