@vibetasks/cli 0.5.6 → 0.5.7
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/dist/bin/vibetasks.js +77 -47
- package/package.json +1 -1
package/dist/bin/vibetasks.js
CHANGED
|
@@ -134,6 +134,36 @@ async function loginWithBrowser() {
|
|
|
134
134
|
<title>Authentication Successful</title>
|
|
135
135
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
136
136
|
<style>
|
|
137
|
+
:root {
|
|
138
|
+
--background: oklch(1 0 0);
|
|
139
|
+
--foreground: oklch(0.145 0 0);
|
|
140
|
+
--card: oklch(1 0 0);
|
|
141
|
+
--card-foreground: oklch(0.145 0 0);
|
|
142
|
+
--primary: oklch(0.205 0 0);
|
|
143
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
144
|
+
--muted: oklch(0.97 0 0);
|
|
145
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
146
|
+
--accent: oklch(0.97 0 0);
|
|
147
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
148
|
+
--border: oklch(0.922 0 0);
|
|
149
|
+
--success: oklch(0.7 0.15 160);
|
|
150
|
+
}
|
|
151
|
+
@media (prefers-color-scheme: dark) {
|
|
152
|
+
:root {
|
|
153
|
+
--background: oklch(0.145 0 0);
|
|
154
|
+
--foreground: oklch(0.985 0 0);
|
|
155
|
+
--card: oklch(0.205 0 0);
|
|
156
|
+
--card-foreground: oklch(0.985 0 0);
|
|
157
|
+
--primary: oklch(0.922 0 0);
|
|
158
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
159
|
+
--muted: oklch(0.269 0 0);
|
|
160
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
161
|
+
--accent: oklch(0.269 0 0);
|
|
162
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
163
|
+
--border: oklch(1 0 0 / 10%);
|
|
164
|
+
--success: oklch(0.75 0.15 160);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
137
167
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
138
168
|
body {
|
|
139
169
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
@@ -141,35 +171,36 @@ async function loginWithBrowser() {
|
|
|
141
171
|
align-items: center;
|
|
142
172
|
justify-content: center;
|
|
143
173
|
min-height: 100vh;
|
|
144
|
-
background:
|
|
174
|
+
background: var(--background);
|
|
175
|
+
color: var(--foreground);
|
|
145
176
|
padding: 20px;
|
|
146
177
|
}
|
|
147
178
|
.container {
|
|
148
179
|
text-align: center;
|
|
149
|
-
padding:
|
|
150
|
-
background:
|
|
151
|
-
border
|
|
152
|
-
|
|
180
|
+
padding: 48px 40px;
|
|
181
|
+
background: var(--card);
|
|
182
|
+
border: 1px solid var(--border);
|
|
183
|
+
border-radius: 12px;
|
|
153
184
|
max-width: 450px;
|
|
154
185
|
width: 100%;
|
|
155
186
|
}
|
|
156
187
|
.checkmark {
|
|
157
|
-
width:
|
|
158
|
-
height:
|
|
188
|
+
width: 64px;
|
|
189
|
+
height: 64px;
|
|
159
190
|
border-radius: 50%;
|
|
160
191
|
display: block;
|
|
161
|
-
stroke-width:
|
|
162
|
-
stroke:
|
|
192
|
+
stroke-width: 2.5;
|
|
193
|
+
stroke: var(--success);
|
|
163
194
|
stroke-miterlimit: 10;
|
|
164
195
|
margin: 0 auto 24px;
|
|
165
|
-
animation:
|
|
196
|
+
animation: scale 0.3s ease-in-out 0.9s both;
|
|
166
197
|
}
|
|
167
198
|
.checkmark-circle {
|
|
168
199
|
stroke-dasharray: 166;
|
|
169
200
|
stroke-dashoffset: 166;
|
|
170
|
-
stroke-width:
|
|
201
|
+
stroke-width: 2.5;
|
|
171
202
|
stroke-miterlimit: 10;
|
|
172
|
-
stroke:
|
|
203
|
+
stroke: var(--success);
|
|
173
204
|
fill: none;
|
|
174
205
|
animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
|
|
175
206
|
}
|
|
@@ -187,66 +218,65 @@ async function loginWithBrowser() {
|
|
|
187
218
|
50% { transform: scale3d(1.1, 1.1, 1); }
|
|
188
219
|
}
|
|
189
220
|
h1 {
|
|
190
|
-
color:
|
|
191
|
-
font-size:
|
|
192
|
-
font-weight:
|
|
193
|
-
margin-bottom:
|
|
221
|
+
color: var(--foreground);
|
|
222
|
+
font-size: 24px;
|
|
223
|
+
font-weight: 600;
|
|
224
|
+
margin-bottom: 8px;
|
|
194
225
|
}
|
|
195
226
|
.email {
|
|
196
|
-
font-weight:
|
|
197
|
-
color:
|
|
198
|
-
font-size:
|
|
199
|
-
margin-bottom:
|
|
227
|
+
font-weight: 500;
|
|
228
|
+
color: var(--muted-foreground);
|
|
229
|
+
font-size: 14px;
|
|
230
|
+
margin-bottom: 20px;
|
|
200
231
|
}
|
|
201
232
|
.message {
|
|
202
|
-
color:
|
|
203
|
-
font-size:
|
|
204
|
-
line-height: 1.
|
|
233
|
+
color: var(--muted-foreground);
|
|
234
|
+
font-size: 14px;
|
|
235
|
+
line-height: 1.5;
|
|
205
236
|
}
|
|
206
237
|
.success-badge {
|
|
207
238
|
display: inline-block;
|
|
208
|
-
background:
|
|
209
|
-
color:
|
|
210
|
-
padding:
|
|
211
|
-
border-radius:
|
|
212
|
-
font-size:
|
|
213
|
-
font-weight:
|
|
214
|
-
margin-top:
|
|
239
|
+
background: var(--accent);
|
|
240
|
+
color: var(--accent-foreground);
|
|
241
|
+
padding: 6px 12px;
|
|
242
|
+
border-radius: 6px;
|
|
243
|
+
font-size: 13px;
|
|
244
|
+
font-weight: 500;
|
|
245
|
+
margin-top: 16px;
|
|
215
246
|
}
|
|
216
247
|
.button-group {
|
|
217
|
-
margin-top:
|
|
248
|
+
margin-top: 28px;
|
|
218
249
|
display: flex;
|
|
219
|
-
gap:
|
|
250
|
+
gap: 10px;
|
|
220
251
|
justify-content: center;
|
|
252
|
+
flex-wrap: wrap;
|
|
221
253
|
}
|
|
222
254
|
.button {
|
|
223
|
-
padding:
|
|
255
|
+
padding: 10px 20px;
|
|
224
256
|
border-radius: 8px;
|
|
225
|
-
font-weight:
|
|
257
|
+
font-weight: 500;
|
|
226
258
|
font-size: 14px;
|
|
227
259
|
cursor: pointer;
|
|
228
260
|
transition: all 0.2s;
|
|
229
261
|
text-decoration: none;
|
|
230
262
|
display: inline-block;
|
|
263
|
+
border: none;
|
|
231
264
|
}
|
|
232
265
|
.button-primary {
|
|
233
|
-
background:
|
|
234
|
-
color:
|
|
235
|
-
border: none;
|
|
266
|
+
background: var(--primary);
|
|
267
|
+
color: var(--primary-foreground);
|
|
236
268
|
}
|
|
237
269
|
.button-primary:hover {
|
|
238
|
-
|
|
270
|
+
opacity: 0.9;
|
|
239
271
|
transform: translateY(-1px);
|
|
240
|
-
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
|
241
272
|
}
|
|
242
273
|
.button-secondary {
|
|
243
|
-
background:
|
|
244
|
-
color:
|
|
245
|
-
border: 2px solid #e2e8f0;
|
|
274
|
+
background: var(--muted);
|
|
275
|
+
color: var(--muted-foreground);
|
|
246
276
|
}
|
|
247
277
|
.button-secondary:hover {
|
|
248
|
-
background:
|
|
249
|
-
|
|
278
|
+
background: var(--accent);
|
|
279
|
+
color: var(--accent-foreground);
|
|
250
280
|
}
|
|
251
281
|
</style>
|
|
252
282
|
</head>
|
|
@@ -256,11 +286,11 @@ async function loginWithBrowser() {
|
|
|
256
286
|
<circle class="checkmark-circle" cx="26" cy="26" r="25" fill="none"/>
|
|
257
287
|
<path class="checkmark-check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8"/>
|
|
258
288
|
</svg>
|
|
259
|
-
<h1>Authentication Successful
|
|
289
|
+
<h1>Authentication Successful</h1>
|
|
260
290
|
<p class="email">${email}</p>
|
|
261
291
|
<p class="message">
|
|
262
|
-
Your VibeTasks CLI is now connected
|
|
263
|
-
|
|
292
|
+
Your VibeTasks CLI is now connected.<br>
|
|
293
|
+
Close this window to continue.
|
|
264
294
|
</p>
|
|
265
295
|
<div class="success-badge">Ready to use</div>
|
|
266
296
|
<div class="button-group">
|
package/package.json
CHANGED