svga-compresser
v1.0.3
Published
```sh npm install svga-compresser ```
Readme
svga-compresser
安装
npm install svga-compressernode使用
var { compressSvga } = require("svga-compresser")
compressSvga(
"./test/test.svga",
false,
"tinifyKey",
"./test/test2.svga"
)命令行批量使用
npm install svga-compresser -g
compressSvga -i test -o test1 -p false -k tinifyKeynpm install svga-compresser
npx compressSvga -i test -o test1 -p false -k tinifyKey//package.json里使用
{
"scripts": {
"comp": "compressSvga -i test -o test1 -p false -k tinifyKey"
}
}