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.
15 lines
605 B
15 lines
605 B
'use strict';
|
|
const path = require('path');
|
|
const BinWrapper = require('bin-wrapper');
|
|
const pkg = require('../package.json');
|
|
|
|
const url = `https://raw.githubusercontent.com/imagemin/pngquant-bin/v${pkg.version}/vendor/`;
|
|
|
|
module.exports = new BinWrapper()
|
|
.src(`${url}macos/pngquant`, 'darwin')
|
|
.src(`${url}linux/x86/pngquant`, 'linux', 'x86')
|
|
.src(`${url}linux/x64/pngquant`, 'linux', 'x64')
|
|
.src(`${url}freebsd/x64/pngquant`, 'freebsd', 'x64')
|
|
.src(`${url}win/pngquant.exe`, 'win32')
|
|
.dest(path.resolve(__dirname, '../vendor'))
|
|
.use(process.platform === 'win32' ? 'pngquant.exe' : 'pngquant');
|
|
|