coder-config 0.41.10 → 0.41.12
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/ui/dist/index.html
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
<!-- PWA Manifest -->
|
|
21
21
|
<link rel="manifest" href="/manifest.json">
|
|
22
|
-
<script type="module" crossorigin src="/assets/index-
|
|
22
|
+
<script type="module" crossorigin src="/assets/index-F3HZnvpR.js"></script>
|
|
23
23
|
<link rel="stylesheet" crossorigin href="/assets/index-ClOpkZec.css">
|
|
24
24
|
</head>
|
|
25
25
|
<body>
|
|
@@ -129,6 +129,17 @@ function scanClaudeFolder(folder, claudeDir, manager) {
|
|
|
129
129
|
// memory folder
|
|
130
130
|
addSubfolder(folder.files, claudeDir, 'memory', '.md', 'memory');
|
|
131
131
|
|
|
132
|
+
// .env file
|
|
133
|
+
const envPath = path.join(claudeDir, '.env');
|
|
134
|
+
if (fs.existsSync(envPath)) {
|
|
135
|
+
folder.files.push({
|
|
136
|
+
name: '.env',
|
|
137
|
+
path: envPath,
|
|
138
|
+
type: 'env',
|
|
139
|
+
size: fs.statSync(envPath).size
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
|
|
132
143
|
// CLAUDE.md inside .claude
|
|
133
144
|
const claudeMdPath = path.join(claudeDir, 'CLAUDE.md');
|
|
134
145
|
if (fs.existsSync(claudeMdPath)) {
|