A VuePress plugin that integrates git logs into your page.
npm install -g vuepress-plugin-git-log
# OR
yarn global add vuepress-plugin-git-lognpm install vuepress-plugin-git-log
# OR
yarn add vuepress-plugin-git-logmodule.exports = {
plugins: [
['git-log', {
additionalArgs: '--no-merge',
onlyFirstAndLastCommit: true,
}],
]
}or
module.exports = {
plugins: {
'git-log': {
additionalProps: {
subject: '%s',
authorEmail: '%ae',
},
},
}
}This plugin will add a git property to $page, with the following properties:
The author of the article, i.e. the author of the first commit.
The time the article was created, i.e. the authoring time of the first commit.
The time the article was updated, i.e. the committing time of the last commit.
A list of all the commits in chronological order.
A list of contributors to all users who have modified the article.
- type:
(timestamp: number, lang: string) => string - default:
(timestamp, lang) => new Date(timestamp).toLocaleString(lang)
A function used to format Unix time.
- type:
{ [prop: string]: string } - default:
{}
An object that represents additional properties. Every key is a property name and value is the corresponding placeholder.
- type:
string | string[] - default:
[]
A list of additional parameters to pass in.
- type:
(git: object) => void - default:
undefined
A function used to extend or modify the $page.git object.
- type:
boolean - default:
false
Whether to search for only the first and last commit. Set this option to true for large-scale projects may optimize the initial startup performance. However, you will not be able to use $page.git.commits and $page.git.contributors as a cost.