guetzli
Version:
guetzli wrapper that makes it seamlessly available as a local dependency
17 lines (13 loc) • 629 B
JavaScript
import fs from 'node:fs';
import process from 'node:process';
import {fileURLToPath} from 'node:url';
import BinWrapper from 'bin-wrapper';
const pkg = JSON.parse(fs.readFileSync(new URL('../package.json', import.meta.url)));
const url = `https://raw.githubusercontent.com/imagemin/guetzli-bin/v${pkg.version}/vendor/`;
const binWrapper = new BinWrapper()
.src(`${url}macos/guetzli`, 'darwin')
.src(`${url}linux/guetzli`, 'linux')
.src(`${url}win/guetzli.exe`, 'win32')
.dest(fileURLToPath(new URL('../vendor', import.meta.url)))
.use(process.platform === 'win32' ? 'guetzli.exe' : 'guetzli');
export default binWrapper;