unoverse 0.1.72 → 0.1.73

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.
@@ -162,12 +162,15 @@ _ground_apply() {
162
162
 
163
163
  # `read -p` does NOT interpret escapes, so ${DIM} printed as literal \033[2m. Colour
164
164
  # the hint with echo -e first, then take a plain prompt.
165
+ # EXPLICIT YES, and it says so. Everywhere else in this CLI Enter means "go"; here it
166
+ # means "stop", because this is the one prompt that starts a monthly bill. Keeping the
167
+ # safety is right — leaving it as a bare [y/N] among Enter-means-go prompts is not.
165
168
  local REPLY
166
- echo -e " ${DIM}(d shows the full technical plan)${NC}"
167
- read -r -p " Go ahead? [y/N] " REPLY
169
+ echo -e " ${DIM}d shows the full technical plan${NC}"
170
+ read -r -p " Type y to build this, or Enter to stop: " REPLY
168
171
  if [[ "$REPLY" =~ ^[Dd]$ ]]; then
169
172
  terraform -chdir="$dir" show "$planfile"
170
- read -r -p " Go ahead? [y/N] " REPLY
173
+ read -r -p " Type y to build this, or Enter to stop: " REPLY
171
174
  fi
172
175
  if [[ ! "$REPLY" =~ ^[Yy]$ ]]; then
173
176
  info "Nothing was created. Run ${BOLD}unoverse deploy${NC} when you are ready"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
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",