Skip to content

Commit 4f3eb8c

Browse files
authored
Merge pull request #56 from GlobalHive/feat-rewrite
Feat rewrite
2 parents 7b7c2ee + d9cd056 commit 4f3eb8c

48 files changed

Lines changed: 3084 additions & 4999 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Deploy
2121
uses: JamesIves/github-pages-deploy-action@v4
2222
with:
23-
folder: docs/.vuepress/dist/
23+
folder: docs/.vitepress/dist/
2424
env:
25-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
- name: Publish
2929
run: npm publish
3030
env:
31-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
31+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
steps:
1515
- uses: google-github-actions/release-please-action@v3
1616
with:
17-
release-type: node
17+
release-type: node

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ dist-ssr
2424
*.njsproj
2525
*.sln
2626
*.sw?
27+
28+
# Vitepress
29+
docs/.vitepress/dist
30+
docs/.vitepress/cache

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@
198198

199199
* **docs:** Fixed missing package error ([5994f85](https://github.com/GlobalHive/vuejs-tour/commit/5994f8528a5d95f318d29a99d76d0c4936a5c5dd))
200200
* **package:** fixed formatting ([50eba1c](https://github.com/GlobalHive/vuejs-tour/commit/50eba1c5ed4c55d1a9bfd470071299bc6e8c6328))
201-
* **package:** Fixed pop up showing before start ([6d1feaa](https://github.com/GlobalHive/vuejs-tour/commit/6d1feaab5e0ae90bb1b9863cf8c307501387e1fc))
201+
* **package:** Fixed pop up showing before start ([6d1feaa](https://github.com/GlobalHive/vuejs-tour/commit/6d1feaab5e0ae90bb1b9863cf8c307501387e1fc))

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ For more information about the available props and methods, check out the [docum
143143

144144
## Something Missing?
145145

146-
If you have a feature request or found a bug, [let us know](https://github.com/GlobalHive/vuejs-tour/issues) by submitting an issue.
146+
If you have a feature request or found a bug, [let us know](https://github.com/GlobalHive/vuejs-tour/issues) by submitting an issue.

docs/.vitepress/config.ts

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
import { defineConfig } from 'vitepress'
2+
3+
export default defineConfig({
4+
title: "VueJS Tour",
5+
description: "Guide your users through your application quickly and easily.",
6+
lang: 'en-US',
7+
themeConfig: {
8+
logo: 'https://vuejs.org/images/logo.png',
9+
nav: [
10+
{ text: 'Guide', link: '/guide/what-is-vuejs-tour' },
11+
{ text: 'Reference', link: '/reference/coming-soon' },
12+
{ text: '1.2.3', items: [
13+
{ text: 'Changelog', link: 'https://github.com/GlobalHive/vuejs-tour/blob/master/CHANGELOG.md' },
14+
{ text: 'Roadmap', link: '/guide/roadmap' },
15+
{ text: 'Issues', link: 'https://github.com/GlobalHive/vuejs-tour/issues' }]
16+
}
17+
],
18+
sidebar: {
19+
'/guide/': [
20+
{
21+
text: 'Introduction',
22+
collapsed: false,
23+
items: [
24+
{ text: 'What is VueJS Tour?', link: '/guide/what-is-vuejs-tour' },
25+
{ text: 'Getting Started', link: '/guide/getting-started' },
26+
{ text: 'Create a Tour', link: '/guide/create-a-tour' },
27+
]
28+
},
29+
{
30+
text: 'Customization',
31+
collapsed: false,
32+
items: [
33+
{ text: 'Start Options', link: '/guide/start-options' },
34+
{ text: 'Highlight Target', link: '/guide/highlight-target' },
35+
{ text: 'Using a Backdrop', link: '/guide/using-a-backdrop' },
36+
{ text: 'Hiding the Arrow', link: '/guide/hiding-the-arrow' },
37+
{ text: 'Tour Margin', link: '/guide/tour-margin' },
38+
{ text: 'Saving Progress', link: '/guide/saving-progress' },
39+
]
40+
},
41+
{
42+
text: 'Advanced',
43+
collapsed: false,
44+
items: [
45+
{ text: 'Skipping a Tour', link: '/guide/skipping-a-tour' },
46+
{ text: 'Button Labels', link: '/guide/button-labels' },
47+
{ text: 'Step Options', link: '/guide/step-options' },
48+
{ text: 'Multiple Tours', link: '/guide/multiple-tours' },
49+
]
50+
},
51+
{
52+
text: "What's next?",
53+
collapsed: false,
54+
items: [
55+
{ text: 'Roadmap', link: '/guide/roadmap' },
56+
{ text: 'Changelog', link: 'https://github.com/GlobalHive/vuejs-tour/blob/master/CHANGELOG.md' },
57+
]
58+
}
59+
],
60+
'/reference/': [
61+
{
62+
text: 'Reference',
63+
collapsed: false,
64+
items: [
65+
{ text: 'Coming Soon', link: '/reference/coming-soon' },
66+
]
67+
},
68+
],
69+
},
70+
socialLinks: [
71+
{ icon: 'github', link: 'https://github.com/GlobalHive/vuejs-tour' }
72+
],
73+
footer: {
74+
message: 'Released under the MIT License.',
75+
copyright: 'Made with ❤️ by Global Hive'
76+
},
77+
editLink: {
78+
pattern: 'https://github.com/GlobalHive/vuejs-tour/tree/master/docs/:path',
79+
text: 'Edit this page on GitHub'
80+
},
81+
}
82+
})

docs/.vuepress/client.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/.vuepress/config.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)