Skip to content

Commit

Permalink
update bcp-47 dependencies to latest, ESM-only version (Dash-Industry…
Browse files Browse the repository at this point in the history
  • Loading branch information
stschr authored Aug 14, 2023
1 parent 50af3de commit 0eb8fa8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"yargs": "16.0.3"
},
"dependencies": {
"bcp-47-match": "^1.0.3",
"bcp-47-normalize": "^1.1.1",
"bcp-47-match": "^2.0.3",
"bcp-47-normalize": "^2.3.0",
"codem-isoboxer": "0.3.9",
"es6-promise": "^4.2.8",
"fast-deep-equal": "2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/dash/DashAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import Event from './vo/Event';
import FactoryMaker from '../core/FactoryMaker';
import DashManifestModel from './models/DashManifestModel';
import PatchManifestModel from './models/PatchManifestModel';
import bcp47Normalize from 'bcp-47-normalize';
import {bcp47Normalize} from 'bcp-47-normalize';

/**
* @module DashAdapter
Expand Down
2 changes: 1 addition & 1 deletion src/dash/parser/matchers/LangMatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
import BaseMatcher from './BaseMatcher';
import DashConstants from '../../constants/DashConstants';
import bcp47Normalize from 'bcp-47-normalize';
import {bcp47Normalize} from 'bcp-47-normalize';

class LangMatcher extends BaseMatcher {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion src/streaming/controllers/MediaController.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import Events from '../../core/events/Events';
import EventBus from '../../core/EventBus';
import FactoryMaker from '../../core/FactoryMaker';
import Debug from '../../core/Debug';
import bcp47Normalize from 'bcp-47-normalize';
import {bcp47Normalize} from 'bcp-47-normalize';
import {extendedFilter} from 'bcp-47-match';

function MediaController() {
Expand Down

0 comments on commit 0eb8fa8

Please sign in to comment.