Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Package | gulp-svn |
Description | SVN plugin for Gulp |
Node Version | >= 0.11.12 |
Gulp Version | 3.x |
npm install gulp-svn --save
var gulp = require('gulp')
var svn = require('gulp-svn')
// Run svn add
gulp.task('add', () => {
return svn.add('/file.js')
}
// Run svn add with error
gulp.task('add', () => {
return svn.add('./file.js', (err) => {
if(err) throw err
})
})
// Run svn add with options
gulp.task('add', () => {
return svn.add('./file.js', {args: '--force'}, (err) => {
if(err) throw err
})
})
// Run svn revert some file
gulp.task('revert-file', () => {
return svn.revert('somefile.js', (err) => {
if(err) throw err
})
})
// Run svn revert with some directory recursively
gulp.task('revert', () => {
return svn.revert('directory', { args: '-R' }, (err) => {
if(err) throw err
})
})
// Run svn commit
gulp.task('commit', () => {
return svn.commit('Initial commit', (err) => {
if(err) throw err
})
})
// Run svn tag
gulp.task('tag', () => {
svn.tag('version-0.0.1', 'Tagged commit', (err) => {
if(err) {
throw err
}
})
})
// Run gulp
gulp.task('default',['add', 'commit'])
Synchronous tasks are also available, suffixed with 'Sync'. For instance use the task name, moveSync
instead of move
.
FAQs
SVN plugin for gulp (gulpjs.com)
We found that gulp-svn 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.