Results 379 comments of Cas_

chill with the pings a bit, there are 15 PR's in queue before yours which also need to be reviewed

is there any need to do this? creating an empty track would be a step forward, but i dont understand why you'd expose ass_process_data, when the subtitle data embedded inside...

hm, that makes sense I assumed that's how EBML was formatted, as all the EBML parsing libraries that are out there for JS format things quite nicely, but I admit...

seems like specifying ```yml browserify: - plugin: 'esmify' ``` inside .airtap.yml *mostly* fixes this except for type assertion, for browserify CLI doing `-t [ babelify --presets [@babel/preset-env] --plugins [@babel/plugin-syntax-import-assertions]]` does...

> ```yaml > browserify: > - transform: babelify > presets: ['@babel/preset-env'] > plugins: ['@babel/plugin-syntax-import-assertions'] > ``` this doesn't seem to work for me, even tho it parses it

@vweevers `SyntaxError: 'import' and 'export' may appear only with 'sourceType: module' (2:0) while parsing` see: https://github.com/ThaUnknown/webtorrent/commit/7adb87fd8ba63a1854c75070ab61b7b125188d66

> My example was just to show how to specify transform options. The complete configuration should also include esmify. for CLI browserify you don't need esmify when u specify babelify,...

~~@vweevers this seems to be a bug with airtap, as running the cli command I listed above works fine, with only babelify~~

@vweevers welp, feel free to add this to the readme To compile ESM tests and modules to your `.airtap.yml` add: ```yml browserify: - transform: babelify global: true presets: ['@babel/preset-env'] plugins:...

superseded by https://github.com/webtorrent/create-torrent/pull/185