@forzalabs/remora 0.2.0 → 0.2.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.
- package/Constants.js +1 -1
- package/engines/dataset/Dataset.js +2 -2
- package/package.json +2 -1
package/Constants.js
CHANGED
|
@@ -37,7 +37,7 @@ const Environment_1 = __importDefault(require("../Environment"));
|
|
|
37
37
|
const Logger_1 = __importDefault(require("../../helper/Logger"));
|
|
38
38
|
class Dataset {
|
|
39
39
|
constructor(name, file, batchSize, executionId) {
|
|
40
|
-
var _a;
|
|
40
|
+
var _a, _b;
|
|
41
41
|
this.getPath = () => this._path;
|
|
42
42
|
this.setPath = (path) => {
|
|
43
43
|
this._path = path;
|
|
@@ -845,7 +845,7 @@ class Dataset {
|
|
|
845
845
|
this._batchSize = (_a = batchSize !== null && batchSize !== void 0 ? batchSize : parseInt(Environment_1.default.get('MAX_ITEMS_IN_MEMORY'))) !== null && _a !== void 0 ? _a : Constants_1.default.defaults.MAX_ITEMS_IN_MEMORY;
|
|
846
846
|
this._dimensions = [];
|
|
847
847
|
this._firstLine = '';
|
|
848
|
-
this._delimiter = ',';
|
|
848
|
+
this._delimiter = (_b = file.delimiter) !== null && _b !== void 0 ? _b : ',';
|
|
849
849
|
this._count = 0;
|
|
850
850
|
this._iterations = 0;
|
|
851
851
|
this._operations = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forzalabs/remora",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A powerful CLI tool for seamless data translation.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"private": false,
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"react": "^18.2.0",
|
|
62
62
|
"react-dom": "^18.2.0",
|
|
63
63
|
"seedrandom": "^3.0.5",
|
|
64
|
+
"uuid": "^13.0.0",
|
|
64
65
|
"workerpool": "^9.3.3",
|
|
65
66
|
"xlsx": "^0.18.5",
|
|
66
67
|
"zod": "^3.24.2"
|