chore: bump config

This commit is contained in:
Bereket Engida
2024-09-02 23:59:39 +03:00
parent c5b722edb3
commit 8b2c2678db
3 changed files with 10 additions and 4 deletions

6
bump.config.ts Normal file
View File

@@ -0,0 +1,6 @@
import { defineConfig } from "bumpp";
import fg from "fast-glob";
export default defineConfig({
files: fg.sync(["./packages/*/package.json"]),
});

View File

@@ -2,7 +2,7 @@
"name": "root",
"private": true,
"type": "module",
"version": "0.1.0",
"version": "0.0.2-beta.8",
"packageManager": "pnpm@9.1.1",
"scripts": {
"build": "turbo --filter \"./packages/*\" build",
@@ -11,8 +11,8 @@
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"release": "turbo --filter \"./packages/*\" typecheck && build && bumpp -r",
"release:beta": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag beta",
"release": "bumpp && build && pnpm -r publish --access public",
"release:beta": "bumpp && build && pnpm -r publish --access public --tag beta",
"test": "turbo --filter \"./packages/*\" test",
"typecheck": "turbo --filter \"./packages/*\" typecheck",
"knip": "turbo --filter \"./packages/*\" knip"

View File

@@ -1,12 +1,12 @@
{
"name": "better-auth",
"version": "0.0.2-beta.8",
"description": "Framework-agnostic, batteries included authentication library for typescript",
"type": "module",
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=16384' tsup --clean",
"dev": "NODE_OPTIONS='--max-old-space-size=16384' tsup --watch",
"test": "vitest",
"bump": "bumpp",
"typecheck": "tsc --noEmit"
},
"main": "./dist/index.js",