JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q11732F
  • License MIT

A webpack plugin to generate icons of different sizes

Package Exports

  • generate-icon-webpack-plugin
  • generate-icon-webpack-plugin/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (generate-icon-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

generate-icon-webpack-plugin

A webpack plugin to generate icons of different sizes

Usage

add the plugin:

yarn add generate-icon-webpack-plugin -D

configure the plugin:

new CrxPackWebpackPlugin({
  original: path.resolve(__dirname, "./icon.png"),
  outputDir: path.resolve(__dirname, "./build/icons/"),
  size: [128, 64, 48, 32, 16], // 128, It can be an array or a number
  format: "png",
  grayscale: false,
  imgName: "icon",
  log: true
})

Configuration Settings

Option Required Type Default About
original yes string none images that need to be converted
outputDir yes string none the directory for the output picture
size yes number[]/number none image size, if it is a number, only one image is generated, if it is an array, it is multiple images
format no string "png" the format of the output picture
grayscale no boolean false whether to generate a gray image
imgName no string "icon" name of the picture
log no boolean false print picture information

Acknowledgement

Inspired by plasmo's ability to generate images.