Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Jan 13, 2024
1 parent dcbbab1 commit 164d01e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
--no-modify-path \
--profile minimal \
--target wasm32-unknown-emscripten \
--default-toolchain nightly-2023-12-16 \
--default-toolchain nightly-2024-01-13 \
--component rust-src

# Cache settings
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export RUSTFLAGS+=" --remap-path-prefix=$CARGO_HOME/registry/src/="
export RUSTFLAGS+=" --remap-path-prefix=$DEPS/="

# Dependency version numbers
VERSION_ZLIB_NG=2.1.5 # https://github.com/zlib-ng/zlib-ng
VERSION_ZLIB_NG=2.1.6 # https://github.com/zlib-ng/zlib-ng
VERSION_FFI=3.4.4 # https://github.com/libffi/libffi
VERSION_GLIB=2.79.0 # https://gitlab.gnome.org/GNOME/glib
VERSION_EXPAT=2.5.0 # https://github.com/libexpat/libexpat
Expand All @@ -170,7 +170,7 @@ VERSION_LCMS2=2.16 # https://github.com/mm2/Little-CMS
VERSION_HWY=1.0.7 # https://github.com/google/highway
VERSION_BROTLI=1.1.0 # https://github.com/google/brotli
VERSION_MOZJPEG=4.1.5 # https://github.com/mozilla/mozjpeg
VERSION_JXL=0.9.0 # https://github.com/libjxl/libjxl
VERSION_JXL=0.9.1 # https://github.com/libjxl/libjxl
VERSION_SPNG=0.7.4 # https://github.com/randy408/libspng
VERSION_IMAGEQUANT=2.4.1 # https://github.com/lovell/libimagequant
VERSION_CGIF=0.3.2 # https://github.com/dloebl/cgif
Expand Down
8 changes: 4 additions & 4 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"copy-webpack-plugin": "^12.0.1",
"css-loader": "^6.9.0",
"fflate": "^0.8.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"mini-css-extract-plugin": "^2.7.7",
"monaco-editor": "^0.45.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"terser-webpack-plugin": "^5.3.9",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
Expand Down
8 changes: 4 additions & 4 deletions test/unit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
<body>
<div id="mocha"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.2.0/mocha.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.3.10/chai.min.js" crossorigin="anonymous"></script>
<script class="mocha-init">
mocha.setup({
ui: 'bdd',
Expand All @@ -92,13 +91,14 @@
<script type="module" src="test_mosaicing.js"></script>
<script type="module" src="test_resample.js"></script>
<script type="module" class="mocha-exec">
// Global variables used throughout the unit tests
globalThis.expect = chai.expect;

// Uncomment to test the web ES6 module
// import Vips from './lib/vips-es6.js';

import * as Helpers from './helpers.js';
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.0.0/chai.min.js';

// Global variables used throughout the unit tests
globalThis.expect = expect;

const options = {
print: (stdout) => console.log(stdout.replace(/\033\[[0-9;]*m/g, "")),
Expand Down
2 changes: 1 addition & 1 deletion test/unit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "mocha -s 5000 -t 120000 *.js -r node-helper.js"
},
"devDependencies": {
"chai": "^4.3.10",
"chai": "^5.0.0",
"mocha": "^10.2.0"
},
"engines": {
Expand Down

0 comments on commit 164d01e

Please sign in to comment.