Skip to content

Releases: portway/gatsby-source-portway

Bugfix: Draft check

12 Feb 19:11
9e4208c
Compare
Choose a tag to compare
Merge pull request #14 from portway/jc-draft-bugfix

Fixes draft check bug

Adds draft documents option

11 Feb 22:31
f798aa4
Compare
Choose a tag to compare

Adds a draft option to request draft Portway documents. This can be useful during local development.

Bugfix: Github action

26 Jan 23:34
d1c6c2f
Compare
Choose a tag to compare

Adjust the action trigger for publishing to NPM.

Gatsby image support

26 Jan 23:06
a24629d
Compare
Choose a tag to compare

Adds support for gatsby-image. Adding gatsby-plugin-sharp and gatsby-transformer-sharp to your project will give you the ability to query images for the gatsby-image plugin.

Here is a sample query.

query {
  allPortwayDocument {
    nodes {
      name
      slug
      updatedAt
      childrenPortwayField {
        value
        name
        remoteImage {
          childImageSharp {
            fluid(maxWidth: 320) {
              ...GatsbyImageSharpFluid_withWebp_tracedSVG
            }
          }
        }
      }
    }
  }
}

Package updates / update node media types

22 Jan 01:24
2bcbd44
Compare
Choose a tag to compare
1.0.2

Create npm-publish.yml