File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export function sayGoodbye(preferences: Preferences) {
2929 sayCommand ( `${ packageManager } install` , 'Install project dependencies' )
3030 }
3131
32- if ( preferences . addModules ?. includes ( 'prisma' ) || preferences . setStack === 'cheviot' ) {
32+ if ( preferences . addModules ?. includes ( 'prisma' ) ) {
3333 sayCommand ( `${ packageManager } run db` , 'Start the local postgres database in a new window' )
3434 sayCommand ( 'npx prisma db push' , 'Initialize the database & Prisma client' )
3535 }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export async function logTelemetry(preferences: Preferences) {
1616 }
1717
1818 // We do not want to know identifiable information, only pass: Stack + selected modules
19- const annonymizedPreferences = new URLSearchParams ( { ref : preferences . setStack , utm_content : ( preferences . addModules || [ ] ) . join ( ',' ) || 'null' } )
19+ const annonymizedPreferences = new URLSearchParams ( { ref : 'merino' , utm_content : ( preferences . addModules || [ ] ) . join ( ',' ) || 'null' } )
2020 const headers = { 'User-Agent' : 'Mozilla/5.0' , 'X-Forwarded-For' : `2.175.${ Math . floor ( Math . random ( ) * 255 ) } .${ Math . floor ( Math . random ( ) * 255 ) } ` }
2121 return fetch ( 'https://plausible.io/api/event' , {
2222 method : 'POST' ,
You can’t perform that action at this time.
0 commit comments