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

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.1.5", "version": "9.1.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.1.5", "version": "9.1.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"minisearch": "^7.1.2", "minisearch": "^7.1.2",

View file

@ -1,13 +1,14 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.1.5", "version": "9.1.6",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {
"node": "22.x" "node": "22.x"
}, },
"scripts": { "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", "watch": "eleventy --watch",
"php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist", "php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist",
"build": "eleventy", "build": "eleventy",