From cde3cdd95cb8858c5b04d8512d1b8bd752ba1cf6 Mon Sep 17 00:00:00 2001 From: canstand Date: Tue, 19 Dec 2023 21:47:00 +0800 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=20update=20deps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/components.css | 62 +++++----- netlify.toml | 2 +- package-lock.json | 235 +++++++++++++++++++++++--------------- package.hugo.json | 17 +-- package.json | 16 +-- 5 files changed, 189 insertions(+), 143 deletions(-) diff --git a/assets/css/components.css b/assets/css/components.css index a0b6426..d213839 100644 --- a/assets/css/components.css +++ b/assets/css/components.css @@ -5,7 +5,7 @@ } body { - @apply text-neutral-700 dark:text-neutral-300 bg-neutral-50 dark:bg-neutral-800; + @apply bg-neutral-50 text-neutral-700 dark:bg-neutral-800 dark:text-neutral-300; } /* Heading anchors */ @@ -19,7 +19,7 @@ body { } .prose .heading-anchor { - @apply absolute top-0 no-underline -left-5 opacity-0; + @apply absolute -left-5 top-0 no-underline opacity-0; } .prose .heading-anchor:hover, @@ -43,21 +43,21 @@ body { .prose h1:lang(zh), .prose h2:lang(zh), .prose h3:lang(zh) { - @apply mt-6 tracking-wider font-semibold; + @apply mt-6 font-semibold tracking-wider; /* margin-block-start: 24px; font-weight: 600; */ } .prose h4:lang(zh), .prose h5:lang(zh) { - @apply mt-6 mb-3 font-semibold; + @apply mb-3 mt-6 font-semibold; /* margin-block-start: 24px; margin-block-end: 12px; font-weight: 600; */ } .prose h6:lang(zh) { - @apply mt-6 mb-3; + @apply mb-3 mt-6; /* margin-block-start: 24px; margin-block-end: 12px; */ } @@ -96,7 +96,7 @@ body { /* font-size: 18px; font-weight: 600; line-height: 24px; */ - @apply text-lg leading-6 font-semibold; + @apply text-lg font-semibold leading-6; } .prose hr:lang(zh) { @@ -105,13 +105,13 @@ body { margin-block-end: 47px; margin-inline-start: auto; margin-inline-end: auto; */ - @apply mt-12 mb-[47px] mx-auto w-1/3; + @apply mx-auto mb-[47px] mt-12 w-1/3; } .prose p:lang(zh) { /* margin-block-start: 12px; margin-block-end: 24px; */ - @apply mt-3 mb-6; + @apply mb-6 mt-3; /* text-align: justify; */ } @@ -126,7 +126,7 @@ body { .prose dl:lang(zh) { /* margin-block-start: 12px; margin-block-end: 24px; */ - @apply mt-3 mb-6; + @apply mb-6 mt-3; } .prose ul:lang(zh) > li, @@ -162,7 +162,7 @@ body { margin-block-end: 24px; margin-inline-start: auto; margin-inline-end: auto; */ - @apply box-border mx-auto mt-3 mb-6 border-neutral-300 dark:border-neutral-600; + @apply mx-auto mb-6 mt-3 box-border border-neutral-300 dark:border-neutral-600; } .prose thead:lang(zh) th, @@ -174,25 +174,25 @@ body { border-width: 1px; border-collapse: collapse; border-style: solid; */ - @apply p-2 border border-collapse border-solid border-neutral-300 dark:border-neutral-600; + @apply border-collapse border border-solid border-neutral-300 p-2 dark:border-neutral-600; } .prose tbody:lang(zh) tr { /* border-bottom-width: 0px; border-collapse: collapse; */ - @apply border-b-0 border-collapse; + @apply border-collapse border-b-0; } .prose tbody:lang(zh) tr:last-child { /* border-bottom-width: 0px; border-collapse: collapse; */ - @apply border-b-0 border-collapse; + @apply border-collapse border-b-0; } .prose thead:lang(zh) tr:first-child { /* border-top-width: 0px; border-collapse: collapse; */ - @apply border-t-0 border-collapse; + @apply border-collapse border-t-0; } .prose thead:lang(zh) th:last-child, @@ -211,7 +211,7 @@ body { .prose :lang(zh) code::after { /* content: none; width: 4px; */ - @apply content-none w-1; + @apply w-1 content-none; } .prose blockquote:lang(zh) { @@ -242,7 +242,7 @@ body { } .pagination .page-item .page-link { - @apply p-2 m-2; + @apply m-2 p-2; } .pagination .active { @@ -271,7 +271,7 @@ body { } .article-pagination a:hover .article-pagination-title { - @apply underline decoration-primary-700 text-primary-700 dark:text-primary-400; + @apply text-primary-700 underline decoration-primary-700 dark:text-primary-400; } .article-pagination a:hover .article-pagination-direction { @@ -281,7 +281,7 @@ body { /* -- Chroma Highlight -- */ /* Background */ .prose .chroma { - @apply rounded-md text-neutral-700 bg-neutral-100 dark:bg-neutral-700 dark:text-neutral-200; + @apply rounded-md bg-neutral-100 text-neutral-700 dark:bg-neutral-700 dark:text-neutral-200; } /* Other */ .chroma .x { @@ -292,29 +292,29 @@ body { /* LineTableTD */ .chroma .lntd, .chroma .lntd pre { - @apply p-0 m-0 align-top border-none; + @apply m-0 border-none p-0 align-top; } /* LineTable */ .chroma .lntable { - @apply block w-auto px-4 py-3 overflow-hidden text-base; + @apply block w-auto overflow-hidden px-4 py-3 text-base; border-spacing: 0; } /* LineHighlight */ .chroma .hl { - @apply block w-auto px-4 -mx-4 bg-primary-100 dark:bg-primary-900; + @apply -mx-4 block w-auto bg-primary-100 px-4 dark:bg-primary-900; } .chroma .lntd .hl { - @apply p-0 m-0; + @apply m-0 p-0; } /* LineNumbersTable */ .chroma .lnt { - @apply text-neutral-600 dark:text-neutral-300 mr-2 py-0 px-2; + @apply mr-2 px-2 py-0 text-neutral-600 dark:text-neutral-300; /* margin-right: 0.4em; padding: 0 0.4em 0 0.4em; */ } /* LineNumbers */ .chroma .ln { - @apply text-neutral-600 dark:text-neutral-300 mr-2 py-0 px-2; + @apply mr-2 px-2 py-0 text-neutral-600 dark:text-neutral-300; /* margin-right: 0.4em; padding: 0 0.4em 0 0.4em; */ } @@ -539,7 +539,7 @@ body { } /* CommentHashbang */ .chroma .ch { - @apply italic font-semibold text-neutral-400 dark:text-neutral-500; + @apply font-semibold italic text-neutral-400 dark:text-neutral-500; } /* CommentMultiline */ .chroma .cm { @@ -611,7 +611,7 @@ body { } #TableOfContents ul { - @apply pt-2 pl-0 list-none; + @apply list-none pl-0 pt-2; } #TableOfContents ul ul { @@ -623,24 +623,24 @@ body { } #TableOfContents li a { - @apply block pl-2 border-l-2 border-transparent; + @apply block border-l-2 border-transparent pl-2; } #TableOfContents li.active > a { - @apply block pl-2 border-l-2 border-primary-500; + @apply block border-l-2 border-primary-500 pl-2; } /* Tabs shortcode (todo: use peer-checked if hugo support jit-mode directly ) */ .tabs { - @apply my-4 overflow-hidden flex flex-wrap rounded-md border border-neutral-500; + @apply my-4 flex flex-wrap overflow-hidden rounded-md border border-neutral-500; } .tab-label { - @apply inline-block px-4 py-1 border-b-2 border-transparent cursor-pointer hover:text-primary-500; + @apply inline-block cursor-pointer border-b-2 border-transparent px-4 py-1 hover:text-primary-500; } .tab-content { - @apply w-full p-4 order-last border-t border-neutral-500; + @apply order-last w-full border-t border-neutral-500 p-4; } .tab-control:checked + .tab-label { diff --git a/netlify.toml b/netlify.toml index 931eef8..46a5c90 100644 --- a/netlify.toml +++ b/netlify.toml @@ -3,7 +3,7 @@ publish = "exampleSite/public" command = "hugo --gc -s ./exampleSite --minify --baseURL $URL" [build.environment] -HUGO_VERSION = "0.116.0" +HUGO_VERSION = "0.121.1" HUGO_THEMESDIR = "../.." HUGO_THEME = "repo" diff --git a/package-lock.json b/package-lock.json index 9d3107f..5e179f8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,26 +1,26 @@ { "name": "hugo-compost", - "version": "0.6.3", + "version": "0.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hugo-compost", - "version": "0.6.3", + "version": "0.7.0", "license": "MIT", "dependencies": { - "@alpinejs/intersect": "^3.13.1", - "alpinejs": "^3.13.1" + "@alpinejs/intersect": "^3.13.3", + "alpinejs": "^3.13.3" }, "devDependencies": { "@tailwindcss/typography": "^0.5.10", "autoprefixer": "^10.4.16", - "postcss": "^8.4.31", - "postcss-cli": "^10.1.0", - "prettier": "^3.0.3", + "postcss": "^8.4.32", + "postcss-cli": "^11.0.0", + "prettier": "^3.1.1", "prettier-plugin-go-template": "^0.0.15", - "prettier-plugin-tailwindcss": "^0.5.5", - "tailwindcss": "^3.3.3" + "prettier-plugin-tailwindcss": "^0.5.9", + "tailwindcss": "^3.3.7" } }, "node_modules/@alloc/quick-lru": { @@ -36,9 +36,9 @@ } }, "node_modules/@alpinejs/intersect": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/@alpinejs/intersect/-/intersect-3.13.1.tgz", - "integrity": "sha512-4M6X0tPCNB+ibXL9vyVgUvY2ZYMrBRly1L9N5iMN6p72Capm94e/sLwD76c9QKxUhr52rsoyUopjbGNqVJVrDw==" + "version": "3.13.3", + "resolved": "https://registry.npmjs.org/@alpinejs/intersect/-/intersect-3.13.3.tgz", + "integrity": "sha512-4iwomnp4VXP1OmFfyol0sEgWdMFmX1WBlc8/gxRt6tO8PeeJjnZMdGjJeY6gNeRWS4g6I9aTUycdsyl6OQNv7w==" }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.3", @@ -129,6 +129,18 @@ "node": ">= 8" } }, + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@tailwindcss/typography": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.10.tgz", @@ -158,9 +170,9 @@ "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" }, "node_modules/alpinejs": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.1.tgz", - "integrity": "sha512-/LZ7mumW02V7AV5xTTftJFHS0I3KOXLl7tHm4xpxXAV+HJ/zjTT0n8MU7RZ6UoGPhmO/i+KEhQojaH/0RsH5tg==", + "version": "3.13.3", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.3.tgz", + "integrity": "sha512-WZ6WQjkAOl+WdW/jukzNHq9zHFDNKmkk/x6WF7WdyNDD6woinrfXCVsZXm0galjbco+pEpYmJLtwlZwcOfIVdg==", "dependencies": { "@vue/reactivity": "~3.1.1" } @@ -450,18 +462,6 @@ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", "dev": true }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/dlv": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", @@ -490,9 +490,9 @@ } }, "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -506,9 +506,9 @@ } }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -633,31 +633,20 @@ } }, "node_modules/globby": { - "version": "13.1.4", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", - "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", "dev": true, "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -682,9 +671,9 @@ } }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, "engines": { "node": ">= 4" @@ -770,9 +759,9 @@ } }, "node_modules/jiti": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", - "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", "dev": true, "bin": { "jiti": "bin/jiti.js" @@ -869,9 +858,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", "dev": true, "funding": [ { @@ -953,12 +942,15 @@ "dev": true }, "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/picocolors": { @@ -998,9 +990,9 @@ } }, "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", "dev": true, "funding": [ { @@ -1017,7 +1009,7 @@ } ], "dependencies": { - "nanoid": "^3.3.6", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -1026,18 +1018,18 @@ } }, "node_modules/postcss-cli": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.1.0.tgz", - "integrity": "sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.0.tgz", + "integrity": "sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==", "dev": true, "dependencies": { "chokidar": "^3.3.0", "dependency-graph": "^0.11.0", "fs-extra": "^11.0.0", "get-stdin": "^9.0.0", - "globby": "^13.0.0", + "globby": "^14.0.0", "picocolors": "^1.0.0", - "postcss-load-config": "^4.0.0", + "postcss-load-config": "^5.0.0", "postcss-reporter": "^7.0.0", "pretty-hrtime": "^1.0.3", "read-cache": "^1.0.0", @@ -1048,12 +1040,56 @@ "postcss": "index.js" }, "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { "postcss": "^8.0.0" } }, + "node_modules/postcss-cli/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-cli/node_modules/postcss-load-config": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.0.2.tgz", + "integrity": "sha512-Q8QR3FYbqOKa0bnC1UQ2bFq9/ulHX5Bi34muzitMr8aDtUelO5xKeJEYC/5smE0jNE9zdB/NBnOwXKexELbRlw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + } + } + }, "node_modules/postcss-import": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", @@ -1191,9 +1227,9 @@ "dev": true }, "node_modules/prettier": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", - "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -1221,9 +1257,9 @@ } }, "node_modules/prettier-plugin-tailwindcss": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.5.tgz", - "integrity": "sha512-voy0CjWv/CM8yeaduv5ZwovovpTGMR5LbzlhGF+LtEvMJt9wBeVTVnW781hL38R/RcDXCJwN2rolsgr94B/n0Q==", + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.9.tgz", + "integrity": "sha512-9x3t1s2Cjbut2QiP+O0mDqV3gLXTe2CgRlQDgucopVkUdw26sQi53p/q4qvGxMLBDfk/dcTV57Aa/zYwz9l8Ew==", "dev": true, "engines": { "node": ">=14.21.3" @@ -1232,13 +1268,13 @@ "@ianvs/prettier-plugin-sort-imports": "*", "@prettier/plugin-pug": "*", "@shopify/prettier-plugin-liquid": "*", - "@shufo/prettier-plugin-blade": "*", "@trivago/prettier-plugin-sort-imports": "*", "prettier": "^3.0", "prettier-plugin-astro": "*", "prettier-plugin-css-order": "*", "prettier-plugin-import-sort": "*", "prettier-plugin-jsdoc": "*", + "prettier-plugin-marko": "*", "prettier-plugin-organize-attributes": "*", "prettier-plugin-organize-imports": "*", "prettier-plugin-style-order": "*", @@ -1254,9 +1290,6 @@ "@shopify/prettier-plugin-liquid": { "optional": true }, - "@shufo/prettier-plugin-blade": { - "optional": true - }, "@trivago/prettier-plugin-sort-imports": { "optional": true }, @@ -1483,9 +1516,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", - "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.7.tgz", + "integrity": "sha512-pjgQxDZPvyS/nG3ZYkyCvsbONJl7GdOejfm24iMt2ElYQQw8Jc4p0m8RdMp7mznPD0kUhfzwV3zAwa80qI0zmQ==", "dev": true, "dependencies": { "@alloc/quick-lru": "^5.2.0", @@ -1493,10 +1526,10 @@ "chokidar": "^3.5.3", "didyoumean": "^1.2.2", "dlv": "^1.1.3", - "fast-glob": "^3.2.12", + "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "jiti": "^1.18.2", + "jiti": "^1.19.1", "lilconfig": "^2.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", @@ -1598,6 +1631,18 @@ "ulid": "bin/cli.js" } }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -1676,9 +1721,9 @@ } }, "node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", "dev": true, "engines": { "node": ">= 14" diff --git a/package.hugo.json b/package.hugo.json index 277d9b0..7ac1514 100644 --- a/package.hugo.json +++ b/package.hugo.json @@ -14,22 +14,23 @@ "postcss-cli": "project", "prettier": "project", "prettier-plugin-go-template": "project", + "prettier-plugin-tailwindcss": "project", "tailwindcss": "project" } }, "dependencies": { - "@alpinejs/intersect": "^3.13.1", - "alpinejs": "^3.13.1" + "@alpinejs/intersect": "^3.13.3", + "alpinejs": "^3.13.3" }, "devDependencies": { "@tailwindcss/typography": "^0.5.10", "autoprefixer": "^10.4.16", - "postcss": "^8.4.31", - "postcss-cli": "^10.1.0", - "prettier": "^3.0.3", + "postcss": "^8.4.32", + "postcss-cli": "^11.0.0", + "prettier": "^3.1.1", "prettier-plugin-go-template": "^0.0.15", - "prettier-plugin-tailwindcss": "^0.5.5", - "tailwindcss": "^3.3.3" + "prettier-plugin-tailwindcss": "^0.5.9", + "tailwindcss": "^3.3.7" }, "homepage": "https://canstand.github.io/compost", "license": "MIT", @@ -41,5 +42,5 @@ "scripts": { "prettier": "npx prettier --write ." }, - "version": "0.6.3" + "version": "0.7.0" } diff --git a/package.json b/package.json index 9cf1743..7ac1514 100644 --- a/package.json +++ b/package.json @@ -19,18 +19,18 @@ } }, "dependencies": { - "@alpinejs/intersect": "^3.13.1", - "alpinejs": "^3.13.1" + "@alpinejs/intersect": "^3.13.3", + "alpinejs": "^3.13.3" }, "devDependencies": { "@tailwindcss/typography": "^0.5.10", "autoprefixer": "^10.4.16", - "postcss": "^8.4.31", - "postcss-cli": "^10.1.0", - "prettier": "^3.0.3", + "postcss": "^8.4.32", + "postcss-cli": "^11.0.0", + "prettier": "^3.1.1", "prettier-plugin-go-template": "^0.0.15", - "prettier-plugin-tailwindcss": "^0.5.5", - "tailwindcss": "^3.3.3" + "prettier-plugin-tailwindcss": "^0.5.9", + "tailwindcss": "^3.3.7" }, "homepage": "https://canstand.github.io/compost", "license": "MIT", @@ -42,5 +42,5 @@ "scripts": { "prettier": "npx prettier --write ." }, - "version": "0.6.3" + "version": "0.7.0" }