1
0
mirror of https://github.com/bitwarden/help synced 2026-01-21 11:53:27 +00:00

move publish back to .publish

This commit is contained in:
Kyle Spearrin
2017-05-23 20:46:45 -04:00
parent 8c3cf8dfb5
commit 6c28639816
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@@ -7,4 +7,4 @@ _site/
*.bat
*.tmp
/lib
_publish/
.publish/

View File

@@ -12,7 +12,7 @@ exclude:
- package.json
- gulpfile.js
- README.md
- _publish
- .publish
collections:
categories:

View File

@@ -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' }));
});