
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
A ternary operator for Gulp.
First, install gulp-cond as a development dependency:
npm install --save-dev gulp-cond
Then, use it to conditionnaly pipe plugins in your gulpfile.js:
var cond = require('gulp-cond');
var prod = gulp.env.prod;
// Images
gulp.task('build_images', function() {
gulp.src('assets/images/**/*.svg')
.pipe(cond(prod,
gSvgmin(options), // minify SVG images under production
gWatch().pipe(gLivereload(server))) // use live reload in dev mode
)
.pipe(gulp.dest('www/images'))
});
Alternatively, you can provide plugin functions instead of streams to instanciate streams only when needed :
var cond = require('gulp-cond');
var prod = gulp.env.prod;
// Images
gulp.task('build_images', function() {
gulp.src('assets/images/**/*.svg')
.pipe(cond(prod,
gSvgmin.bind(null, options), // minify SVG images under production
function () { // use live reload in dev mode
return gWatch().pipe(gLivereload(server));
})
)
.pipe(gulp.dest('www/images'))
});
Type: Boolean or Function
Required. A value or a function providing a value. If the value is truthy, expr1 will be used, else, expr2 will be use if provided.
Type: Stream or Function
Required. A stream or a function providing a stream.
Type: Stream or Function
Default value: Stream.PassThrough
A stream or a function providing a stream.
You may want to contribute to this project, pull requests are welcome if you accept to publish under the MIT licence.
FAQs
Ternary operator for Gulp.
The npm package gulp-cond receives a total of 2,881 weekly downloads. As such, gulp-cond popularity was classified as popular.
We found that gulp-cond 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
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.