Skip to content

Commit

Permalink
fix(player): audio boost not working
Browse files Browse the repository at this point in the history
closes #1385
  • Loading branch information
mihar-22 committed Aug 12, 2024
1 parent 6801a84 commit 0917752
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "^0.23.0",
"fs-extra": "^11.2.0",
"get-tsconfig": "^4.7.6",
"magic-string": "^0.30.11",
"maverick.js": "0.43.2",
"media-icons": "^1.1.5",
Expand Down
5 changes: 5 additions & 0 deletions packages/vidstack/build/rollup-ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import path from 'node:path';

import { transform as esbuild } from 'esbuild';
import fs from 'fs-extra';
import { getTsconfig } from 'get-tsconfig';

const configName = 'tsconfig.build.json',
configRaw = getTsconfig(process.cwd(), configName, new Map())?.config;

/**
*
Expand Down Expand Up @@ -32,6 +36,7 @@ export function typescript(options) {
target: 'esnext',
loader: 'ts',
sourcemap: true,
tsconfigRaw: configRaw,
...options,
});
},
Expand Down
1 change: 1 addition & 0 deletions packages/vidstack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"es-module-lexer": "^1.5.4",
"esbuild": "^0.23.0",
"fscreen": "^1.2.0",
"get-tsconfig": "^4.7.6",
"hls.js": "^1.5.14",
"jassub": "^1.7.16",
"jsdom": "^21.1.2",
Expand Down
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit 0917752

Please sign in to comment.