1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +00:00

feat(packages/stdlib): change build system to unbuild

This commit is contained in:
2024-04-19 02:29:27 +07:00
parent 26a99b7d67
commit 531e1721bb
6 changed files with 1630 additions and 407 deletions

View File

@@ -0,0 +1,10 @@
import { defineBuildConfig } from 'unbuild';
export default defineBuildConfig({
rollup: {
emitCJS: true,
esbuild: {
minify: true,
},
},
});