Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed May 21, 2024
1 parent 443673f commit df39c84
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN \
--no-modify-path \
--profile minimal \
--target wasm32-unknown-emscripten \
--default-toolchain nightly-2024-04-27 \
--default-toolchain nightly-2024-05-21 \
--component rust-src

# Cache settings
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export RUSTFLAGS+=" --remap-path-prefix=$DEPS/="
# Dependency version numbers
VERSION_ZLIB_NG=2.1.6 # https://github.com/zlib-ng/zlib-ng
VERSION_FFI=3.4.6 # https://github.com/libffi/libffi
VERSION_GLIB=2.80.0 # https://gitlab.gnome.org/GNOME/glib
VERSION_GLIB=2.80.2 # https://gitlab.gnome.org/GNOME/glib
VERSION_EXPAT=2.6.2 # https://github.com/libexpat/libexpat
VERSION_EXIF=0.6.24 # https://github.com/libexif/libexif
VERSION_LCMS2=2.16 # https://github.com/mm2/Little-CMS
Expand Down
2 changes: 1 addition & 1 deletion playground/src/playground-runner.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

const options = {
print: (stdout) => console.log(stdout.replace(/\033\[[0-9;]*m/g, "")),
locateFile: (fileName, scriptDirectory) => scriptDirectory + fileName + '?<%= __webpack_hash__ %>',
locateFile: (fileName, scriptDirectory) => `${scriptDirectory}${fileName}?<%= __webpack_hash__ %>`,
preRun: (module) => {
module.setAutoDeleteLater(!document.referrer.includes('disableAutoDelete'));
module.setDelayFunction(fn => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

import * as Helpers from './helpers.js';
// FIXME(kleisauke): https://github.com/cdnjs/packages/issues/1748
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.1.0/chai.js';
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.1.1/chai.js';

// Global variables used throughout the unit tests
globalThis.expect = expect;
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": "^5.1.0",
"chai": "^5.1.1",
"mocha": "^10.4.0"
},
"engines": {
Expand Down

0 comments on commit df39c84

Please sign in to comment.