still no merge pls

This commit is contained in:
Guy Sartorelli 2023-02-09 16:47:41 +13:00
parent 0d95add94c
commit d08a533d1b
No known key found for this signature in database
GPG Key ID: F313E3B9504D496A
2 changed files with 16 additions and 16 deletions

View File

@ -14,7 +14,7 @@ repository for each major release.
**This repository does NOT contain any documentation.**
The developer documentation is stored in the [silverstripe/developer-docs repository](https://github.com/silverstripe/developer-docs)),
in the `en` folder. For example, the documentation for the
in the `en` folder. For example, the documentation for the
Silverstripe CMS 4.x is stored in
[https://github.com/silverstripe/developer-docs/tree/4/en](https://github.com/silverstripe/developer-docs/tree/4/en).

View File

@ -1,29 +1,29 @@
module.exports = [
{
resolve: `gatsby-source-git`,
resolve: 'gatsby-source-git',
options: {
name: `docs--5`,
remote: `https://github.com/silverstripe/developer-docs.git`,
branch: `5`,
patterns: `en/**`
name: 'docs--5',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '5.0',
patterns: 'en/**'
}
},
{
resolve: `gatsby-source-git`,
resolve: 'gatsby-source-git',
options: {
name: `docs--4`,
remote: `https://github.com/silverstripe/developer-docs.git`,
branch: `4.12`,
patterns: `en/**`
name: 'docs--4',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '4.12',
patterns: 'en/**'
}
},
{
resolve: `gatsby-source-git`,
resolve: 'gatsby-source-git',
options: {
name: `docs--3`,
remote: `https://github.com/silverstripe/developer-docs.git`,
branch: `3`,
patterns: `en/**`
name: 'docs--3',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '3',
patterns: 'en/**'
}
},
];