@forzalabs/remora 0.2.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const CONSTANTS = {
4
- cliVersion: '0.2.0',
4
+ cliVersion: '0.2.2',
5
5
  backendVersion: 1,
6
6
  backendPort: 5088,
7
7
  workerVersion: 2,
@@ -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.1",
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,