From 77face857032d9164a93ad6d029cf3dc9c2a31da Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 23 May 2017 20:49:06 -0400 Subject: [PATCH] move publish cache outside of project --- .gitignore | 3 +-- _config.yml | 1 - gulpfile.js | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index aafd8b4e..23b5bfbc 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,4 @@ _site/ .jekyll-metadata *.bat *.tmp -/lib -.publish/ \ No newline at end of file +/lib \ No newline at end of file diff --git a/_config.yml b/_config.yml index 91a6a8e1..178906dd 100644 --- a/_config.yml +++ b/_config.yml @@ -12,7 +12,6 @@ exclude: - package.json - gulpfile.js - README.md - - .publish collections: categories: diff --git a/gulpfile.js b/gulpfile.js index b5c944ec..055e0b42 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -71,5 +71,5 @@ gulp.task('lib', ['clean:lib'], function () { gulp.task('deploy', [], function () { return gulp.src(paths.dist + '**/*') - .pipe(ghPages({ cacheDir: './.publish' })); + .pipe(ghPages({ cacheDir: '../.publish_cache/help' })); }); \ No newline at end of file