Skip to content

Commit

Permalink
ts-ebml plugin: add support for v3.x (#716)
Browse files Browse the repository at this point in the history
* update dev dependencies

* add support for ts-ebml v3.x

* update changelog
  • Loading branch information
thijstriemstra committed Mar 17, 2024
1 parent 3795a2a commit 6075b3f
Show file tree
Hide file tree
Showing 5 changed files with 159 additions and 126 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
@@ -1,5 +1,9 @@
# videojs-record changelog

## 4.8.0 - unreleased

- ts-ebml plugin: add support for v3.x (#716)

## 4.7.0 - 2024/02/14

- Fix video.js v8 deprecation warnings (#707)
Expand Down
5 changes: 5 additions & 0 deletions build-config/fragments/common.js
Expand Up @@ -47,7 +47,12 @@ module.exports = {
// webpack < 5 used to include polyfills for node.js core modules by default.
// This is no longer the case; enable required polyfills here.
fallback: {
// used for ts-ebml plugin, see https://github.com/legokichi/ts-ebml/issues/25
'buffer': require.resolve('buffer/')
},
alias: {
// used for ts-ebml plugin, see https://github.com/legokichi/ts-ebml/issues/48
ebml: 'ebml/lib/ebml.esm.js'
}
},
// specify dependencies for the library that are not resolved by webpack,
Expand Down

0 comments on commit 6075b3f

Please sign in to comment.