Skip to content

Commit

Permalink
Update vitepress version to enable next and previous links
Browse files Browse the repository at this point in the history
  • Loading branch information
ElMassimo committed Nov 19, 2020
1 parent bf1b3bc commit a52006b
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 58 deletions.
100 changes: 49 additions & 51 deletions docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,57 +49,55 @@ const config = {
},
],

sidebar: {
'/': [
{ text: 'Introduction', link: '/introduction.html' },
{ text: 'Installation', link: '/installation.html' },
{
text: 'Basic Usage',
collapsable: false,
children: [
{
text: 'Getting Started',
link: '/guide/index.html',
},
{
text: 'Selectors',
link: '/guide/essentials/selectors.html',
},
{
text: 'Assertions',
link: '/guide/essentials/assertions.html',
},
{
text: 'Actions',
link: '/guide/essentials/actions.html',
},
{
text: 'Finders',
link: '/guide/essentials/finders.html',
},
{
text: 'Matchers',
link: '/guide/essentials/matchers.html',
},
],
},
{
text: 'Advanced',
collapsable: false,
children: [
{
text: 'Synchronizing Assertions',
link: '/guide/advanced/synchronization.html',
},
{
text: 'Design Patterns',
link: '/guide/advanced/design-patterns.html',
},
],
},
{ text: 'Migrating from Cucumber', link: '/guide/migrating_from_cucumber/index.html' },
],
},
sidebar: [
{ text: 'Introduction', link: '/introduction.html' },
{ text: 'Installation', link: '/installation.html' },
{
text: 'Basic Usage',
collapsable: false,
children: [
{
text: 'Getting Started',
link: '/guide/index.html',
},
{
text: 'Selectors',
link: '/guide/essentials/selectors.html',
},
{
text: 'Assertions',
link: '/guide/essentials/assertions.html',
},
{
text: 'Actions',
link: '/guide/essentials/actions.html',
},
{
text: 'Finders',
link: '/guide/essentials/finders.html',
},
{
text: 'Matchers',
link: '/guide/essentials/matchers.html',
},
],
},
{
text: 'Advanced',
collapsable: false,
children: [
{
text: 'Synchronizing Assertions',
link: '/guide/advanced/synchronization.html',
},
{
text: 'Design Patterns',
link: '/guide/advanced/design-patterns.html',
},
],
},
{ text: 'Migrating from Cucumber', link: '/guide/migrating_from_cucumber/index.html' },
],
},
}

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/Layout.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import DefaultTheme from 'vitepress/dist/client/theme-default'
import DefaultTheme from 'massimopress/dist/client/theme-default'
import AlgoliaSearchBox from './components/AlgoliaSearchBox.vue'
export default {
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import DefaultTheme from 'vitepress/dist/client/theme-default'
import DefaultTheme from 'massimopress/dist/client/theme-default'
import Layout from './Layout.vue'
import SampleComponent from '../components/SampleComponent.vue'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.1.0",
"typescript": "^4.0.5",
"massimopress": "0.7.5-rc2",
"massimopress": "0.7.5-rc3",
"vitepress": "^0.7.4",
"vue": "^3.0.2"
}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2678,10 +2678,10 @@ markdown-it@^10.0.0:
mdurl "^1.0.1"
uc.micro "^1.0.5"

massimopress@0.7.5-rc2:
version "0.7.5-rc2"
resolved "https://registry.yarnpkg.com/massimopress/-/massimopress-0.7.5-rc2.tgz#0b54e7dc1a4a142ee9faded9c402c331acd514c8"
integrity sha512-b+ZEJ+khRdMLh2LGUvJ8AGc4PA7sc44SvuRUjSNCp4OXozk6oZQdguqfSXx5tgNGZetOZ88zLQs9l/QWEtYocw==
massimopress@0.7.5-rc3:
version "0.7.5-rc3"
resolved "https://registry.yarnpkg.com/massimopress/-/massimopress-0.7.5-rc3.tgz#0047001fd9c3e0ef639faeaed79f96ca8191791f"
integrity sha512-dyq9wVxVJO/Jxb4Vp3ZyAVwUDqJX/oLh4RkrV6olwhEegc25hukYLOw3TtzVQxo3MEUbpC9ysutBiDXiHznAUg==
dependencies:
"@vue/compiler-sfc" "^3.0.2"
"@vue/server-renderer" "^3.0.2"
Expand Down

0 comments on commit a52006b

Please sign in to comment.