trello-cli-unofficial 0.13.13 → 0.13.14

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,3 +1,10 @@
1
+ ## [0.13.14](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.13.13...v0.13.14) (2026-04-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * call double controller fixed ([6851d8b](https://github.com/JaegerCaiser/trello-cli-unofficial/commit/6851d8bab452c1bf7eab47f33535de5e5660df16))
7
+
1
8
  ## [0.13.13](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.13.12...v0.13.13) (2026-04-04)
2
9
 
3
10
 
package/dist/main.js CHANGED
@@ -30834,7 +30834,6 @@ class TrelloCliController {
30834
30834
  constructor(configRepository, outputFormatter) {
30835
30835
  this.configRepository = configRepository;
30836
30836
  this.outputFormatter = outputFormatter;
30837
- this.initializeControllers();
30838
30837
  }
30839
30838
  async initializeControllers() {
30840
30839
  this.authController = new AuthController(this.configRepository);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trello-cli-unofficial",
3
3
  "type": "module",
4
- "version": "0.13.13",
4
+ "version": "0.13.14",
5
5
  "private": false,
6
6
  "description": "Unofficial Trello CLI using Power-Up authentication, built with Bun for maximum performance",
7
7
  "author": "Matheus Caiser <matheus.kaiser@gmail.com> (https://www.mrdeveloper.com.br/)",
@@ -20,9 +20,7 @@ export class TrelloCliController {
20
20
  constructor(
21
21
  private configRepository: ConfigRepository,
22
22
  private outputFormatter: OutputFormatter,
23
- ) {
24
- this.initializeControllers();
25
- }
23
+ ) {}
26
24
 
27
25
  private async initializeControllers(): Promise<void> {
28
26
  this.authController = new AuthController(this.configRepository);