chore: update scripts

This commit is contained in:
Cory Dransfeldt 2024-05-05 07:19:03 -07:00
parent 2d1f25621e
commit 89a1f65ab4
No known key found for this signature in database

View file

@ -4,10 +4,9 @@
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {
"start": "eleventy --serve",
"start:search": "run-s build:11ty index:local",
"start": "node ./scripts/og-images/index.js && eleventy --serve",
"start:quick": "eleventy --serve --incremental --ignore-initial",
"build": "ELEVENTY_PRODUCTION=true eleventy",
"build": "node ./scripts/og-images/index.js && ELEVENTY_PRODUCTION=true eleventy",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"build:ogi": "node ./scripts/og-images/index.js"
},