@velvetmonkey/flywheel-mcp 1.27.0 → 1.27.5
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 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5129,7 +5129,7 @@ var DEFAULT_WATCHER_CONFIG = {
|
|
|
5129
5129
|
flushMs: 1e3,
|
|
5130
5130
|
batchSize: 50,
|
|
5131
5131
|
usePolling: false,
|
|
5132
|
-
pollInterval:
|
|
5132
|
+
pollInterval: 6e4
|
|
5133
5133
|
};
|
|
5134
5134
|
function parseWatcherConfig() {
|
|
5135
5135
|
const debounceMs = parseInt(process.env.FLYWHEEL_DEBOUNCE_MS || "");
|
|
@@ -5385,7 +5385,7 @@ async function main() {
|
|
|
5385
5385
|
if (flywheelConfig.exclude_task_tags?.length) {
|
|
5386
5386
|
console.error(`[Flywheel] Excluding task tags: ${flywheelConfig.exclude_task_tags.join(", ")}`);
|
|
5387
5387
|
}
|
|
5388
|
-
if (process.env.FLYWHEEL_WATCH
|
|
5388
|
+
if (process.env.FLYWHEEL_WATCH !== "false") {
|
|
5389
5389
|
if (process.env.FLYWHEEL_WATCH_V2 === "true") {
|
|
5390
5390
|
const config = parseWatcherConfig();
|
|
5391
5391
|
console.error(`[flywheel] File watcher v2 enabled (debounce: ${config.debounceMs}ms, flush: ${config.flushMs}ms)`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@velvetmonkey/flywheel-mcp",
|
|
3
|
-
"version": "1.27.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.27.5",
|
|
4
|
+
"description": "Graph intelligence for markdown vaults. MCP server for Obsidian.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|