From 4b99a0e0b666522c7f9016272aa71f382235112b Mon Sep 17 00:00:00 2001 From: Sumeet Adur Date: Tue, 22 Dec 2015 13:34:29 +0000 Subject: [PATCH] create-rss-feed depends on download-data finishing first. added rss.xml to .gitignore --- .gitignore | 1 + gulpfile.babel.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ec19628..f8bbd1e 100755 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /client/words.json /client/homewords.json npm-debug.log +rss.xml diff --git a/gulpfile.babel.js b/gulpfile.babel.js index d623429..54c0892 100755 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -383,7 +383,7 @@ gulp.task('templates', () => { fs.writeFileSync(`.tmp/thanks.html`, thanksPageHtml); }); -gulp.task('create-rss-feed', () => { +gulp.task('create-rss-feed', ['download-data'], () => { const rssTitle = 'Guffipedia'; const rssLink = 'http://ft.com/guff';