1
0
mirror of https://github.com/bitwarden/help synced 2026-01-07 11:03:46 +00:00

ignore publish

This commit is contained in:
Kyle Spearrin
2017-05-23 13:10:34 -04:00
parent 94c3ec1434
commit 18c6b37fda
3 changed files with 3 additions and 2 deletions

2
.gitignore vendored
View File

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

View File

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

View File

@@ -67,5 +67,5 @@ gulp.task('lib', ['clean:lib'], function () {
gulp.task('deploy', [], function () { gulp.task('deploy', [], function () {
return gulp.src(paths.dist + '**/*') return gulp.src(paths.dist + '**/*')
.pipe(ghPages({ cacheDir: './.publish' })); .pipe(ghPages({ cacheDir: './_publish' }));
}); });