lemon-mse 0.0.1 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ import { defineBuildConfig } from "unbuild";
2
+
3
+ export default defineBuildConfig(
4
+ ['src/xg-flv', 'src/xg-hls', 'src/xg-flv-hls', 'src/hls'].map(i => (
5
+ {
6
+ entries: [i],
7
+ outDir: "dist",
8
+ declaration: true,
9
+ rollup: {
10
+ inlineDependencies: false,
11
+ esbuild: {
12
+ minify: true,
13
+ // inlineDependencies: true,
14
+ },
15
+ dts: {
16
+ respectExternal: false
17
+ }
18
+ },
19
+ failOnWarn: false
20
+ }
21
+ ))
22
+ );
package/dist/hls.d.mts ADDED
@@ -0,0 +1 @@
1
+ export { default as Hls, default } from 'hls.js/dist/hls.light.mjs';
package/dist/hls.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { default as Hls, default } from 'hls.js/dist/hls.light.mjs';