Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Nov 6, 2024
1 parent 09f49a4 commit 7fa9bf2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ VERSION_WEBP=1.4.0 # https://chromium.googlesource.com/webm/libwebp
VERSION_TIFF=4.7.0 # https://gitlab.com/libtiff/libtiff
VERSION_RESVG=0.44.0 # https://github.com/linebender/resvg
VERSION_AOM=3.10.0 # https://aomedia.googlesource.com/aom
VERSION_HEIF=1.18.2 # https://github.com/strukturag/libheif
VERSION_HEIF=1.19.1 # https://github.com/strukturag/libheif
VERSION_VIPS=8.16.0 # https://github.com/libvips/libvips

VERSION_EMSCRIPTEN="$(emcc -dumpversion)"
Expand Down Expand Up @@ -486,7 +486,7 @@ EOL
# Compile with -D__EMSCRIPTEN_STANDALONE_WASM__ to disable the Embind implementation.
emcmake cmake -B_build -H. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$TARGET $CMAKE_ARGS -DCMAKE_FIND_ROOT_PATH=$TARGET \
-DBUILD_SHARED_LIBS=FALSE -DCMAKE_POSITION_INDEPENDENT_CODE=$PIC -DENABLE_PLUGIN_LOADING=FALSE \
-DBUILD_TESTING=FALSE -DWITH_EXAMPLES=FALSE -DWITH_LIBDE265=FALSE -DWITH_X265=FALSE \
-DBUILD_TESTING=FALSE -DWITH_EXAMPLES=FALSE -DWITH_LIBDE265=FALSE -DWITH_X265=FALSE -DWITH_OpenH264_DECODER=FALSE \
-DCMAKE_CXX_FLAGS="$CXXFLAGS -D__EMSCRIPTEN_STANDALONE_WASM__" \
-DENABLE_MULTITHREADING_SUPPORT=FALSE # Disable threading support, we rely on libvips' thread pool.
make -C _build install
Expand Down
6 changes: 3 additions & 3 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"fflate": "^0.8.2",
"html-webpack-plugin": "^5.6.2",
"mini-css-extract-plugin": "^2.9.1",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"monaco-editor": "^0.52.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions test/unit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>wasm-vips testsuite</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- FIXME(kleisauke): https://github.com/cdnjs/tools/issues/285 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.7.3/mocha.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.8.2/mocha.css" crossorigin="anonymous">
<style>
html,
body {
Expand Down 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.1/chai.js';
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.1.2/chai.js';

// Global variables used throughout the unit tests
globalThis.expect = expect;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"test": "mocha -s 5000 -t 120000 *.js -r node-helper.js"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3"
"chai": "^5.1.2",
"mocha": "^10.8.2"
},
"engines": {
"node": ">=16.4.0"
Expand Down

0 comments on commit 7fa9bf2

Please sign in to comment.