
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
gulp-git-status
Advanced tools
A Gulp plugin for selectively including source files based on their Git status.
A Gulp plugin for selectively including source files based on their Git status.
First, install gulp-git-status as a development dependency:
npm install --save-dev gulp-git-status
Then, add it to your Gulp task:
import gulp from 'gulp';
import gulpGitStatus from 'gulp-git-status';
gulp.task('moveFiles', () => {
gulp.src('lib/*')
.pipe(gulpGitStatus({
excludeStatus: 'modified'
}))
.pipe(gulp.dest('./'));
});
Type: String
Default: "modified"
Possible values: ["modified", "unchanged", "untracked"]
The Git file status to exclude from your piped files.
FAQs
A Gulp plugin for selectively including source files based on their Git status.
We found that gulp-git-status demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.