mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Hide merges by default
This commit is contained in:
parent
20ad66a5de
commit
947ed4bf52
1 changed files with 6 additions and 1 deletions
|
|
@ -13,6 +13,9 @@ import { eitherMatches } from './matching.js'
|
|||
import { getAppEndpoint } from './app-derived'
|
||||
import { makeSlug } from './slug.js'
|
||||
|
||||
import {
|
||||
cliOptions
|
||||
} from '~/helpers/cli-options.js'
|
||||
|
||||
const md = new MarkdownIt()
|
||||
|
||||
|
|
@ -156,7 +159,9 @@ export function buildReadmeAppList ({ readmeContent, scanListMap, commits }) {
|
|||
} )
|
||||
}
|
||||
|
||||
console.log(`Merged ${alias} (${scannedApp.bundleIds[0]}) from scanned apps into ${name} from README`)
|
||||
if ( cliOptions.showMerges || cliOptions.verbose ) {
|
||||
console.log(`Merged ${alias} (${scannedApp.bundleIds[0]}) from scanned apps into ${name} from README`)
|
||||
}
|
||||
scanListMap.delete( key )
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue