vibe-forge 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/database.sh +1 -1
package/package.json
CHANGED
package/src/lib/database.sh
CHANGED
|
@@ -112,7 +112,7 @@ db_init() {
|
|
|
112
112
|
# Enable WAL mode for concurrent reads without blocking writes.
|
|
113
113
|
# WAL + NORMAL synchronous is the recommended pairing for local tooling:
|
|
114
114
|
# faster than DELETE+FULL while still durable against OS crashes.
|
|
115
|
-
sqlite3 "$FORGE_DB" "PRAGMA journal_mode=WAL; PRAGMA synchronous=NORMAL;"
|
|
115
|
+
sqlite3 "$FORGE_DB" "PRAGMA journal_mode=WAL; PRAGMA synchronous=NORMAL;" > /dev/null
|
|
116
116
|
|
|
117
117
|
# Create tables if they don't exist
|
|
118
118
|
sqlite3 "$FORGE_DB" <<'SQL'
|