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", "name": "@moduletrace/bun-sqlite",
"version": "1.0.8", "version": "1.0.9",
"description": "SQLite manager for Bun", "description": "SQLite manager for Bun",
"author": "Benjamin Toby", "author": "Benjamin Toby",
"main": "dist/index.js", "main": "dist/index.js",

View File

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

View File

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