Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

glov-build-imagemin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glov-build-imagemin

imagemin task processor for glov-build

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

imagemin task processor for glov-build

Wraps 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 default
  • overrides - optional list of override plugin lists to use for matching filenames. The first match will be used, otherwise the defaults in plugins will be used

Example 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),
      ],
    }],
  }),
});

Keywords

glov-build

FAQs

Package last updated on 12 Jan 2023

Did you know?

Socket

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.

Install

Related posts