Skip to content

Commit db22284

Browse files
authored
Upgrade dependencies (#43)
1 parent 9f9ff32 commit db22284

4 files changed

Lines changed: 22 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.7.1
4+
5+
- Upgrade all dependencies to the latest npm versions, but not
6+
web-test-runner-jasmine because it requires node>=24.0.0, and not jasmine-core
7+
because of web-test-runner-jasmine.
8+
39
## v0.7.0
410

511
- Upgrade to Material 3 Web Components (https://material-web.dev/).

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codec_compare",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Codec performance comparison tool",
55
"publisher": "Google LLC",
66
"author": "Yannis Guyon",
@@ -13,19 +13,19 @@
1313
"test": "web-test-runner \"src/**/*_test.ts\" --node-resolve"
1414
},
1515
"devDependencies": {
16-
"@types/jasmine": "^5.1.5",
17-
"@types/node": "^22.10.2",
18-
"@types/plotly.js-dist": "npm:@types/plotly.js@^2.12.30",
19-
"@web/dev-server-esbuild": "^1.0.4",
20-
"@web/test-runner": "^0.19.0",
21-
"jasmine-core": "^5.5.0",
22-
"typescript": "^5.7.2",
23-
"vite": "^6.3.2",
24-
"web-test-runner-jasmine": "^0.0.6"
16+
"@types/jasmine": "^6.0.0",
17+
"@types/node": "^25.6.0",
18+
"@types/plotly.js-dist": "npm:@types/plotly.js@^3.0.10",
19+
"@web/dev-server-esbuild": "^1.0.5",
20+
"@web/test-runner": "^0.20.2",
21+
"jasmine-core": "^5.13.0",
22+
"typescript": "^6.0.3",
23+
"vite": "^8.0.10",
24+
"web-test-runner-jasmine": "^0.1.5"
2525
},
2626
"dependencies": {
27-
"@material/web": "^1.4.1",
28-
"lit": "^3.2.1",
29-
"plotly.js-dist": "^2.35.3"
27+
"@material/web": "^2.4.1",
28+
"lit": "^3.3.2",
29+
"plotly.js-dist": "^3.5.1"
3030
}
3131
}

src/codec_compare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export class CodecCompare extends LitElement {
258258
</p>
259259
260260
<p id="credits">
261-
Codec Compare version 0.7.0<br>
261+
Codec Compare version 0.7.1<br>
262262
<a href="https://github.com/webmproject/codec-compare">
263263
Sources on GitHub
264264
</a>

vite.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export default defineConfig({
2525
main: resolve(__dirname, 'index.html'),
2626
visualizer: resolve(__dirname, 'visualizer.html')
2727
}
28-
}
28+
},
29+
chunkSizeWarningLimit: 10000
2930
},
3031
publicDir: 'assets'
3132
})

0 commit comments

Comments
 (0)