Package Exports
- imagemin-jpegtran
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 (imagemin-jpegtran) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
imagemin-jpegtran

jpegtran imagemin plugin
Install
$ npm install --save imagemin-jpegtran
Usage
const imagemin = require('imagemin');
const imageminJpegtran = require('imagemin-jpegtran');
imagemin(['images/*.jpg'], 'build/images', {use: [imageminJpegtran()]}).then(() => {
console.log('Images optimized');
});
API
imageminJpegtran([options])(buffer)
Returns a promise for a buffer.
options
progressive
Type: boolean
Default: false
Lossless conversion to progressive.
arithmetic
Type: boolean
Default: false
Use arithmetic coding.
buffer
Type: buffer
Buffer to optimize.
License
MIT © imagemin