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

@@ -43,7 +43,6 @@
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-firefox-launcher": "2.1.3",
"karma-jasmine": "5.1.0",
"rollup-plugin-terser": "7.0.2"
"karma-jasmine": "5.1.0"
}
}

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()],
},
}
]