google-spreadsheet-translation-sync 1.5.2 → 1.5.3
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 +1 -1
- package/src/interaction.js +5 -1
package/package.json
CHANGED
package/src/interaction.js
CHANGED
|
@@ -104,7 +104,11 @@ module.exports = async function () {
|
|
|
104
104
|
})) {
|
|
105
105
|
case 'import':
|
|
106
106
|
options.spreadsheetId = await prompts.input({
|
|
107
|
-
message: 'Which Spreadsheet Id
|
|
107
|
+
message: 'Which Spreadsheet Id?'
|
|
108
|
+
});
|
|
109
|
+
options.gid = await prompts.input({
|
|
110
|
+
message: 'Which gid?',
|
|
111
|
+
default: options.gid
|
|
108
112
|
});
|
|
109
113
|
|
|
110
114
|
const importer = require('./import-from-spreadsheet');
|