Skip to content

Commit

Permalink
Merge branch 'main' into dropdowns-menu_items-click_color
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangChengLin committed Mar 27, 2024
2 parents 693e477 + 24cc552 commit fc54be8
Show file tree
Hide file tree
Showing 8 changed files with 140 additions and 114 deletions.
222 changes: 122 additions & 100 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -104,16 +104,16 @@
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.1",
"@babel/preset-env": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@docsearch/js": "^3.6.0",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@stackblitz/sdk": "^1.9.0",
"autoprefixer": "^10.4.18",
"autoprefixer": "^10.4.19",
"bundlewatch": "^0.3.3",
"clean-css-cli": "^5.6.3",
"clipboard": "^2.0.11",
Expand All @@ -127,7 +127,7 @@
"find-unused-sass-variables": "^5.0.0",
"globby": "^14.0.1",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.121.0",
"hugo-bin": "^0.121.1",
"ip": "^2.0.1",
"jasmine": "^5.1.0",
"jquery": "^3.7.1",
Expand All @@ -143,15 +143,15 @@
"lockfile-lint": "^4.13.2",
"nodemon": "^3.1.0",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.36",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"rollup": "^4.13.0",
"rollup-plugin-istanbul": "^5.0.0",
"rtlcss": "^4.1.1",
"sass": "^1.72.0",
"sass-true": "^8.0.0",
"shelljs": "^0.8.5",
"stylelint": "^16.2.1",
"stylelint": "^16.3.0",
"stylelint-config-twbs-bootstrap": "^14.0.0",
"terser": "^5.29.2",
"vnu-jar": "23.4.11"
Expand Down
2 changes: 1 addition & 1 deletion site/assets/js/snippets.js
Expand Up @@ -5,7 +5,7 @@
* For details, see https://creativecommons.org/licenses/by/3.0/.
*/

// Note that this file is not published; we only include it in scrpts.html
// Note that this file is not published; we only include it in scripts.html
// for StackBlitz to work

/* eslint-disable import/no-unresolved */
Expand Down
3 changes: 2 additions & 1 deletion site/content/404.md
Expand Up @@ -4,7 +4,8 @@ layout: 404
description: ""
url: /404.html
robots: noindex,follow
sitemap_exclude: true
sitemap:
exclude: true
---

<div class="text-center py-5">
Expand Down
3 changes: 2 additions & 1 deletion site/content/docs/5.3/_index.html
@@ -1,5 +1,6 @@
---
layout: redirect
sitemap_exclude: true
sitemap:
exclude: true
redirect: "/docs/5.3/getting-started/introduction/"
---
3 changes: 2 additions & 1 deletion site/content/docs/5.3/docsref.md
Expand Up @@ -5,7 +5,8 @@ description: Examples of Bootstrap's documentation-specific components and style
aliases: "/docsref/"
toc: true
robots: noindex,follow
sitemap_exclude: true
sitemap:
exclude: true
---

## Buttons
Expand Down
3 changes: 2 additions & 1 deletion site/content/docs/_index.html
@@ -1,5 +1,6 @@
---
layout: redirect
sitemap_exclude: true
sitemap:
exclude: true
redirect: "/docs/5.3/getting-started/introduction/"
---
6 changes: 3 additions & 3 deletions site/layouts/sitemap.xml
@@ -1,12 +1,12 @@
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
{{- range .Data.Pages -}}{{ if and .Permalink (ne .Params.sitemap_exclude true) }}
{{- range where .Data.Pages "Params.sitemap.exclude" "ne" true -}}{{ if .Permalink }}
<url>
<loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML (.Lastmod.Format "2006-01-02T15:04:05-07:00") }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
<xhtml:link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}"/>{{ end }}
<xhtml:link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}"/>{{ end }}
<xhtml:link rel="alternate" hreflang="{{ .Language.LanguageCode }}" href="{{ .Permalink }}"/>{{ end }}
<xhtml:link rel="alternate" hreflang="{{ .Language.LanguageCode }}" href="{{ .Permalink }}"/>{{ end }}
</url>{{ end }}{{ end }}
</urlset>

0 comments on commit fc54be8

Please sign in to comment.