1.1.1 • Published 4 years ago

vuepress-auto-sidebar v1.1.1

Weekly downloads
21
License
MIT
Repository
github
Last release
4 years ago

vuepress-auto-sidebar

vuepress-auto-sidebar is a simple sidebar automating tool for Vuepress.

It looks for folders with README's in the folder vuepress was run in. If a base-option was supplied in config.js, it will instead look in the specified directory.

Only supports .md files named README.

Install

npm install vuepress-auto-sidebar

Usage

config.js

const sidebar = require('vuepress-auto-sidebar')

module.exports = {
    ...
    themeConfig: {
        sidebar: sidebar.getSidebar()
    ...

or CLI:

config.js

module.exports = {
    ...
    themeConfig: {
        sidebar: []
    ...

Then run:

cd vp
vuepress-auto-sidebar

img

Would result in

demo

Changelog

v1.1.0 - 2020-06-20

Bug fix

  • Correctly identify base-option (key can be base or "base") when using sidebar.getSidebar()
  • Ignore all non-directories when scanning root docs folder with both sidebar.getSidebar() and CLI.

v1.0.8 - 2020-06-07

Added

  • CLI Support
  • Rewrites config.js

You can now generate the sidebar with a CLI command, which will rewrite the config.js with the actual sidebar.

This lets you see exactly what is generated as well as letting you further customize it.

The following examples assumes you've installed it globally.

config.js:

module.exports = {
    themeConfig: {
        "sidebar": []
    }
}

Run vuepress-auto-sidebar:

cd vp/path
vuepress-auto-sidebar

config.js result:

module.exports = {
    themeConfig: {
    "sidebar": [
        {
            "title": "Home",
            "path": "/",
            "collapsable": true,
            "children": []
        },
        {
            "title": "ProjectA",
            "path": "/",
            "collapsable": true,
            "children": []
        },
        {
            "title": "ProjectB",
            "path": "/",
            "collapsable": true,
            "children": []
        }
    ]
}
}

CLI also supports base-option.

module.exports = {
    themeConfig: {
    "base": "/base/path/",
    "sidebar": []
    }
}

Run vuepress-auto-sidebar:

vuepress-auto-sidebar

config.js result:

module.exports = {
    themeConfig: {
    "base": "/base/path/",
    "sidebar": [
        {
            "title": "Home",
            "path": "/base/path/",
            "collapsable": true,
            "children": []
        },
        {
            "title": "ProjectA",
            "path": "/base/path/ProjectA/",
            "collapsable": true,
            "children": []
        },
        {
            "title": "ProjectB",
            "path": "/base/path/ProjectB/",
            "collapsable": true,
            "children": []
        }
    ]
}
}

Example scripts if you don't install it globally:

"scripts": {
    "sidebar": "cd vp/path && vuepress-auto-sidebar",
    "dev": "cd vp/path && vuepress-auto-sidebar && vuepress dev"
}

v1.0.5 - 2020-06-07

Added

  • Support for "base"-option in config.js, it will now prepend the base to all paths when generating the sidebar with sidebar.getSidebar().

Contact

If you want to contact me you can reach me at contact@nikals.se

License

This project uses the following license: MIT.

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago