1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-04-22 08:44:08 +02:00

Update devDependencies (#41383)

This commit is contained in:
Julien Déramond 2025-04-15 21:09:29 +02:00 committed by GitHub
parent 2b55a457ce
commit d01e66f5f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 316 additions and 522 deletions

806
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -110,7 +110,7 @@
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/markdown-remark": "^6.3.1",
"@astrojs/mdx": "^4.2.3",
"@astrojs/mdx": "^4.2.4",
"@astrojs/prism": "^3.2.0",
"@astrojs/sitemap": "^3.3.0",
"@babel/cli": "^7.27.0",
@ -123,14 +123,14 @@
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@stackblitz/sdk": "^1.11.0",
"@types/google.analytics": "^0.0.42",
"@types/google.analytics": "^0.0.46",
"@types/js-yaml": "^4.0.5",
"@types/mime": "^3.0.1",
"@types/prismjs": "^1.26.0",
"astro": "^5.6.1",
"astro": "^5.7.0",
"astro-auto-import": "^0.4.4",
"autoprefixer": "^10.4.21",
"bundlewatch": "^0.4.0",
"bundlewatch": "^0.4.1",
"clean-css-cli": "^5.6.3",
"clipboard": "^2.0.11",
"cross-env": "^7.0.3",
@ -144,7 +144,7 @@
"github-slugger": "^2.0.0",
"globby": "^14.1.0",
"hammer-simulator": "0.0.1",
"htmlparser2": "^8.0.1",
"htmlparser2": "^10.0.0",
"image-size": "^1.0.2",
"ip": "^2.0.1",
"jasmine": "^5.6.0",
@ -160,14 +160,14 @@
"karma-jasmine-html-reporter": "^2.1.0",
"karma-rollup-preprocessor": "7.0.7",
"lockfile-lint": "^4.14.0",
"mime": "^3.0.0",
"mime": "^4.0.7",
"nodemon": "^3.1.9",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"rehype-autolink-headings": "^6.1.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"rehype-autolink-headings": "^7.1.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"rollup": "^4.38.0",
@ -179,7 +179,7 @@
"stylelint": "^16.17.0",
"stylelint-config-twbs-bootstrap": "^16.0.0",
"terser": "^5.39.0",
"unist-util-visit": "^4.1.2",
"unist-util-visit": "^5.0.0",
"vnu-jar": "24.10.17",
"zod": "^3.20.6"
},

View File

@ -11,10 +11,10 @@ const site = isDev
? // In development mode, use the local dev server.
'http://localhost:4321'
: process.env.DEPLOY_PRIME_URL !== undefined
? // If deploying on Netlify, use the `DEPLOY_PRIME_URL` environment variable.
process.env.DEPLOY_PRIME_URL
: // Otherwise, use the `baseURL` value defined in the `config.yml` file.
getConfig().baseURL
? // If deploying on Netlify, use the `DEPLOY_PRIME_URL` environment variable.
process.env.DEPLOY_PRIME_URL
: // Otherwise, use the `baseURL` value defined in the `config.yml` file.
getConfig().baseURL
// https://astro.build/config
export default defineConfig({

View File

@ -147,8 +147,8 @@ function replaceInFrontmatter(record: Record<string, unknown>, replacer: (value:
return typeof arrayValue === 'string'
? replacer(arrayValue)
: typeof arrayValue === 'object'
? replaceInFrontmatter(arrayValue, replacer)
: arrayValue
? replaceInFrontmatter(arrayValue, replacer)
: arrayValue
})
}
}