taskplane 0.20.1 → 0.20.2

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.
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Thin entry point for the engine worker thread.
3
+ *
4
+ * Node's Worker constructor rejects .ts files inside node_modules when
5
+ * --experimental-strip-types is active (the default in Node v25+).
6
+ * This .mjs wrapper avoids the restriction — Node loads .mjs files
7
+ * without TypeScript processing, then --experimental-transform-types
8
+ * (passed via execArgv) handles subsequent .ts imports.
9
+ */
10
+ import "./engine-worker.ts";
@@ -897,7 +897,7 @@ function resolveEngineWorkerPath(): string {
897
897
  } catch {
898
898
  thisDir = __dirname;
899
899
  }
900
- return join(thisDir, "engine-worker.ts");
900
+ return join(thisDir, "engine-worker-entry.mjs");
901
901
  }
902
902
 
903
903
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskplane",
3
- "version": "0.20.1",
3
+ "version": "0.20.2",
4
4
  "description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
5
5
  "keywords": [
6
6
  "pi-package",