create-your-stack 0.0.7 → 0.0.8

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.
@@ -200,7 +200,10 @@ const { getDefaultConfig } = require("expo/metro-config");
200
200
  const { withUniwindConfig } = require("uniwind/metro");
201
201
 
202
202
  const config = getDefaultConfig(__dirname);
203
- module.exports = withUniwindConfig(config, { input: "./global.css" });
203
+ module.exports = withUniwindConfig(config, {
204
+ cssEntryFile: './global.css',
205
+ dtsFile: './uniwind-types.d.ts'
206
+ });
204
207
  EOT
205
208
 
206
209
  echo "🔌 Injecting global.css into _layout..."
@@ -239,6 +242,9 @@ if [[ "$USE_CONVEX" == "true" ]]; then
239
242
  fi
240
243
  fi
241
244
 
245
+ echo "🔧 Fixing dependencies..."
246
+ run "bunx expo install --fix"
247
+
242
248
  echo "✅ Project '$PROJECT_NAME' is ready!"
243
249
  echo "👉 Next steps:"
244
250
  echo " 1. cd $PROJECT_NAME"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-your-stack",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {