chore(splitjs): get rid of minified version

Not useful for the app.
This commit is contained in:
Elian Doran
2025-10-21 19:14:31 +03:00
parent 429767e45c
commit ab3852678e
3 changed files with 8 additions and 37 deletions

View File

@@ -1,5 +1,4 @@
import buble from '@rollup/plugin-buble'
import { terser } from 'rollup-plugin-terser'
import pkg from "./package.json" with { type: "json" };
const output = {
@@ -22,14 +21,5 @@ export default [
},
],
plugins: [buble()],
},
{
input: 'src/split.js',
output: {
...output,
sourcemap: true,
file: "dist/split.min.js",
},
plugins: [buble(), terser()],
},
}
]