The Wayback Machine - https://web.archive.org/web/20210222173339/https://github.com/topics/conventional-commits
Skip to content
#

conventional-commits

Here are 170 public repositories matching this topic...

opensource
tunnckoCore
tunnckoCore commented Feb 9, 2018

Which will behave like that

let settings = await prettyConfig('rollup', { configFiles })

if (!settings) {
  settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)

instead of above we can hide it to look like that

const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })

if (!settings) {
  console.log('no config file
oknozor
oknozor commented Sep 30, 2020
❯ cog bump --auto
Error: repository contains unstaged change (use `git add` to track) # this shall say "uncommited changes" instead
Modified:  README.md
❯ git status
On branch master
Your branch is ahead of 'origin/master' by 3 commits.
  (use "git push" to publish your local commits)

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	modified

Improve this page

Add a description, image, and links to the conventional-commits topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the conventional-commits topic, visit your repo's landing page and select "manage topics."

Learn more