This commit is contained in:
Benjamin Toby 2026-03-08 10:11:08 +01:00
parent a2f07e3c55
commit 406759306b
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@moduletrace/bun-sqlite",
"version": "1.0.8",
"version": "1.0.9",
"description": "SQLite manager for Bun",
"author": "Benjamin Toby",
"main": "dist/index.js",

View File

@ -1,11 +1,14 @@
#!/bin/bash
set -e
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
tsc --noEmit
rm -rf dist
tsc
git add .

View File

@ -2,7 +2,7 @@
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,