minimonolith 0.14.3 → 0.14.4

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -153,10 +153,10 @@ For SQLite:
153
153
 
154
154
  ```makefile
155
155
  MM_API_DB_DIALECT=sqlite
156
- MM_API_DB_DATABASE=<your_database_name>
157
156
  MM_API_DB_STORAGE=:memory: # For in-memory SQLite database
158
157
  # Or
159
158
  MM_API_DB_STORAGE=path/to/your/sqlite/file.db # For file-based SQLite database
159
+ MM_API_DB_DATABASE=<your_database_name>
160
160
  MM_API_LOCAL_ENV=true
161
161
  MM_API_PROD_ENV=false
162
162
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "minimonolith",
3
3
  "type": "module",
4
- "version": "0.14.3",
4
+ "version": "0.14.4",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
7
7
  "scripts": {