unoverse 0.1.66 → 0.1.67

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.
@@ -202,6 +202,13 @@ cmd_deploy() {
202
202
  fi
203
203
  ok "terraform.tfvars is complete"
204
204
 
205
+ # SIZE IS NOT A ONE-WAY DOOR. small is the POC box, and the plan below is about to
206
+ # quote its monthly cost — the moment someone wonders whether they are committing to
207
+ # it. One line, here, rather than a discovery later.
208
+ local cur_size
209
+ cur_size=$(grep -E '^size[[:space:]]*=' "$tfv" 2>/dev/null | sed -E 's/.*"([^"]+)".*/\1/')
210
+ [ -n "$cur_size" ] && info "Size: ${BOLD}${cur_size}${NC} ${DIM}(small · medium · large — change it in terraform.tfvars and deploy again whenever you outgrow it)${NC}"
211
+
205
212
  # STRAIGHT INTO TERRAFORM. Its plan plus its own typed "yes" IS the decision gate
206
213
  # for billable infrastructure; a [Y/n] in front of it was asking permission to ask
207
214
  # permission. Answering "no" is terraform's "no".
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.66",
3
+ "version": "0.1.67",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",