Skip to content

Commit

Permalink
chore: update to vhs-utils@3 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Jan 11, 2021
1 parent ec98d72 commit f701c0f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 11 deletions.
27 changes: 21 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
],
"dependencies": {
"@babel/runtime": "^7.5.5",
"@videojs/vhs-utils": "^2.2.1",
"@videojs/vhs-utils": "^3.0.0",
"global": "^4.3.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/line-stream.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file m3u8/line-stream.js
*/
import Stream from '@videojs/vhs-utils/dist/stream.js';
import Stream from '@videojs/vhs-utils/es/stream.js';

/**
* A stream that buffers string input and generates a `data` event for each
Expand Down
2 changes: 1 addition & 1 deletion src/parse-stream.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file m3u8/parse-stream.js
*/
import Stream from '@videojs/vhs-utils/dist/stream.js';
import Stream from '@videojs/vhs-utils/es/stream.js';

/**
* "forgiving" attribute list psuedo-grammar:
Expand Down
4 changes: 2 additions & 2 deletions src/parser.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* @file m3u8/parser.js
*/
import Stream from '@videojs/vhs-utils/dist/stream.js';
import decodeB64ToUint8Array from '@videojs/vhs-utils/dist/decode-b64-to-uint8-array.js';
import Stream from '@videojs/vhs-utils/es/stream.js';
import decodeB64ToUint8Array from '@videojs/vhs-utils/es/decode-b64-to-uint8-array.js';
import LineStream from './line-stream';
import ParseStream from './parse-stream';

Expand Down

0 comments on commit f701c0f

Please sign in to comment.