Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade grpc.io-docsy to match docsy 0.4.0 #1027

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"_build": "hugo --cleanDestinationDir -e dev -DFE",
"_check-links": "make check-links",
"_get:no": "echo SKIPPING get operation",
"_get:submodule": "set -x && git submodule update --init --recursive ${DEPTH:- --depth 1}",
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
"_prebuild": "npm run get:submodule",
"_prepare:docsy": "cd themes/docsy && npm install",
"_serve:hugo": "hugo serve -DFE --minify",
"_serve": "netlify dev -c \"npm run _serve:hugo\"",
"build:preview": "set -x && npm run _build -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
Expand All @@ -22,14 +23,15 @@
"precheck-links:all": "npm run build",
"precheck-links": "npm run build",
"preinstall": "npm run get:submodule",
"prepare": "npm run get:submodule && npm run _prepare:docsy",
"preserve:hugo": "npm run _prebuild",
"preserve": "npm run _prebuild",
"serve:hugo": "npm run _serve:hugo",
"serve": "npm run _serve",
"test": "npm run check-links",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:pkg:hugo+": "npm install --save-dev autoprefixer@latest postcss@latest postcss-cli@latest",
"update:submodule": "set -x && git submodule update --remote --recursive ${DEPTH:- --depth 1}"
"update:submodule": "set -x && git submodule update --remote ${DEPTH:- --depth 1}"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
Expand Down
2 changes: 1 addition & 1 deletion themes/docsy
Submodule docsy updated 93 files
+0 −7 .gitmodules
+70 −8 CHANGELOG.md
+63 −0 CONTRIBUTING.md
+9 −0 Dockerfile
+33 −17 assets/scss/_taxonomy.scss
+1 −0 assets/scss/main.scss
+2 −0 assets/scss/shortcodes.scss
+24 −0 assets/scss/shortcodes/cards-pane.scss
+42 −0 assets/scss/shortcodes/tabbed-pane.scss
+0 −1 assets/vendor/Font-Awesome
+0 −1 assets/vendor/bootstrap
+14 −0 docker-compose.yaml
+1 −1 go.mod
+1 −1 i18n/ar.toml
+1 −1 i18n/bg.toml
+16 −10 i18n/bn.toml
+1 −3 i18n/de.toml
+1 −1 i18n/en.toml
+3 −5 i18n/es.toml
+1 −1 i18n/et.toml
+1 −1 i18n/fa.toml
+4 −2 i18n/fr.toml
+1 −1 i18n/hu.toml
+1 −1 i18n/it.toml
+1 −1 i18n/ja.toml
+1 −1 i18n/ko.toml
+1 −1 i18n/nl.toml
+1 −1 i18n/no.toml
+1 −1 i18n/pl.toml
+1 −1 i18n/pt-br.toml
+14 −10 i18n/ru.toml
+81 −0 i18n/sv.toml
+1 −1 i18n/tr.toml
+6 −2 i18n/uk.toml
+1 −1 layouts/_default/baseof.html
+5 −2 layouts/_default/taxonomy.html
+1 −1 layouts/blog/baseof.html
+1 −1 layouts/blog/baseof.print.html
+1 −1 layouts/docs/baseof.html
+1 −1 layouts/docs/baseof.print.html
+5 −1 layouts/partials/breadcrumb.html
+1 −1 layouts/partials/community_links.html
+1 −1 layouts/partials/head.html
+1 −1 layouts/partials/page-meta-links.html
+3 −1 layouts/partials/search-input.html
+3 −3 layouts/partials/sidebar-tree.html
+36 −0 layouts/shortcodes/readfile.html
+0 −8 layouts/shortcodes/readfile.md
+22 −11 layouts/shortcodes/tab.html
+95 −18 layouts/shortcodes/tabpane.html
+1 −1 layouts/swagger/baseof.html
+1 −1 netlify.toml
+4 −3 package.json
+0 −2 static/css/shortcodes.css
+0 −21 static/css/shortcodes/cards-pane.css
+0 −18 static/css/shortcodes/tabbed-pane.css
+3 −3 static/js/tabpane-persist.js
+0 −7 userguide/config.toml
+ userguide/content/en/docs/Adding content/Shortcodes/flags/de.png
+ userguide/content/en/docs/Adding content/Shortcodes/flags/tz.png
+ userguide/content/en/docs/Adding content/Shortcodes/flags/uk.png
+11 −0 userguide/content/en/docs/Adding content/Shortcodes/includes/config.yaml
+10 −0 userguide/content/en/docs/Adding content/Shortcodes/includes/installation.md
+215 −50 userguide/content/en/docs/Adding content/Shortcodes/index.md
+459 −55 userguide/content/en/docs/Adding content/content.md
+308 −41 userguide/content/en/docs/Adding content/diagrams-and-formulae/index.md
+140 −17 userguide/content/en/docs/Adding content/feedback.md
+26 −5 userguide/content/en/docs/Adding content/iconsimages.md
+55 −12 userguide/content/en/docs/Adding content/lookandfeel.md
+310 −66 userguide/content/en/docs/Adding content/navigation.md
+66 −7 userguide/content/en/docs/Adding content/print.md
+188 −26 userguide/content/en/docs/Adding content/repository-links.md
+88 −18 userguide/content/en/docs/Adding content/taxonomy.md
+85 −16 userguide/content/en/docs/Adding content/versioning.md
+1 −1 userguide/content/en/docs/Best practices/organizing-content.md
+2 −23 userguide/content/en/docs/Best practices/site-guidance.md
+57 −14 userguide/content/en/docs/Contribution guidelines/_index.md
+47 −35 userguide/content/en/docs/Deployment/_index.md
+4 −3 userguide/content/en/docs/Examples/_index.md
+1 −1 userguide/content/en/docs/Get started/Docsy-As-Module/_index.md
+13 −8 userguide/content/en/docs/Get started/Docsy-As-Module/example-site-as-template.md
+17 −12 userguide/content/en/docs/Get started/Docsy-As-Module/installation-prerequisites.md
+27 −16 userguide/content/en/docs/Get started/Docsy-As-Module/start-from-scratch.md
+7 −8 userguide/content/en/docs/Get started/_index.md
+58 −36 userguide/content/en/docs/Get started/other-options.md
+1 −1 userguide/content/en/docs/Get started/quickstart-docker.md
+48 −5 userguide/content/en/docs/Language/_index.md
+65 −31 userguide/content/en/docs/Updating/Convert-site-to-module.md
+6 −7 userguide/content/en/docs/Updating/Updating-hugo-module.md
+20 −13 userguide/content/en/docs/Updating/Updating-submodules.md
+2 −2 userguide/content/en/docs/Updating/_index.md
+2 −2 userguide/content/en/docs/_index.md
+3 −5 userguide/package.json