@velvetmonkey/flywheel-mcp 1.27.5 → 1.27.7
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5386,7 +5386,8 @@ async function main() {
|
|
|
5386
5386
|
console.error(`[Flywheel] Excluding task tags: ${flywheelConfig.exclude_task_tags.join(", ")}`);
|
|
5387
5387
|
}
|
|
5388
5388
|
if (process.env.FLYWHEEL_WATCH !== "false") {
|
|
5389
|
-
|
|
5389
|
+
const useV2Watcher = process.env.FLYWHEEL_WATCH_V2 === "true" || process.env.FLYWHEEL_WATCH_POLL === "true";
|
|
5390
|
+
if (useV2Watcher) {
|
|
5390
5391
|
const config = parseWatcherConfig();
|
|
5391
5392
|
console.error(`[flywheel] File watcher v2 enabled (debounce: ${config.debounceMs}ms, flush: ${config.flushMs}ms)`);
|
|
5392
5393
|
const watcher = createVaultWatcher({
|