Skip to content

adobe/parliament-source-changelog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

parliament-source-changelog

Creates a changelog from the folder specified in the plugins options.

Install

yarn add @adobe/parliament-source-changelog

How to use

// In your gatsby-config.js
const changelogTemplate = path.resolve(pathToTemplate);

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-filesystem`,
      options: {
        name: `changelog`,
        path: `${__dirname}/path/to/changelog`,
      },
    },
    {
      resolve: `@adobe/parliament-source-changelog`,
      options: {
        template: changelogTemplate,
        path: `${__dirname}/path/to/changelog`,
      },
    },
  ],
};

How to query

{
  allHeaderTabs {
    edges {
      node {
        id
        path
        title
      }
    }
  }
}

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published