@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 +1 -1
- package/README.md +0 -14
- package/executors/ExecutorOrchestrator.js +1 -1
- package/package.json +1 -1
package/Constants.js
CHANGED
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
|
|
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) => {
|