@misterhuydo/sentinel 1.0.83 → 1.0.84
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 +2 -2
- package/lib/init.js +1 -2
- package/lib/upgrade.js +1 -2
- package/package.json +1 -1
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-23T05:
|
|
3
|
-
"checkpoint_at": "2026-03-23T05:
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-23T05:23:48.069Z",
|
|
3
|
+
"checkpoint_at": "2026-03-23T05:23:48.071Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/lib/init.js
CHANGED
|
@@ -341,8 +341,7 @@ function ensureClaudePermissions() {
|
|
|
341
341
|
}
|
|
342
342
|
try {
|
|
343
343
|
fs.ensureDirSync(require('path').dirname(settingsPath));
|
|
344
|
-
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '
|
|
345
|
-
');
|
|
344
|
+
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n');
|
|
346
345
|
ok('Claude Code permissions patched: ' + added.join(', '));
|
|
347
346
|
} catch (e) {
|
|
348
347
|
warn('Could not write ' + settingsPath + ': ' + e.message);
|
package/lib/upgrade.js
CHANGED
|
@@ -28,8 +28,7 @@ function ensureClaudePermissions() {
|
|
|
28
28
|
try {
|
|
29
29
|
const path = require('path');
|
|
30
30
|
fs.ensureDirSync(path.dirname(settingsPath));
|
|
31
|
-
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '
|
|
32
|
-
');
|
|
31
|
+
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n');
|
|
33
32
|
ok('Claude Code permissions patched: ' + added.join(', '));
|
|
34
33
|
} catch (e) {
|
|
35
34
|
warn('Could not write ' + settingsPath + ': ' + e.message);
|