You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
471 B
13 lines
471 B
'use strict';
|
|
const path = require('path');
|
|
const BinWrapper = require('bin-wrapper');
|
|
const pkg = require('../package.json');
|
|
|
|
const url = `https://raw.githubusercontent.com/imagemin/mozjpeg-bin/v${pkg.version}/vendor/`;
|
|
|
|
module.exports = new BinWrapper()
|
|
.src(`${url}macos/cjpeg`, 'darwin')
|
|
.src(`${url}linux/cjpeg`, 'linux')
|
|
.src(`${url}win/cjpeg.exe`, 'win32')
|
|
.dest(path.join(__dirname, '../vendor'))
|
|
.use(process.platform === 'win32' ? 'cjpeg.exe' : 'cjpeg');
|
|
|