Skip to content

Commit 3d51a1c

Browse files
authored
chore(playground): update playground generator for v8 docs (#3542)
1 parent 13a161c commit 3d51a1c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_templates/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Once you've generated your playground, you need to add it to the main markdown f
2626
```
2727
## Feature
2828
29-
import Feature from '@site/static/usage/v7/button/feature/index.md';
29+
import Feature from '@site/static/usage/v8/button/feature/index.md';
3030
3131
<Feature />
3232
```

_templates/playground/new/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ module.exports = {
5454
type: 'select',
5555
name: 'version',
5656
message: 'Select the Ionic Framework version for the playground',
57-
initial: '7',
58-
choices: ['6', '7'],
57+
initial: '8',
58+
choices: ['6', '7', '8'],
5959
},
6060
{
6161
type: 'toggle',
@@ -77,7 +77,7 @@ module.exports = {
7777

7878
const playgroundName = changeCase.pascal(answers.path.split('/').pop());
7979
console.log(
80-
`\nTo use this playground in a docs markdown file, include\nthe following:\n\n## ${playgroundName}\n\nimport ${playgroundName} from '@site/static/usage/v7/${answers.name}/${answers.path}/index.md';\n\n<${playgroundName} />\n`
80+
`\nTo use this playground in a docs markdown file, include\nthe following:\n\n## ${playgroundName}\n\nimport ${playgroundName} from '@site/static/usage/v${answers.version}/${answers.name}/${answers.path}/index.md';\n\n<${playgroundName} />\n`
8181
);
8282

8383
return answers;

0 commit comments

Comments
 (0)