mirror of
https://github.com/bitwarden/help
synced 2025-12-14 07:13:19 +00:00
move publish cache outside of project
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,5 +6,4 @@ _site/
|
|||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
*.bat
|
*.bat
|
||||||
*.tmp
|
*.tmp
|
||||||
/lib
|
/lib
|
||||||
.publish/
|
|
||||||
@@ -12,7 +12,6 @@ exclude:
|
|||||||
- package.json
|
- package.json
|
||||||
- gulpfile.js
|
- gulpfile.js
|
||||||
- README.md
|
- README.md
|
||||||
- .publish
|
|
||||||
|
|
||||||
collections:
|
collections:
|
||||||
categories:
|
categories:
|
||||||
|
|||||||
@@ -71,5 +71,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_cache/help' }));
|
||||||
});
|
});
|
||||||
Reference in New Issue
Block a user