@editframe/assets 0.9.0-beta.3 → 0.10.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,7 +80,6 @@ const generateTrackFragmentIndexFromPath = async (absolutePath) => {
80
80
  cts: fragment.cts,
81
81
  dts: fragment.dts,
82
82
  duration: fragment.duration,
83
- // biome-ignore lint/style/noNonNullAssertion: This was checked above
84
83
  offset: trackByteOffsets[fragment.track],
85
84
  size: fragment.data.byteLength
86
85
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/assets",
3
- "version": "0.9.0-beta.3",
3
+ "version": "0.10.0-beta.3",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -94,11 +94,9 @@ export const generateTrackFragmentIndexFromPath = async (
94
94
  cts: fragment.cts,
95
95
  dts: fragment.dts,
96
96
  duration: fragment.duration,
97
- // biome-ignore lint/style/noNonNullAssertion: This was checked above
98
97
  offset: trackByteOffsets[fragment.track]!,
99
98
  size: fragment.data.byteLength,
100
99
  });
101
- // biome-ignore lint/style/noNonNullAssertion: this was checked above
102
100
  trackByteOffsets[fragment.track]! += fragment.data.byteLength;
103
101
  }
104
102
  }