chore(package.json): run clean build with default start command

This commit is contained in:
Cory Dransfeldt 2025-06-06 14:13:32 -07:00
parent 055f33c148
commit 65527d3dca
No known key found for this signature in database
2 changed files with 5 additions and 4 deletions

View file

@ -1,13 +1,14 @@
{
"name": "coryd.dev",
"version": "9.1.5",
"version": "9.1.6",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "concurrently -k -n 11ty,PHP -c cyan,magenta \"npm run watch\" \"npm run php\"",
"start": "npm run clean && npm run build && npm run start:quick",
"start:quick": "concurrently -k -n 11ty,PHP -c cyan,magenta \"npm run watch\" \"npm run php\"",
"watch": "eleventy --watch",
"php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist",
"build": "eleventy",