-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
130 lines (110 loc) · 3.81 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
'use strict';
const http = require('http');
const gulp = require('gulp');
const babel = require('gulp-babel');
const gulpif = require('gulp-if');
const imagemin = require('gulp-imagemin');
const minifyCss = require('gulp-minify-css');
const postcss = require('gulp-postcss');
const sass = require('gulp-sass');
const sourcemaps = require('gulp-sourcemaps');
const swig = require('gulp-swig');
const uglify = require('gulp-uglify');
const autoprefixer = require('autoprefixer');
const del = require('del').sync;
const highlight = require('highlight.js').highlight;
const marked = require('marked');
const VERSION = 'master';
gulp.task('default', ['clean', 'html', 'sass', 'img', 'js']);
gulp.task('clean', function() {
del(__dirname + '/*.html');
del(__dirname + '/static');
});
gulp.task('html', ['clean'], function(done) {
const readmeUrl = 'http://rawgit.com/arguseyes/argus-eyes/' + VERSION + '/readme.md';
getRequest(readmeUrl, markdown => {
const readme = getReadmeSections(markdown);
gulp.src(__dirname + '/src/pages/**/!(_)*.html')
.pipe(swig({
defaults: { cache: false },
data: {
readme,
headers: getSectionHeaders(readme),
markdown: createMarkdownRenderer()
}}))
.pipe(gulp.dest(__dirname + '/'))
.on('end', done);
});
});
gulp.task('sass', ['clean'], function() {
return gulp.src(__dirname + '/src/static/scss/**/!(_)*.scss')
.pipe(sourcemaps.init())
.pipe(sass().on('error', sass.logError))
.pipe(postcss([autoprefixer({ browsers: ['last 1 version', '> 5%'] })]))
.pipe(minifyCss())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(__dirname + '/static/css'));
});
gulp.task('img', ['clean'], function() {
return gulp.src(__dirname + '/src/static/img/**/*.{svg,png,jpg,ico,webp,json}')
.pipe(imagemin())
.pipe(gulp.dest(__dirname + '/static/img'));
});
gulp.task('js', ['clean'], function() {
return gulp.src([__dirname + '/src/static/js/**/*.js', './src/components/**/*.js'])
.pipe(sourcemaps.init())
.pipe(gulpif(file => !/vendor/.test(file.path), babel()))
.pipe(uglify())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(__dirname + '/static/js'));
});
function getRequest(url, cb) {
http.get(url, res => {
let body = '';
res.on('data', data => body += data);
res.on('end', () => cb(body));
});
}
function getReadmeSections(markdown) {
const parts = markdown.match(/<!-- start -->(?:(?!<!-- end -->)[\s\S])*<!-- end -->/g);
return {
overview: parts[0],
introduction: parts[1],
authors: parts[2],
guide: parts[3],
reference: parts[4]
};
}
function getSectionHeaders(readme) {
const getParts = str => getAllMatchesAndCaptureGroups(/(#{1,6}) (.+)/g, str);
const getHeader = part => ({
lvl: part[1].length,
title: part[2],
slug: githubSlug(part[2])
});
return {
guide: getParts(readme.guide).map(getHeader),
reference: getParts(readme.reference).map(getHeader)
};
}
function createMarkdownRenderer() {
var renderer = new marked.Renderer();
marked.setOptions({
highlight: (code, lang) => highlight(lang, code).value
});
return function(markdown) {
return marked(markdown, { renderer: renderer });
};
}
function getAllMatchesAndCaptureGroups(re, str) {
var results = [], result;
while ((result = re.exec(str)) !== null) {
results.push(Array.from(result));
}
return results;
}
function githubSlug(str) {
return str.toLowerCase()
.replace(/[^\w-]+/g, '-')
.replace(/-+/g, '-');
}