Skip to content

Commit

Permalink
fix: binaries (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi authored Jul 9, 2019
1 parent e00988a commit cf08d98
Show file tree
Hide file tree
Showing 23 changed files with 8 additions and 11 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ matrix:
# node_js: "10"
# script: npm run $JOB_PART
# env: JOB_PART=test:only

- os: linux
node_js: "8"
script: npm run $JOB_PART
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org).

## 2.0.0-rc.2 - 2019-07-09

- fix: binaries

## 2.0.0-rc.1 - 2019-07-09

- feat: more `macos` and `windows` compiled binaries
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mozjpeg-binaries",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "Wrapper for mozjpeg binaries (cjpeg, djpeg, jpegtran, rdjpgcom, tjbench and wrjpgcom).",
"repository": {
"type": "git",
Expand Down
10 changes: 1 addition & 9 deletions src/bin-wrappers.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,7 @@ const url = `https://raw.githubusercontent.com/itgalaxy/mozjpeg-binaries/v${pkg.
module.exports = {
cjpeg: new BinWrappers()
.src(`${url}linux/cjpeg`, "linux")
.src(`${url}linux/libjpeg.a`, "linux")
.src(`${url}linux/libjpeg.la`, "linux")
.src(`${url}linux/libturbojpeg.a`, "linux")
.src(`${url}linux/libturbojpeg.la`, "linux")
.src(`${url}linux/cjpeg`, "darwin")
.src(`${url}linux/libjpeg.a`, "darwin")
.src(`${url}linux/libjpeg.la`, "darwin")
.src(`${url}linux/libturbojpeg.a`, "darwin")
.src(`${url}linux/libturbojpeg.la`, "darwin")
.src(`${url}macos/cjpeg`, "darwin")
.src(`${url}windows/x64/cjpeg.exe`, "win32", "x64")
.src(`${url}windows/x86/cjpeg.exe`, "win32", "x86")
.dest(dest)
Expand Down
Binary file modified vendor/macos/cjpeg
Binary file not shown.
Binary file modified vendor/macos/djpeg
Binary file not shown.
Binary file modified vendor/macos/jpegtran
Binary file not shown.
Binary file modified vendor/macos/rdjpgcom
Binary file not shown.
Binary file modified vendor/macos/tjbench
Binary file not shown.
Binary file modified vendor/macos/wrjpgcom
Binary file not shown.
Binary file modified vendor/windows/x64/cjpeg.exe
Binary file not shown.
Binary file modified vendor/windows/x64/djpeg.exe
Binary file not shown.
Binary file modified vendor/windows/x64/jpegtran.exe
Binary file not shown.
Binary file modified vendor/windows/x64/rdjpgcom.exe
Binary file not shown.
Binary file added vendor/windows/x64/tjbench.exe
Binary file not shown.
Binary file modified vendor/windows/x64/wrjpgcom.exe
Binary file not shown.
Binary file modified vendor/windows/x86/cjpeg.exe
Binary file not shown.
Binary file modified vendor/windows/x86/djpeg.exe
Binary file not shown.
Binary file modified vendor/windows/x86/jpegtran.exe
Binary file not shown.
Binary file modified vendor/windows/x86/rdjpgcom.exe
Binary file not shown.
Binary file added vendor/windows/x86/tjbench.exe
Binary file not shown.
Binary file modified vendor/windows/x86/wrjpgcom.exe
Binary file not shown.

0 comments on commit cf08d98

Please sign in to comment.