@forzalabs/remora 1.0.0 → 1.0.1

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/Constants.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const CONSTANTS = {
4
- cliVersion: '1.0.0',
4
+ cliVersion: '1.0.1',
5
5
  backendVersion: 1,
6
6
  backendPort: 5088,
7
7
  workerVersion: 2,
package/README.md CHANGED
@@ -39,20 +39,6 @@ remora compile
39
39
  remora deploy
40
40
  ```
41
41
 
42
- ## 🏷️ NASCO Version
43
-
44
- > **Important**: This specific version is for NASCO and has all AI features completely removed.
45
-
46
- To manage different versions, we maintain a dedicated branch (called 'nasco') with a specific version of the package, which is the normal version with appended '-nasco.x'.
47
-
48
- **Example**: `1.0.0-nasco.1`
49
-
50
- **Publishing**: When publishing to npm, you must include the tag 'nasco' so the main version of the package is not overwritten:
51
-
52
- ```bash
53
- npm publish --tag nasco
54
- ```
55
-
56
42
  ## 📄 License
57
43
 
58
44
  BSL
@@ -259,7 +259,7 @@ class ExecutorOrchestratorClass {
259
259
  const workPath = ConsumerExecutor_1.default._getWorkPath(consumer, executionId);
260
260
  const start = performance.now();
261
261
  yield Promise.all(workersPath.map(x => ConsumerExecutor_1.default._clearWorkPath(x)));
262
- yield promises_1.default.rmdir(path_1.default.dirname(workPath));
262
+ yield ConsumerExecutor_1.default._clearWorkPath(workPath);
263
263
  tracker.measure('cleanup-operations', performance.now() - start);
264
264
  });
265
265
  this.computeFinalResult = (tracker, executorResults, executionId, resultUri) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forzalabs/remora",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A powerful CLI tool for seamless data translation.",
5
5
  "main": "index.js",
6
6
  "private": false,