Add some git information on File
fields from latest commit: date, author, and email.
This fork was created to add information for files that are added via symlink, such as to combine files from other git repositories. The plugin will resolve the symlink to the original file and base the information on the git repository at the original location.
yarn add @colliercz/gatsby-transformer-gitinfo
Note: You also need to have gatsby-source-filesystem
installed
and configured so it points to your files.
In your gatsby-config.js
, add:
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
`@colliercz/gatsby-transformer-gitinfo`,
],
}
Where the source folder ./src/data/
is a git versionned directory.
The plugin will add several fields to File
nodes:
gitLogLatestAuthorName
, gitLogLatestAuthorEmail
, and gitLogLatestDate
.
These fields are related to the latest commit touching that file.
If the file is not versionned, these fields will be null
.
They are exposed in your graphql schema which you can query:
query {
allFile {
edges {
node {
fields {
gitLogLatestAuthorName
gitLogLatestAuthorEmail
gitLogLatestDate
}
}
}
}
}
Now you have a File
node to work with:
{
"data": {
"allFile": {
"edges": [
{
"node": {
"fields": {
"gitLogLatestAuthorName":"John Doe",
"gitLogLatestAuthorEmail": "[email protected]",
"gitLogLatestDate": "2020-10-14T12:58:39.000Z"
}
}
}
]
}
}
}
include
[regex][optional]
This plugin will try to match the absolute path of the file with the include
regex.
If it does not match, the file will be skipped.
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-gitinfo`,
options: {
include: /\.md$/i, // Only .md files
},
},
],
}
ignore
[regex][optional]
This plugin will try to match the absolute path of the file with the ignore
regex.
If it does match, the file will be skipped.
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-gitinfo`,
options: {
ignore: /\.jpeg$/i, // All files except .jpeg
},
},
],
}
dir
[string][optional]
The root of the git repository. Will use the current directory if not provided.
Note that including this option will override resolution of symlinks. All files will be checked against the given git repository.
Note: the execution order is first ìnclude
, then ignore
.
module.exports = {
plugins: [
{
resolve: `gatsby-transformer-gitinfo`,
options: {
include: /\.md$/i,
ignore: /README/i, // Will match all .md files, except README.md
},
},
],
}