@velocitycareerlabs/data-loader 1.22.0-qa-build.131c18f35 → 1.22.0-qa-build.15b5f7c67
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.22.0-qa-build.
|
3
|
+
"version": "1.22.0-qa-build.15b5f7c67",
|
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",
|
@@ -36,10 +36,10 @@
|
|
36
36
|
"date-fns": "3.6.0",
|
37
37
|
"got": "11.8.6",
|
38
38
|
"handlebars": "~4.7.7",
|
39
|
-
"inquirer": "^
|
39
|
+
"inquirer": "^8.0.0",
|
40
40
|
"lodash": "~4.17.20",
|
41
41
|
"nanoid": "3.3.7",
|
42
42
|
"strip-bom-stream": "^4.0.0"
|
43
43
|
},
|
44
|
-
"gitHead": "
|
44
|
+
"gitHead": "ffdc9c110583f280f699ce3c69e49ce25f6773c8"
|
45
45
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
const
|
1
|
+
const { prompt } = require('inquirer');
|
2
2
|
const { format, parseISO } = require('date-fns');
|
3
3
|
const { take, map, flow } = require('lodash/fp');
|
4
4
|
|
@@ -19,7 +19,7 @@ const disclosureListQuestion = (disclosures) => ({
|
|
19
19
|
});
|
20
20
|
|
21
21
|
const askQuestion = async (question) => {
|
22
|
-
const result = await
|
22
|
+
const result = await prompt([question]);
|
23
23
|
return result[question.name];
|
24
24
|
};
|
25
25
|
|