trello-cli-unofficial 0.9.5 → 0.9.6
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.9.6](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.9.5...v0.9.6) (2025-11-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove intrusive postinstall script from npm package ([0b8d109](https://github.com/JaegerCaiser/trello-cli-unofficial/commit/0b8d109be026d0723480d7bd1bd8d53691485de2))
|
|
7
|
+
|
|
1
8
|
## [0.9.5](https://github.com/JaegerCaiser/trello-cli-unofficial/compare/v0.9.4...v0.9.5) (2025-11-14)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -30,27 +30,26 @@ An unofficial Trello CLI using Power-Up authentication, built with Bun for maxim
|
|
|
30
30
|
### Prerequisites
|
|
31
31
|
|
|
32
32
|
- **[Node.js 16+](https://nodejs.org/) (Required)**
|
|
33
|
-
- **Bun
|
|
33
|
+
- **[Bun](https://bun.sh/) (Required)** - Deve ser instalado separadamente
|
|
34
34
|
- Trello account with Power-Up enabled
|
|
35
35
|
- **Supported Platforms:** Linux, macOS, Windows
|
|
36
36
|
|
|
37
37
|
### NPM Installation (Recommended)
|
|
38
38
|
|
|
39
|
-
O CLI
|
|
39
|
+
O CLI requer Bun para funcionar. Instale-o primeiro:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
#
|
|
42
|
+
# 1. Instale o Bun primeiro
|
|
43
|
+
curl -fsSL https://bun.sh/install | bash
|
|
44
|
+
# ou no Windows: powershell -c "irm bun.sh/install.ps1 | iex"
|
|
45
|
+
|
|
46
|
+
# 2. Instale o CLI
|
|
43
47
|
npm install -g trello-cli-unofficial
|
|
44
48
|
|
|
45
|
-
#
|
|
46
|
-
|
|
47
|
-
yarn global add trello-cli-unofficial
|
|
49
|
+
# 3. Use
|
|
50
|
+
tcu --version
|
|
48
51
|
```
|
|
49
52
|
|
|
50
|
-
# Option 4: Using PNPM
|
|
51
|
-
|
|
52
|
-
pnpm add -g trello-cli-unofficial
|
|
53
|
-
|
|
54
53
|
# Ready to use immediately!
|
|
55
54
|
|
|
56
55
|
tcu --version
|
|
@@ -59,23 +58,20 @@ tcu --version
|
|
|
59
58
|
|
|
60
59
|
#### Windows Installation
|
|
61
60
|
|
|
62
|
-
Para usuários Windows,
|
|
61
|
+
Para usuários Windows, primeiro instale o Bun, depois o CLI:
|
|
63
62
|
|
|
64
63
|
```powershell
|
|
65
|
-
#
|
|
66
|
-
|
|
64
|
+
# 1. Instale o Bun
|
|
65
|
+
powershell -c "irm bun.sh/install.ps1 | iex"
|
|
67
66
|
|
|
68
|
-
#
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
# Ou usando Yarn
|
|
72
|
-
yarn global add trello-cli-unofficial
|
|
67
|
+
# 2. Instale o CLI
|
|
68
|
+
npm install -g trello-cli-unofficial
|
|
73
69
|
|
|
74
|
-
#
|
|
70
|
+
# 3. Use
|
|
75
71
|
tcu --version
|
|
76
|
-
|
|
72
|
+
```
|
|
77
73
|
|
|
78
|
-
**Nota:** No Windows, você pode precisar reiniciar o terminal após
|
|
74
|
+
**Nota:** No Windows, você pode precisar reiniciar o terminal após instalar o Bun.
|
|
79
75
|
|
|
80
76
|
### Manual Installation (Development)
|
|
81
77
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trello-cli-unofficial",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.6",
|
|
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/)",
|
|
@@ -70,8 +70,7 @@
|
|
|
70
70
|
"version:patch": "bun version patch && git push --follow-tags",
|
|
71
71
|
"version:minor": "bun version minor && git push --follow-tags",
|
|
72
72
|
"version:major": "bun version major && git push --follow-tags",
|
|
73
|
-
"prepublishOnly": "bun run validate && bun run build"
|
|
74
|
-
"postinstall": "node scripts/check-dependencies.js"
|
|
73
|
+
"prepublishOnly": "bun run validate && bun run build"
|
|
75
74
|
},
|
|
76
75
|
"peerDependencies": {
|
|
77
76
|
"typescript": "^5"
|