hazo_chat 4.0.1 → 4.0.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/README.md +3 -1
- package/SETUP_CHECKLIST.md +4 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1320,7 +1320,9 @@ All buttons are sized consistently (`h-10 w-10`) to align properly with the text
|
|
|
1320
1320
|
|
|
1321
1321
|
## Configuration
|
|
1322
1322
|
|
|
1323
|
-
### hazo_chat_config.ini (Optional)
|
|
1323
|
+
### config/hazo_chat_config.ini (Optional)
|
|
1324
|
+
|
|
1325
|
+
Configuration files are stored in the `config/` directory. Consuming applications should also use a `config/` directory to store their configuration files for consistency across hazo packages.
|
|
1324
1326
|
|
|
1325
1327
|
```ini
|
|
1326
1328
|
[chat]
|
package/SETUP_CHECKLIST.md
CHANGED
|
@@ -1221,9 +1221,11 @@ Ensure all required CSS variables are defined. hazo_chat uses shadcn/ui standard
|
|
|
1221
1221
|
|
|
1222
1222
|
## 7. Configuration (Optional)
|
|
1223
1223
|
|
|
1224
|
+
Configuration files are stored in the `config/` directory. Consuming applications should also use a `config/` directory to store their configuration files for consistency across hazo packages.
|
|
1225
|
+
|
|
1224
1226
|
### hazo_connect Configuration
|
|
1225
1227
|
|
|
1226
|
-
Create `hazo_connect_config.ini
|
|
1228
|
+
Create `config/hazo_connect_config.ini`:
|
|
1227
1229
|
|
|
1228
1230
|
```ini
|
|
1229
1231
|
[database]
|
|
@@ -1233,7 +1235,7 @@ sqlite_path = ./data/app.db
|
|
|
1233
1235
|
|
|
1234
1236
|
### hazo_chat Configuration
|
|
1235
1237
|
|
|
1236
|
-
Create `hazo_chat_config.ini`
|
|
1238
|
+
Create `config/hazo_chat_config.ini` (optional):
|
|
1237
1239
|
|
|
1238
1240
|
```ini
|
|
1239
1241
|
[chat]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_chat",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "Chat interface for group-based communication with API-first architecture",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"build:test-app": "npm run build && cd test-app && npm run build",
|
|
44
44
|
"clean": "rm -rf dist",
|
|
45
45
|
"prebuild": "npm run clean",
|
|
46
|
+
"prepublishOnly": "npm run build",
|
|
46
47
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
47
48
|
},
|
|
48
49
|
"repository": {
|