Skip to content

Commit

Permalink
Update jxl-oxide-wasm to v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Jan 29, 2025
1 parent f82177a commit f93b2be
Show file tree
Hide file tree
Showing 5 changed files with 587 additions and 460 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.0.11 (2025-01-29)

- Update `jxl-oxide-wasm` to v0.11.1

## v1.0.10 (2024-12-13)

- Update `jxl-oxide-wasm` to v0.10.2
Expand Down
11 changes: 5 additions & 6 deletions esbuild.mjs → esbuild.mts
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import { context } from 'esbuild';
import { context, type Plugin } from 'esbuild';

const production = process.argv.includes('--production');
const watch = process.argv.includes('--watch');

/**
* @type {import('esbuild').Plugin}
*/
const esbuildProblemMatcherPlugin = {
const esbuildProblemMatcherPlugin: Plugin = {
name: 'esbuild-problem-matcher',

setup(build) {
Expand All @@ -17,8 +14,10 @@ const esbuildProblemMatcherPlugin = {
for (const { text, location } of result.errors) {
console.error(`✘ [ERROR] ${text}`);
if (location) {
const line = location.line.toString();
const column = location.column.toString();
console.error(
` ${location.file}:${location.line}:${location.column}:`,
` ${location.file}:${line}:${column}:`,
);
}
}
Expand Down
Loading

0 comments on commit f93b2be

Please sign in to comment.