-
Notifications
You must be signed in to change notification settings - Fork 13
/
gulpfile.js
268 lines (224 loc) · 10.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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
var gulp = require('gulp');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var prepBower = require('bower-files');
var inject = require('gulp-inject');
var series = require('stream-series');
var del = require('del');
var bower = require('gulp-bower');
var colors = require('colors');
var taskListing = require('gulp-task-listing');
var betterConsole = require('better-console');
var ghPages = require('gulp-gh-pages');
var connect = require('gulp-connect');
var print = require('gulp-print');
var underscore = require('underscore');
var merge = require('merge-stream');
var install = require("gulp-install");
var modules = ["datasets", "grid", "datatype", "recommendations"];
gulp.task('default', ["bower", "clean", "buildDev"]);
gulp.task('help', taskListing);
gulp.task('bower', function() {
return bower().pipe(gulp.dest('bower_components/'))
});
gulp.task('npm', function() {
return gulp.src(['./package.json'])
.pipe(install());
});
gulp.task('clean', function() {
return del.sync(['out/']);
});
gulp.task('buildDev', ['npm', 'bower', "clean"], function() {
var lib = prepBower();
var bowerJs = gulp.src(lib.ext('js').files)
.pipe(gulp.dest('out/common/js'));
var bowerCss = gulp.src(lib.ext('css').files)
.pipe(gulp.dest('out/common/css'));
var bowerWoff = gulp.src(lib.ext('woff').files)
.pipe(gulp.dest('out/common/fonts'));
var commonCss = gulp.src('./public/common/css/**.css')
.pipe(gulp.dest('out/common/css'));
var commonJs = gulp.src('./public/common/js/**.js')
.pipe(gulp.dest('out/common/js'));
gulp.src('./public/common/favicon.ico')
.pipe(gulp.dest('out/'));
return merge(underscore.map(modules, function(module) {
var target = gulp.src('./public/' + module + '/*.html');
var customJs = gulp.src('./public/' + module + '/js/**.js')
.pipe(gulp.dest('out/' + module + '/js'));
var customCss = gulp.src('./public/' + module + '/css/**.css')
.pipe(gulp.dest('out/' + module + '/css'));
var images = gulp.src('./public/' + module + '/img/**.*')
.pipe(gulp.dest('out/' + module + '/img'));
return merge([target.pipe(inject(series(bowerJs, commonJs, customJs), {
ignorePath: '/out/'
}))
.pipe(inject(series(bowerCss, commonCss, customCss), {
ignorePath: '/out/'
}))
.pipe(inject(bowerWoff, {ignorePath:'/out/'}))
//OKAY so bummer, it doesn't sound like gulp-inject supports dynamic
//injection tags so we'll need to hard code these for now. Hopefully
//there won't be more than just the nav.
.pipe(inject(gulp.src(['./public/common/partials/nav.html']), {
starttag: '<!-- inject:nav:html -->',
transform: function (filePath, file) {
return file.contents.toString('utf8')
}
}))
.pipe(inject(
gulp.src(['./public/common/templates/*.html'], {
read: true
}), {
starttag: '<!-- inject:templates:html -->',
transform: function(filePath, file) {
return '<script id="' + toFileName(filePath) + '" type="text/x-handlebars-template">' + file.contents.toString('utf8') +"</script>";
}
}
))
.pipe(gulp.dest('out/'))
.pipe(connect.reload()), images])
}));
});
gulp.task('watch', ['buildDev'], function() {
return gulp.watch("public/**/*", ['buildDev']);
});
gulp.task('connect', function() {
connect.server({
root: 'out',
port: 8000,
livereload: true
});
});
gulp.task('devServer', ['connect', 'watch'])
gulp.task('buildProd', ['bower'], function() {
var lib = prepBower();
var bowerJs = gulp.src(lib.ext('js').files)
.pipe(concat('lib.min.js'))
.pipe(uglify())
.pipe(gulp.dest('PoliceOpenDataCensus/common/js'));
var bowerCss = gulp.src(lib.ext('css').files)
.pipe(concat('lib.min.css'))
.pipe(gulp.dest('PoliceOpenDataCensus/common/css'));
var bowerWoff = gulp.src(lib.ext('woff').files)
.pipe(gulp.dest('PoliceOpenDataCensus/common/fonts'));
var commonCss = gulp.src('./public/common/css/**.css')
.pipe(gulp.dest('PoliceOpenDataCensus/common/css'));
var commonJs = gulp.src('./public/common/js/**.js')
.pipe(concat('common.min.js'))
.pipe(uglify())
.pipe(gulp.dest('PoliceOpenDataCensus/common/js'));
gulp.src('./public/common/favicon.ico')
.pipe(gulp.dest('PoliceOpenDataCensus/'));
return merge(underscore.map(modules, function(module) {
var target = gulp.src('./public/' + module + '/*.html');
var customJs = gulp.src('./public/' + module + '/js/**.js')
.pipe(concat('app.min.js'))
.pipe(uglify())
.pipe(gulp.dest('PoliceOpenDataCensus/' + module + '/js'));
var customCss = gulp.src('./public/' + module + '/css/**.css')
.pipe(concat('app.min.css'))
.pipe(gulp.dest('PoliceOpenDataCensus/' + module + '/css'));
var images = gulp.src('./public/' + module + '/img/**.*')
.pipe(gulp.dest('PoliceOpenDataCensus/' + module + '/img'));
return merge([target.pipe(inject(series(bowerJs, commonJs, customJs)))
.pipe(inject(series(bowerCss, commonCss, customCss)))
.pipe(inject(bowerWoff))
.pipe(inject(gulp.src(['./public/common/partials/nav.html']), {
starttag: '<!-- inject:nav:html -->',
transform: function (filePath, file) {
return file.contents.toString('utf8')
}
}))
.pipe(inject(
gulp.src(['./public/common/templates/*.html'], {
read: true
}), {
starttag: '<!-- inject:templates:html -->',
transform: function(filePath, file) {
return '<script id="' + toFileName(filePath) + '" type="text/x-handlebars-template">' + file.contents.toString('utf8') +"</script>";
}
}
))
.pipe(gulp.dest('PoliceOpenDataCensus/'))
.pipe(connect.reload()), images])
}));
});
gulp.task('cleanPublish', function() {
return del.sync(['.publish/']);
});
gulp.task('gh-pages', ["buildProd", "cleanPublish"], function() {
return gulp.src('./PoliceOpenDataCensus/**/*')
.pipe(ghPages());
});
gulp.task('deploy', ["gh-pages"], function() {
return del.sync(['PoliceOpenDataCensus/']);
});
var toFileName = function (filePath){
return filePath.split('\\').pop().split('/').pop().replace(/\.[^/.]+$/, "");
}
gulp.task('readme', function() {
betterConsole.clear()
console.log("Part of:");
console.log("___ ____ ____ _ ____ ____ ___ ____ ____ _ _ ___ ____ ____ ___");
console.log("|__] |__/ | | | |___ | | | | | |\\/| |__] | | |__/ | ");
console.log("| | \\ |__| _| |___ |___ | |___ |__| | | | |__| | \\ | ");
console.log();
console.log();
console.log("From:")
console.log("____ ____ ___ ____ ____ ____ ____ ____ _ _ ____ ____ _ ____ ____")
console.log("| | | | \\ |___ |___ | | |__/ |__| |\\/| |___ |__/ | | |__|")
console.log("|___ |__| |__/ |___ | |__| | \\ | | | | |___ | \\ | |___ | |")
console.log();
console.log(" / ::::======= / \\ ".blue);
console.log(" / ::::======= / \\ ".blue);
console.log(" \\ =========== / / ".blue);
console.log(" \\ =========== / / ".blue);
console.log();;
console.log("And:");
console.log("___ ____ ____ _ _ _ _ _ ___ _ _");
console.log(" | |___ |__| |\\/| | |\\ | | \\ \\_/");
console.log(" | |___ | | | | | | \\| |__/ |");
console.log();
console.log("______________________________________________".red);
console.log(" _____ _____ _____ _______ _______".red);
console.log("|_____] | | | | | |______".red);
console.log("| |_____| |_____ __|__ |_____ |______".red);
console.log(" _____ _____ _______ __ _".white);
console.log("| | |_____] |______ | \\ |".white);
console.log("|_____| | |______ | \\_|".white);
console.log("______ _______ _______ _______".white);
console.log("| \\ |_____| | |_____|".white);
console.log("|_____/ | | | | |".white);
console.log("_______ _______ __ _ _______ _ _ _______".blue);
console.log("| |______ | \\ | |______ | | |______".blue);
console.log("|_____ |______ | \\_| ______| |_____| ______|".blue);
console.log("______________________________________________".blue);
console.log();
console.log();
console.log("WHAT:");
console.log("The Police Open Data Census is an attempt to catalog open police accountibilty,");
console.log("oversight and transparency datasets available to the public.");
console.log();
console.log("HOW:");
console.log("The Census is built on a Google Spreadsheet integration though tabletop.js.");
console.log("Feedback and suggested additions to the current data are more than welcome");
console.log("at" + " indy@codeforamerica.org".red + " and/or our google form" + " bit.ly/1KMFbxZ".red)
console.log();
console.log("The site is otherwise a fairly bogstandard bootstrap/jquery build. All that");
console.log("should be required to get the development environment up is:");
console.log();
console.log(" gulp")
console.log();
console.log("which will build the site in the 'out' directory where it can be served by")
console.log("your static site server of choice. If you're going to be working on the site,")
console.log();
console.log(" gulp devServer")
console.log();
console.log("will watch changes to the 'public' directory, serve a live updating version of")
console.log("the site at localhost:8000 and live refresh when changes occur.")
console.log("To minifiy and concat resouces then publish the site to gh-pages:")
console.log();
console.log(" gulp deploy")
console.log();
});