trello-cli-unofficial 0.13.12 → 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 +14 -0
- package/dist/main.js +1 -2
- package/main.ts +1 -1
- package/package.json +1 -1
- package/src/presentation/cli/TrelloCliController.ts +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
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
|
+
|
|
8
|
+
## [0.13.13](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.13.12...v0.13.13) (2026-04-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* quiet dotenv ([1ab1f66](https://github.com/JaegerCaiser/trello-cli-unofficial/commit/1ab1f66a8a0a2785ba205c69ef602552609658c4))
|
|
14
|
+
|
|
1
15
|
## [0.13.12](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.13.11...v0.13.12) (2026-04-04)
|
|
2
16
|
|
|
3
17
|
|
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);
|
|
@@ -31252,7 +31251,7 @@ var import_dotenv = __toESM(require_main(), 1);
|
|
|
31252
31251
|
init_cli();
|
|
31253
31252
|
|
|
31254
31253
|
// main.ts
|
|
31255
|
-
import_dotenv.config();
|
|
31254
|
+
import_dotenv.config({ debug: false, quiet: true });
|
|
31256
31255
|
async function main() {
|
|
31257
31256
|
try {
|
|
31258
31257
|
const commandController = new CommandController;
|
package/main.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trello-cli-unofficial",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.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);
|