
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
glov-build-imagemin
Advanced tools
imagemin task processor for glov-buildWraps imagemin in a glov-build task.
API usage:
const imagemin = require('glov-build-imagemin');
gb.task({
name: ...,
input: ...,
...imagemin({
plugins: [
...
],
overrides: [{
match: /regex/,
plugins: [
...
],
}],
}),
});
Options
plugins - list of imagemin plugins to use by defaultoverrides - optional list of override plugin lists to use for matching filenames. The first match will be used, otherwise the defaults in plugins will be usedExample usage:
const imageminPngquant = require('imagemin-pngquant');
const imageminOptipng = require('imagemin-optipng');
const imageminZopfli = require('imagemin-zopfli');
const imagemin = require('glov-build-imagemin');
// pngquant
// Note: not reasonable to use on any images used as GPU textures, unless
// completely opaque, pngquant cannot handle premultiplied alpha textures,
// and for regular textures it produces images that will create bad
// mipmaps / bad blending if there are any pixels with alpha = 0 (which lose
// their RGB values and get replaced with green)
const PNGQUANT_DEFAULT = {
speed: 4, // 1...11
strip: false,
quality: [0.3, 0.5],
dithering: 1.0,
};
// optipng
// Note: always lossless, safe to use with anything
const OPTIPNG_DEFAULT = {
optimizationLevel: 3, // 0...7
bitDepthReduction: true,
colorTypeReduction: true,
paletteReduction: true,
interlaced: false,
errorRecovery: true,
};
// zopflipng
// Note: always lossless, safe to use with anything
const ZOPFLI_DEFAULT = {
transparent: false, // allow altering hidden colors of transparent pixels
'8bit': false,
iterations: 15,
more: false,
};
gb.task({
name: 'all',
input: '*.png',
...imagemin({
plugins: [
imageminPngquant(PNGQUANT_DEFAULT),
imageminOptipng(OPTIPNG_DEFAULT),
imageminZopfli(ZOPFLI_DEFAULT),
],
overrides: [{
match: /textures\//,
plugins: [
imageminOptipng(OPTIPNG_DEFAULT),
imageminZopfli(ZOPFLI_DEFAULT),
],
}],
}),
});
FAQs
imagemin task processor for glov-build
We found that glov-build-imagemin 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.