Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-gitnewer
Advanced tools
Run Grunt tasks with only those source files modified since the last git commit.
Run Grunt tasks with only those source files modified since the last git commit.
It's very like grunt-newer, but for git commit.
gitnewer
taskThe most common use case. If some files changed from last git commit, and exactly match with one or more task, then those tasks will run with only those files.
grunt.initConfig({
jshint: {
all: {
src: ['src/**/*.js']
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-gitnewer');
grunt.registerTask('lint', ['gitnewer:jshint:all']);
gitnewer-prefix
taskThe only differece from gitnewer
task is gitnewer-prefix
uses prefix match, this is useful when src of task is a list of directories.
branch
='HEAD', diffFilter
='ACM'Internally, the following command is executed to detect changed files from some git commit:
git diff ${branch} --name-only --diff-filter=${diffFilter}
branch
and diffFilter
can be configured to meet your needs.
FAQs
Run Grunt tasks with only those source files modified since the last git commit.
We found that grunt-gitnewer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.