Revert back to worklet-loader compatible syntax

pull/28217/head
Johannes Marbach 2023-11-18 21:36:11 +01:00
parent d6ea051e46
commit 980633a7f5
1 changed files with 4 additions and 8 deletions

View File

@ -14,15 +14,11 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
// This import is needed for dead code analysis but not actually used because the
// built-in worker / worklet handling in Webpack 5 only supports static paths
// @ts-ignore no-unused-locals
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import mxRecorderWorkletPath from "./RecorderWorklet"; import mxRecorderWorkletPath from "./RecorderWorklet";
export default function recorderWorkletFactory(context: AudioContext): Promise<void> { export default function recorderWorkletFactory(context: AudioContext): Promise<void> {
// The context.audioWorklet.addModule syntax is required for Webpack 5 to correctly recognise // In future we should be using the built-in worklet support in Webpack 5 with the syntax
// this as a worklet rather than an asset. This also requires the parser.javascript.worker // described in https://github.com/webpack/webpack.js.org/issues/6869:
// configuration described in https://github.com/webpack/webpack.js.org/issues/6869. // addModule(/* webpackChunkName: "recorder.worklet" */ new URL("./RecorderWorklet.ts", import.meta.url));
return context.audioWorklet.addModule(/* webpackChunkName: "recorder.worklet" */ new URL("./RecorderWorklet.ts", import.meta.url)); return context.audioWorklet.addModule(mxRecorderWorkletPath);
} }