mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { defineConfig } from "bumpp";
|
|
import fg from "fast-glob";
|
|
|
|
export default defineConfig({
|
|
files: fg.sync(["./packages/*/package.json"], {
|
|
ignore: ["./packages/*-extension/package.json"],
|
|
}),
|
|
});
|