Update dependencies to newer versions
Updated several key dependencies in package.json and package-lock.json to their newer versions. Also replaced 'html-minifier' with 'html-minifier-terser'. The updates include minor and patch upgrades.
This commit is contained in:
parent
1ee6545eb5
commit
258154e2e3
3 changed files with 480 additions and 2137 deletions
2607
package-lock.json
generated
2607
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -12,15 +12,15 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.5.10",
|
"@astrojs/check": "^0.5.10",
|
||||||
"@astrojs/sitemap": "^3.1.4",
|
"@astrojs/sitemap": "^3.1.4",
|
||||||
"@astrojs/starlight": "^0.21.5",
|
"@astrojs/starlight": "^0.22.1",
|
||||||
"@astrojs/starlight-tailwind": "^2.0.2",
|
"@astrojs/starlight-tailwind": "^2.0.2",
|
||||||
"@astrojs/tailwind": "^5.1.0",
|
"@astrojs/tailwind": "^5.1.0",
|
||||||
"@astrojs/vercel": "^7.5.3",
|
"@astrojs/vercel": "^7.5.4",
|
||||||
"astro": "^4.6.3",
|
"astro": "^4.7.1",
|
||||||
"astro-compressor": "^0.4.1",
|
"astro-compressor": "^0.4.1",
|
||||||
"globby": "^14.0.1",
|
"globby": "^14.0.1",
|
||||||
"gsap": "^3.12.5",
|
"gsap": "^3.12.5",
|
||||||
"html-minifier": "^4.0.0",
|
"html-minifier-terser": "^7.2.0",
|
||||||
"preline": "^2.1.0",
|
"preline": "^2.1.0",
|
||||||
"sharp": "^0.33.3",
|
"sharp": "^0.33.3",
|
||||||
"sharp-ico": "^0.1.5",
|
"sharp-ico": "^0.1.5",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import fs from 'node:fs/promises'
|
import fs from 'node:fs/promises'
|
||||||
import { globby } from 'globby'
|
import { globby } from 'globby'
|
||||||
import { minify } from 'html-minifier'
|
import { minify } from 'html-minifier-terser'
|
||||||
|
|
||||||
// Get all HTML files from the output directory
|
// Get all HTML files from the output directory
|
||||||
const path = './.vercel/output/static'
|
const path = './.vercel/output/static'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue