From 5c3b7a5613cf8959baf26bfa7880de76f4f8fb9a Mon Sep 17 00:00:00 2001 From: alexfornuto Date: Wed, 14 Jul 2021 16:31:47 -0500 Subject: [PATCH] replace Vuepress tab plugin now using https://github.com/superbiger/vuepress-plugin-tabs --- docs/.vuepress/config.js | 2 +- docs/.vuepress/styles/index.styl | 1 - package.json | 5 ++--- 3 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 docs/.vuepress/styles/index.styl diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 95b4bf6ca..6c3fc9f3f 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -4,7 +4,7 @@ module.exports = { description: "Pomerium is a beyond-corp inspired, zero trust, open source identity-aware access proxy.", plugins: [ - "tabs", + "vuepress-plugin-element-tabs", [ "check-md", { pattern: "**/*.md", diff --git a/docs/.vuepress/styles/index.styl b/docs/.vuepress/styles/index.styl deleted file mode 100644 index 2918b6a91..000000000 --- a/docs/.vuepress/styles/index.styl +++ /dev/null @@ -1 +0,0 @@ -@require '~vuepress-plugin-tabs/dist/themes/default.styl' \ No newline at end of file diff --git a/package.json b/package.json index d6d568313..11ee74c54 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "@vuepress/plugin-google-analytics": "1.8.2", "vuepress": "1.8.2", "vuepress-plugin-check-md": "0.0.2", + "vuepress-plugin-element-tabs": "^0.2.8", "vuepress-plugin-sitemap": "2.3.1" }, "scripts": { @@ -11,8 +12,6 @@ "docs:check-md": "vuepress check-md" }, "dependencies": { - "esm": "3.2.25", - "vue-tabs-component": "^1.5.0", - "vuepress-plugin-tabs": "^0.3.0" + "esm": "3.2.25" } }