chore: bump deps

This commit is contained in:
Cory Dransfeldt 2024-09-30 16:36:23 -07:00
parent cf47c33f6a
commit 36429bd404
No known key found for this signature in database
3 changed files with 38 additions and 20 deletions

View file

@ -28,6 +28,9 @@ export default async function (eleventyConfig) {
// quiet build output // quiet build output
eleventyConfig.setQuietMode(true) eleventyConfig.setQuietMode(true)
// allow missing extensions
eleventyConfig.configureErrorReporting({ allowMissingExtensions: true })
// template options // template options
eleventyConfig.setLiquidOptions({ eleventyConfig.setLiquidOptions({
jsTruthy: true, jsTruthy: true,

53
package-lock.json generated
View file

@ -16,7 +16,7 @@
"youtube-video-element": "^1.1.6" "youtube-video-element": "^1.1.6"
}, },
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "v3.0.0-beta.1", "@11ty/eleventy": "v3.0.0-beta.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@cdransf/eleventy-plugin-tabler-icons": "^1.17.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.17.0",
"@supabase/supabase-js": "^2.45.4", "@supabase/supabase-js": "^2.45.4",
@ -79,16 +79,16 @@
} }
}, },
"node_modules/@11ty/eleventy": { "node_modules/@11ty/eleventy": {
"version": "3.0.0-beta.1", "version": "3.0.0-beta.2",
"resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.0.0-beta.1.tgz", "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.0.0-beta.2.tgz",
"integrity": "sha512-iJT7vekH11l8PAUPBfUAcb5oWbYK0w4ijgwDTutUsk6tX9rp4ZRL1jdhVWvZq04/rkc55mczNFPPhHB/XO1/qw==", "integrity": "sha512-N3sKp79gj1D8JjFK1CMHl9JehaM886sLAB8xc75Lv9daXgTqYHTvoeMGwZ5jrlRvatYD54tpWZESiyDyLzM1mw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@11ty/dependency-tree": "^3.0.1", "@11ty/dependency-tree": "^3.0.1",
"@11ty/dependency-tree-esm": "^1.0.0", "@11ty/dependency-tree-esm": "^1.0.0",
"@11ty/eleventy-dev-server": "^2.0.2", "@11ty/eleventy-dev-server": "^2.0.4",
"@11ty/eleventy-plugin-bundle": "^2.0.2", "@11ty/eleventy-plugin-bundle": "^3.0.0",
"@11ty/eleventy-utils": "^1.0.3", "@11ty/eleventy-utils": "^1.0.3",
"@11ty/lodash-custom": "^4.17.21", "@11ty/lodash-custom": "^4.17.21",
"@11ty/posthtml-urls": "^1.0.0", "@11ty/posthtml-urls": "^1.0.0",
@ -98,20 +98,21 @@
"chardet": "^2.0.0", "chardet": "^2.0.0",
"chokidar": "^3.6.0", "chokidar": "^3.6.0",
"cross-spawn": "^7.0.3", "cross-spawn": "^7.0.3",
"debug": "^4.3.6", "debug": "^4.3.7",
"dependency-graph": "^1.0.0", "dependency-graph": "^1.0.0",
"entities": "^5.0.0",
"fast-glob": "^3.3.2", "fast-glob": "^3.3.2",
"filesize": "^10.1.4", "filesize": "^10.1.6",
"graceful-fs": "^4.2.11", "graceful-fs": "^4.2.11",
"gray-matter": "^4.0.3", "gray-matter": "^4.0.3",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
"iso-639-1": "^3.1.2", "iso-639-1": "^3.1.3",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"kleur": "^4.1.5", "kleur": "^4.1.5",
"liquidjs": "^10.16.1", "liquidjs": "^10.17.0",
"luxon": "^3.4.4", "luxon": "^3.5.0",
"markdown-it": "^14.1.0", "markdown-it": "^14.1.0",
"micromatch": "^4.0.7", "micromatch": "^4.0.8",
"minimist": "^1.2.8", "minimist": "^1.2.8",
"moo": "^0.5.2", "moo": "^0.5.2",
"node-retrieve-globals": "^6.0.0", "node-retrieve-globals": "^6.0.0",
@ -167,13 +168,14 @@
} }
}, },
"node_modules/@11ty/eleventy-plugin-bundle": { "node_modules/@11ty/eleventy-plugin-bundle": {
"version": "2.0.2", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-bundle/-/eleventy-plugin-bundle-2.0.2.tgz", "resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-bundle/-/eleventy-plugin-bundle-3.0.0.tgz",
"integrity": "sha512-zGyPp1g6bi+VC2I5ylwj4w29nivDmx4Uki5gWY6v3MT/1muK0JTtnc1KOMC7yUurv6YwtwdiLYyFK2eFyKv2wg==", "integrity": "sha512-JSnqehT+sWSPi6e44jTXUW+KiV9284YF9fzPQvfGB4cXlk/m/SJk17CavHCleIvKXDN+jrUw9TZkwAwr85ONWQ==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"debug": "^4.3.4" "debug": "^4.3.4",
"posthtml-match-helper": "^2.0.2"
}, },
"engines": { "engines": {
"node": ">=18" "node": ">=18"
@ -214,6 +216,19 @@
"url": "https://opencollective.com/11ty" "url": "https://opencollective.com/11ty"
} }
}, },
"node_modules/@11ty/eleventy/node_modules/entities": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-5.0.0.tgz",
"integrity": "sha512-BeJFvFRJddxobhvEdm5GqHzRV/X+ACeuw0/BuuxsCh1EUZcAIz8+kYmBp/LrQuloy6K1f3a0M7+IhmZ7QnkISA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.12"
},
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/@11ty/lodash-custom": { "node_modules/@11ty/lodash-custom": {
"version": "4.17.21", "version": "4.17.21",
"resolved": "https://registry.npmjs.org/@11ty/lodash-custom/-/lodash-custom-4.17.21.tgz", "resolved": "https://registry.npmjs.org/@11ty/lodash-custom/-/lodash-custom-4.17.21.tgz",
@ -1745,9 +1760,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.5.29", "version": "1.5.30",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.30.tgz",
"integrity": "sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==", "integrity": "sha512-sXI35EBN4lYxzc/pIGorlymYNzDBOqkSlVRe6MkgBsW/hW1tpC/HDJ2fjG7XnjakzfLEuvdmux0Mjs6jHq4UOA==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -29,7 +29,7 @@
"youtube-video-element": "^1.1.6" "youtube-video-element": "^1.1.6"
}, },
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "v3.0.0-beta.1", "@11ty/eleventy": "v3.0.0-beta.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@cdransf/eleventy-plugin-tabler-icons": "^1.17.0", "@cdransf/eleventy-plugin-tabler-icons": "^1.17.0",
"@supabase/supabase-js": "^2.45.4", "@supabase/supabase-js": "^2.45.4",