-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #845 from CobyPear/DB-6235-update-starter-readmes
DB-6235: Update starter kit READMEs
- Loading branch information
Showing
13 changed files
with
325 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'create-pantheon-decoupled-kit': patch | ||
--- | ||
|
||
[next-wp][next-drupal][gatsby-wp] Update READMEs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 0 additions & 114 deletions
114
packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/README.md
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/README.md.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import type { TemplateFn } from '@cli/types'; | ||
import { | ||
commands, | ||
createPantheonDecoupledKitNpmPackage, | ||
gettingStarted, | ||
graphqlPostRequest, | ||
healthCheck, | ||
lando, | ||
readmeHeader, | ||
wordpressKitNpmPackage, | ||
} from '@partials/shared/readme/sharedReadme'; | ||
|
||
const starterName = 'Gatsby WordPress'; | ||
|
||
const md: TemplateFn = () => /* md */ `${readmeHeader(starterName)} | ||
${gettingStarted(starterName)} | ||
## \`@pantheon-systems\` npm Packages | ||
${wordpressKitNpmPackage()} | ||
${createPantheonDecoupledKitNpmPackage()} | ||
${healthCheck('gatsby-wp')} | ||
## Local development | ||
${lando('wordpress')} | ||
${commands(true)} | ||
## Miscellaneous | ||
${graphqlPostRequest()} | ||
`; | ||
|
||
export default md; |
101 changes: 0 additions & 101 deletions
101
packages/create-pantheon-decoupled-kit/src/templates/next-drupal/README.md
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
packages/create-pantheon-decoupled-kit/src/templates/next-drupal/README.md.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import type { TemplateFn } from '@cli/types'; | ||
import { | ||
commands, | ||
createPantheonDecoupledKitNpmPackage, | ||
drupalKitNpmPackage, | ||
gettingStarted, | ||
healthCheck, | ||
lando, | ||
readmeHeader, | ||
} from '@partials/shared/readme/sharedReadme'; | ||
|
||
const starterName = 'Next Drupal'; | ||
|
||
const md: TemplateFn = () => /* md */ `${readmeHeader(starterName)} | ||
${gettingStarted(starterName)} | ||
## \`@pantheon-systems\` npm Packages | ||
${drupalKitNpmPackage()} | ||
${createPantheonDecoupledKitNpmPackage()} | ||
${healthCheck('next-drupal')} | ||
## Local development | ||
${lando('drupal')} | ||
${commands(false)} | ||
`; | ||
|
||
export default md; |
Oops, something went wrong.