Files
imagemin-mozjpeg/mozjpeg/index.js
2020-08-04 13:08:36 +08:00

9 lines
236 B
JavaScript

'use strict';
const path = require('path');
const BinWrapper = require('bin-wrapper');
module.exports = new BinWrapper()
.dest(path.resolve(__dirname, './vendor'))
.use(process.platform === 'win32' ? 'cjpeg.exe' : 'cjpeg')
.path();