@velocitycareerlabs/data-loader 1.21.0-dev-build.1abbce7b9 → 1.21.0-dev-build.189f40d2a

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velocitycareerlabs/data-loader",
3
- "version": "1.21.0-dev-build.1abbce7b9",
3
+ "version": "1.21.0-dev-build.189f40d2a",
4
4
  "description": "A tool for uploading data to the different target systems.",
5
5
  "repository": "https://github.com/velocitycareerlabs/packages",
6
6
  "main": "src/index.js",
@@ -40,5 +40,5 @@
40
40
  "lodash": "~4.17.20",
41
41
  "nanoid": "3.3.1"
42
42
  },
43
- "gitHead": "1dc829edc4bbb6da9cb805563fb0b38c292e4a00"
43
+ "gitHead": "41423fdeb13995d2905b62f80fb1eba9160dcc30"
44
44
  }
@@ -3,6 +3,12 @@ const { reduce } = require('lodash/fp');
3
3
  const { printInfo, printError, parseColumn } = require('../helpers');
4
4
  const { runBatchIssuing } = require('./orchestrators');
5
5
 
6
+ const parseVar = reduce((acc, pair) => {
7
+ const [key, value] = pair.split('=');
8
+ acc[key] = value;
9
+ return acc;
10
+ }, {});
11
+
6
12
  program
7
13
  .name('data-loader vendorcreds')
8
14
  .description('Loads data into a db')
@@ -109,9 +115,3 @@ program
109
115
  }
110
116
  })
111
117
  .parseAsync(process.argv);
112
-
113
- const parseVar = reduce((acc, pair) => {
114
- const [key, value] = pair.split('=');
115
- acc[key] = value;
116
- return acc;
117
- }, {});