We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6454f commit 910f13cCopy full SHA for 910f13c
.changeset/spotty-tips-tease.md
@@ -0,0 +1,5 @@
1
+---
2
+'create-expo-stack': patch
3
4
+
5
+properly set noGit and noInstall for analytics
cli/src/utilities/configAnalytics.ts
@@ -84,8 +84,8 @@ export async function storeConfigAnalytics({
84
authType ?? '',
85
eas ? 'true' : 'false',
86
importAlias ? 'true' : 'false',
87
- noGit ? 'false' : 'true', // reverse logic because column is "git"
88
- noInstall ? 'false' : 'true', // reverse logic because column is "install"
+ noGit ? 'true' : 'false',
+ noInstall ? 'true' : 'false',
89
overwrite ? 'true' : 'false',
90
os ?? '',
91
osPlatform ?? '',
0 commit comments