Skip to content

Commit 7a8e701

Browse files
committed
chore(deps): update dependencies
1 parent fbd0b45 commit 7a8e701

File tree

3 files changed

+2321
-3563
lines changed

3 files changed

+2321
-3563
lines changed

gulpfile.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ gulp.task('generate-xml', gulp.series('validate-events', function () {
9595
}
9696
xml.push("</channel>");
9797
xml.push("</rss>");
98-
return xml.join('');
98+
return Buffer.from(xml.join(''), 'utf8');
9999
}))
100100
.pipe(rename("feed.xml"))
101101
.pipe(gulp.dest('.'));
@@ -125,6 +125,7 @@ gulp.task('generate-projects', gulp.series('validate-events', function () {
125125
html.push('<html lang="en">');
126126
html.push('<head>');
127127
html.push('<meta charset="utf-8"/>');
128+
html.push('<meta name="generated-at" content="' + new Date().toISOString() + '"/>');
128129
html.push('<title>Top Contributed Projects</title>');
129130
html.push('<link href="https://cdn.jsdelivr.net/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet"/>');
130131
html.push('<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>');
@@ -161,7 +162,7 @@ gulp.task('generate-projects', gulp.series('validate-events', function () {
161162
html.push('</table>');
162163
html.push('</body>');
163164
html.push('</html>');
164-
return html.join('');
165+
return Buffer.from(html.join('\n'), 'utf8');
165166
}))
166167
.pipe(rename("projects.html"))
167168
.pipe(gulp.dest('.'));

0 commit comments

Comments
 (0)