taskplane 0.23.7 → 0.23.8
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.
|
@@ -17,5 +17,5 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
17
17
|
// TP-115: Disable jiti filesystem cache to prevent stale compiled code
|
|
18
18
|
// after npm update. Without this, jiti serves old cached .mjs even when
|
|
19
19
|
// the .ts source files have been updated by a new package version.
|
|
20
|
-
const jiti = createJiti(import.meta.url, {
|
|
20
|
+
const jiti = createJiti(import.meta.url, { cache: false });
|
|
21
21
|
await jiti.import(join(__dirname, "engine-worker.ts"));
|