svcloud 0.1.2 → 0.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svcloud",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "The SV Cloud CLI. Alpha: login, logout, status, open, projects list, mcp, init, and runs are built; see PLANNING.md for what's still missing.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -210,22 +210,22 @@ const CALLBACK_PAGE = (ok: boolean) => `<!doctype html>
210
210
  <span>SV Cloud</span>
211
211
  </div>
212
212
  <div class="card">
213
- <div class="status-icon \${ok ? 'status-icon--ok' : 'status-icon--error'}">
214
- \${ok
213
+ <div class="status-icon ${ok ? 'status-icon--ok' : 'status-icon--error'}">
214
+ ${ok
215
215
  ? '<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 8.5 6.5 12 13 4.5"/></svg>'
216
216
  : '<svg width="20" height="20" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M8 2.2 15 14H1Z"/><path d="M8 6.6v3.2"/><circle cx="8" cy="11.9" r="0.9" fill="currentColor"/></svg>'}
217
217
  </div>
218
218
  <div>
219
- <h1>\${ok ? "You're signed in" : "Sign-in didn't finish"}</h1>
220
- <p class="desc">\${ok ? "You can close this tab and return to your terminal." : "The sign-in request was not completed. Nothing changed on your account."}</p>
219
+ <h1>${ok ? "You're signed in" : "Sign-in didn't finish"}</h1>
220
+ <p class="desc">${ok ? "You can close this tab and return to your terminal." : "The sign-in request was not completed. Nothing changed on your account."}</p>
221
221
  </div>
222
222
  <div class="terminal-box">
223
223
  <div class="cmd">
224
224
  <span class="prompt">$</span>
225
- <span>\${ok ? "svcloud" : "svcloud login"}</span>
225
+ <span>${ok ? "svcloud" : "svcloud login"}</span>
226
226
  </div>
227
- <span class="status-pill \${ok ? 'status-pill--ok' : 'status-pill--error'}">
228
- \${ok ? "Ready" : "Retry"}
227
+ <span class="status-pill ${ok ? 'status-pill--ok' : 'status-pill--error'}">
228
+ ${ok ? "Ready" : "Retry"}
229
229
  </span>
230
230
  </div>
231
231
  </div>