unoverse 0.1.57 → 0.1.58

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.
@@ -84,7 +84,9 @@ cmd_deploy() {
84
84
  _tf_fill auth_issuer AUTH_ISSUER "AUTH_ISSUER"
85
85
  _tf_fill auth_client_id AUTH_CLIENT_ID "AUTH_CLIENT_ID"
86
86
 
87
- if grep -q "FILL_ME" "$tfv" 2>/dev/null; then
87
+ # VALUES only: the file's own header comment says the word FILL_ME, and matching
88
+ # it declared a complete file blank.
89
+ if grep -qE '=[[:space:]]*"FILL_ME"' "$tfv" 2>/dev/null; then
88
90
  echo ""
89
91
  warn "Some values are still blank in ${BOLD}infra/$cloud/terraform.tfvars${NC} — fill them, then:"
90
92
  info " cd infra/$cloud && terraform init && terraform apply"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.57",
3
+ "version": "0.1.58",
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",