gtx-cli 2.0.2 → 2.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # gtx-cli
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#462](https://github.com/generaltranslation/gt/pull/462) [`678e9e7`](https://github.com/generaltranslation/gt/commit/678e9e70dd57a38ee10dcf9deb78cdd5dcfb759b) Thanks [@brian-lou](https://github.com/brian-lou)! - Revert adding version to cli tool
8
+
3
9
  ## 2.0.2
4
10
 
5
11
  ### Patch Changes
package/dist/cli/base.js CHANGED
@@ -14,7 +14,6 @@ import { installPackage } from '../utils/installPackage.js';
14
14
  import { getPackageManager } from '../utils/packageManager.js';
15
15
  import { retrieveCredentials, setCredentials } from '../utils/credentials.js';
16
16
  import { areCredentialsSet } from '../utils/credentials.js';
17
- import { getCLIVersion } from '../utils/packageJson.js';
18
17
  export class BaseCLI {
19
18
  library;
20
19
  additionalModules;
@@ -22,7 +21,6 @@ export class BaseCLI {
22
21
  // Constructor is shared amongst all CLI class types
23
22
  constructor(program, library, additionalModules) {
24
23
  this.program = program;
25
- this.program.version(getCLIVersion());
26
24
  this.library = library;
27
25
  this.additionalModules = additionalModules || [];
28
26
  this.setupInitCommand();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/main.js",
6
6
  "files": [