Gathering detailed insights and metrics for gulp-gh-pages
Gathering detailed insights and metrics for gulp-gh-pages
Gathering detailed insights and metrics for gulp-gh-pages
Gathering detailed insights and metrics for gulp-gh-pages
@types/gulp-gh-pages
TypeScript definitions for gulp-gh-pages
@justeat/gulp-gh-pages
Gulp v3 plugin to publish contents to Github pages
gulp-gh-pages-ci-compatible
Gulp plugin to publish to Github pages (gh-pages branch).
gulp-gh-pages-latest
gulp plugin to publish contents to Github pages
A gulp 4 plugin to publish contents to Github pages
npm install gulp-gh-pages
Typescript
Module System
Node Version
NPM Version
69.7
Supply Chain
88.8
Quality
70.3
Maintenance
50
Vulnerability
97.1
License
JavaScript (100%)
Total Downloads
3,291,122
Last Day
343
Last Week
3,942
Last Month
16,756
Last Year
235,295
NOASSERTION License
605 Stars
149 Commits
62 Forks
12 Watchers
1 Branches
15 Contributors
Updated on Jul 01, 2025
Minified
Minified + Gzipped
Latest Version
0.5.4
Package Id
gulp-gh-pages@0.5.4
Size
5.22 kB
NPM Version
3.3.8
Node Version
4.2.1
Published on
Oct 20, 2015
Cumulative downloads
Total Downloads
Last Day
13.2%
343
Compared to previous day
Last Week
2.6%
3,942
Compared to previous week
Last Month
-14.3%
16,756
Compared to previous month
Last Year
-15.8%
235,295
Compared to previous year
gulp plugin to publish contents to Github pages
1npm install --save-dev gulp-gh-pages
Define a deploy
task in your gulpfile.js
(as below) which can be used to push to gh-pages
going forward.
1var gulp = require('gulp'); 2var ghPages = require('gulp-gh-pages'); 3 4gulp.task('deploy', function() { 5 return gulp.src('./dist/**/*') 6 .pipe(ghPages()); 7});
Now, you should be able to call your task by doing:
1gulp deploy
1var ghPages = require('gulp-gh-pages');
options: Object
Return: Object
(stream.Transform)
Type: String
Default: URL for the remote of the current dir (assumes a git repository)
By default gulp-gh-pages
assumes the current working directory is a git repository and uses its remote url. If your gulpfile.js
is not in a git repository, or if you want to push to a different remote url, you can specify it. Ensure you have write access to the repository.
Type: String
Default: "origin"
Git remote.
Type: String
Default: "gh-pages"
The branch where deploy will by done. Change to "master" for username.github.io
projects.
Type: String
Default: .publish
Set the directory path to keep a cache of the repository. If it doesn't exist, gulp-gh-pages automatically create it.
Type: Boolean
Default: true
Allow you to make a build on the defined branch without pushing it to master. Useful for dry run.
Type: Boolean
Default: false
Force adding files to the gh-pages
branch, even if they are ignored by .gitignore
or .gitignore_global
.
Type: String
Default: "Update [timestamp]"
Edit commit message.
Copyright (c) 2014 Micheal Benedict, 2015 Shinnosuke Watanabe
Licensed under the MIT License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
39 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More