
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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')
, 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')
, 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,066 weekly downloads. As such, gulp-cond popularity was classified as popular.
We found that gulp-cond demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.