@comfanion/workflow 4.28.0 → 4.29.0
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/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -86,6 +86,8 @@ async function processPendingFiles(projectRoot: string): Promise<void> {
|
|
|
86
86
|
export const FileIndexerPlugin: Plugin = async ({ directory }) => {
|
|
87
87
|
let processingTimeout: NodeJS.Timeout | null = null
|
|
88
88
|
|
|
89
|
+
console.log(`[file-indexer] 🚀 Plugin loaded`)
|
|
90
|
+
|
|
89
91
|
function queueFileForIndexing(filePath: string): void {
|
|
90
92
|
const relativePath = path.relative(directory, filePath)
|
|
91
93
|
|
|
@@ -103,6 +105,7 @@ export const FileIndexerPlugin: Plugin = async ({ directory }) => {
|
|
|
103
105
|
const indexName = getIndexForFile(filePath)
|
|
104
106
|
if (!indexName) return
|
|
105
107
|
|
|
108
|
+
console.log(`[file-indexer] 📝 Queued: ${relativePath}`)
|
|
106
109
|
pendingFiles.set(filePath, { indexName, timestamp: Date.now() })
|
|
107
110
|
|
|
108
111
|
if (processingTimeout) {
|