@contentstack/cli-cm-export-to-csv 1.10.0 → 1.10.1

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,12 +1,12 @@
1
1
  {
2
2
  "name": "@contentstack/cli-cm-export-to-csv",
3
3
  "description": "Export entities to csv",
4
- "version": "1.10.0",
4
+ "version": "1.10.1",
5
5
  "author": "Abhinav Gupta @abhinav-from-contentstack",
6
6
  "bugs": "https://github.com/contentstack/cli/issues",
7
7
  "dependencies": {
8
- "@contentstack/cli-command": "~1.6.1",
9
- "@contentstack/cli-utilities": "~1.14.4",
8
+ "@contentstack/cli-command": "~1.7.0",
9
+ "@contentstack/cli-utilities": "~1.15.0",
10
10
  "@oclif/core": "^4.3.0",
11
11
  "@oclif/plugin-help": "^6.2.32",
12
12
  "fast-csv": "^4.3.6",
@@ -395,7 +395,7 @@ class ExportToCsvCommand extends Command {
395
395
  token: listOfTokens[managementTokenAlias].token,
396
396
  };
397
397
  } else if (managementTokenAlias) {
398
- this.error('Provided management token alias not found in your config.!');
398
+ this.error('The provided management token alias was not found in your config.');
399
399
  }
400
400
  return {
401
401
  apiClient,
package/src/util/index.js CHANGED
@@ -378,7 +378,7 @@ function getContentTypeCount(stackAPIClient) {
378
378
  }
379
379
 
380
380
  function exitProgram() {
381
- debug('Exiting');
381
+ debug('Exiting...');
382
382
  // eslint-disable-next-line no-undef
383
383
  process.exit();
384
384
  }