File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
packages/developer/src/utilityMethods Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 2121 "lint" : " eslint" ,
2222 "migrate:reset" : " node ../../node_modules/dotenv-cli/cli.js -e ./website/.env.local -- prisma migrate reset --schema ./src/prisma/schema.prisma" ,
2323 "migrateRemote" : " dotenv -e /Users/bigsexy/Desktop/current/ulld/apps/website/.env.remote -- prisma migrate dev --schema=./src/prisma/schema.prisma" ,
24- "postinstall" : " turbo db:generate --filter @ulld/website" ,
2524 "prepareCommit:versionEverything" : " wireit" ,
2625 "prepareCommit:webOnly" : " wireit" ,
2726 "prepareWeb" : " wireit" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const getConfigPath = () => {
1414 }
1515
1616export const readAppConfig = async ( returnUndefinedIfNoConfig : boolean = true ) => {
17- if ( returnUndefinedIfNoConfig && process . env . ULLD_NO_CONFIG ) {
17+ if ( returnUndefinedIfNoConfig && process . env . ULLD_NO_CONFIG === "true" ) {
1818 return undefined
1919 }
2020 console . trace ( "readAppConfig" )
@@ -50,7 +50,7 @@ export const readDevelopmentAppConfig = () => {
5050
5151// TODO: Set this to false by default and clean up all of the places where this is called.
5252export const readAppConfigSync = ( returnUndefinedIfNoConfig : boolean = true ) => {
53- if ( returnUndefinedIfNoConfig && process . env . ULLD_NO_CONFIG ) {
53+ if ( returnUndefinedIfNoConfig && process . env . ULLD_NO_CONFIG === "true" ) {
5454 return undefined
5555 }
5656 console . trace ( "readAppConfigSync" )
You can’t perform that action at this time.
0 commit comments