create-your-stack 0.0.2 → 0.0.4

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.
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env bun
2
- import "../index.ts";
3
1
  #!/usr/bin/env bash
4
2
  set -Eeuo pipefail
5
3
 
@@ -60,7 +58,11 @@ else
60
58
  echo "⚠️ Project already exists. Skipping Expo initialization."
61
59
  fi
62
60
 
63
- cd "$PROJECT_NAME"
61
+ if [[ "$DRY_RUN" == "false" ]]; then
62
+ cd "$PROJECT_NAME"
63
+ else
64
+ echo "[DRY RUN] cd \"$PROJECT_NAME\""
65
+ fi
64
66
 
65
67
  echo "📦 Installing Core Dependencies..."
66
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-your-stack",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {