Gathering detailed insights and metrics for gulp-gh-pages-latest
Gathering detailed insights and metrics for gulp-gh-pages-latest
Gathering detailed insights and metrics for gulp-gh-pages-latest
Gathering detailed insights and metrics for gulp-gh-pages-latest
npm install gulp-gh-pages-latest
Typescript
Module System
Node Version
NPM Version
63.3
Supply Chain
92.1
Quality
68.3
Maintenance
100
Vulnerability
98.6
License
JavaScript (100%)
Total Downloads
497
Last Day
1
Last Week
2
Last Month
5
Last Year
59
605 Stars
149 Commits
68 Forks
12 Watching
1 Branches
15 Contributors
Minified
Minified + Gzipped
Latest Version
0.6.0-6
Package Id
gulp-gh-pages-latest@0.6.0-6
Unpacked Size
11.51 kB
Size
4.59 kB
File Count
5
NPM Version
6.12.0
Node Version
12.12.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
100%
2
Compared to previous week
Last month
66.7%
5
Compared to previous month
Last year
-29.8%
59
Compared to previous year
gulp plugin to publish contents to Github pages
npm install --save-dev gulp@next gulp-gh-pages
Define a deploy
task in your gulpfile.js
(as below) which can be used to push to gh-pages
going forward.
1const {src, task}= require('gulp'); 2const ghPages = require('gulp-gh-pages'); 3 4task('deploy', () => src('./dist/**/*').pipe(ghPages()));
Now, you should be able to call your task by doing:
gulp deploy
1const ghPages = require('gulp-gh-pages');
options: Object
Return: 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 the URL of the remote designated by origin
. 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: "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.
MIT License © 2014 Micheal Benedict, 2015 - 2018 Shinnosuke Watanabe
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
38 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-01-20
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