@misterhuydo/sentinel 1.0.40 → 1.0.41
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/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-21T22:00:33.969Z",
|
|
3
|
+
"checkpoint_at": "2026-03-21T22:00:33.970Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ config_loader.py — Load and hot-reload all .properties config files.
|
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
import logging
|
|
6
|
+
import os
|
|
6
7
|
import signal
|
|
7
8
|
from dataclasses import dataclass, field
|
|
8
9
|
from pathlib import Path
|
|
@@ -189,7 +190,7 @@ class ConfigLoader:
|
|
|
189
190
|
r = RepoConfig()
|
|
190
191
|
r.repo_name = path.stem
|
|
191
192
|
r.repo_url = d.get("REPO_URL", "")
|
|
192
|
-
r.local_path = d.get("LOCAL_PATH", "")
|
|
193
|
+
r.local_path = os.path.expanduser(d.get("LOCAL_PATH", ""))
|
|
193
194
|
r.branch = d.get("BRANCH", "main")
|
|
194
195
|
r.auto_publish = d.get("AUTO_PUBLISH", "false").lower() == "true"
|
|
195
196
|
r.cicd_type = d.get("CICD_TYPE", "")
|