claude-code-autoconfig 1.0.85 → 1.0.86
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/bin/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -67,7 +67,7 @@ function formatTimestamp() {
|
|
|
67
67
|
function parseAppliedUpdates(filePath) {
|
|
68
68
|
if (!fs.existsSync(filePath)) return [];
|
|
69
69
|
const content = fs.readFileSync(filePath, 'utf8');
|
|
70
|
-
const match = content.match(/<!-- @applied\n([\s\S]*?)-->/);
|
|
70
|
+
const match = content.match(/<!-- @applied\r?\n([\s\S]*?)-->/);
|
|
71
71
|
if (!match) return [];
|
|
72
72
|
|
|
73
73
|
return match[1].trim().split('\n')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.86",
|
|
4
4
|
"description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
|
|
5
5
|
"author": "ADAC 1001 <info@adac1001.com>",
|
|
6
6
|
"license": "MIT",
|