@forzalabs/remora 1.0.3 → 1.0.4

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.
@@ -226,9 +226,9 @@ class ExecutorOrchestratorClass {
226
226
  // Check if we're in a published npm package (no .build in path)
227
227
  if (!currentDir.includes('.build')) {
228
228
  // We're in the published package, workers are relative to package root
229
- // __dirname is something like: /path/to/package/engines/dataset
230
- // We need to go up to package root and then to workers
231
- return path_1.default.join(__dirname, '../../workers');
229
+ // __dirname is something like: /path/to/package/executors
230
+ // Workers are at /path/to/package/workers (sibling folder)
231
+ return path_1.default.join(__dirname, '../workers');
232
232
  }
233
233
  else {
234
234
  // We're in development, workers are in ./.build/workers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forzalabs/remora",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A powerful CLI tool for seamless data translation.",
5
5
  "main": "index.js",
6
6
  "private": false,