chore(package.json): remap dev commands so most used is simply npm start

This commit is contained in:
Cory Dransfeldt 2025-05-14 13:29:08 -07:00
parent 7b0feeb526
commit 2f9038dccb
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "4.3.2",
"version": "4.3.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "4.3.2",
"version": "4.3.3",
"license": "MIT",
"dependencies": {
"html-minifier-terser": "7.2.0",

View file

@ -1,19 +1,19 @@
{
"name": "coryd.dev",
"version": "4.3.2",
"version": "4.3.3",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"start": "eleventy --serve",
"start:quick": "eleventy --serve --incremental --ignore-initial",
"start": "concurrently -k -n 11ty,PHP -c cyan,magenta \"npm run watch\" \"npm run php\"",
"start:eleventy": "eleventy --serve",
"start:eleventy:quick": "eleventy --serve --incremental --ignore-initial",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"watch": "eleventy --watch",
"build": "eleventy",
"php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist",
"dev": "concurrently -k -n 11ty,PHP -c cyan,magenta \"npm run watch\" \"npm run php\"",
"update:deps": "composer update && npm upgrade && ncu",
"setup": "sh ./scripts/setup.sh",
"clean": "rimraf dist .cache",