1.0.0 • Published 2 years ago

@cyber-vision/image-minify v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

创建配置文件.minifyrc.js模板:

image-minify init

执行压缩

image-minify run

运行时配置.minifyrc.js说明

const path=require("path");

module.exports={
  /** 基于glob语法的图片匹配 **/
  match:"./src/**/*.{png,jpg}",
  /** 需要忽略的图片 **/
  ignore:"./src/**/*.low.{png,jpg}",
  /** 迭代重命名的规则 **/
  rename:(current_file_name)=>{
    const {dir,name,ext}=path.parse(current_file_name);
    return `${dir}/${name}.low${ext}`;
  }
};