Skip to content

Commit e1e6a2c

Browse files
authored
Merge pull request #8 from silx-kit/up-h5web
Upgrade H5Web to v13
2 parents f631150 + dd92799 commit e1e6a2c

File tree

3 files changed

+56
-54
lines changed

3 files changed

+56
-54
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"analyze": "npx source-map-explorer 'build/static/js/*.js'"
2727
},
2828
"dependencies": {
29-
"@h5web/app": "12.0.0",
30-
"@h5web/h5wasm": "12.0.0",
29+
"@h5web/app": "13.0.0",
30+
"@h5web/h5wasm": "13.0.0",
3131
"@react-hookz/web": "15.1.0",
3232
"h5wasm-plugins": "0.0.3",
3333
"immer": "9.0.15",

pnpm-lock.yaml

Lines changed: 51 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import '@h5web/app/styles.css';
22
import './index.css';
33

4-
import { assertNonNull } from '@h5web/app';
4+
import { assertNonNull, enableBigIntSerialization } from '@h5web/app';
55
import { StrictMode } from 'react';
66
import { createRoot } from 'react-dom/client';
77
import { BrowserRouter } from 'react-router-dom';
88

99
import App from './App';
1010

11+
enableBigIntSerialization();
12+
1113
const rootElem = document.querySelector('#root');
1214
assertNonNull(rootElem);
1315

0 commit comments

Comments
 (0)