fix(README.md): correct dev commands

This commit is contained in:
Cory Dransfeldt 2025-05-17 13:25:40 -07:00
parent 425fed6ff6
commit 6ccc19e1d3
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

View file

@ -17,13 +17,13 @@ To debug and develop php components, run `npm run php`. This will start the PHP
## Commands ## Commands
- `npm run start`: starts 11ty. - `npm run start`: primary dev command that runs `watch` and `php` concurrently.
- `npm run start:quick`: starts 11ty a bit quicker (provided it's already been built). - `npm run start:eleventy`: starts 11ty.
- `npm run start:eleventy:quick`: starts 11ty a bit quicker (provided it's already been built).
- `npm run debug`: runs 11ty with additional debug output. - `npm run debug`: runs 11ty with additional debug output.
- `npm run watch`: watch and update when files change without running the web server. - `npm run watch`: watch and update when files change without running the web server.
- `npm run build`: builds static site output. - `npm run build`: builds static site output.
- `npm run php`: starts a PHP server for local development. - `npm run php`: starts a PHP server for local development.
- `npm run dev`: primary dev command that runs `watch` and `php` concurrently.
- `npm run update:deps`: checks for dependency updates and updates 11ty. - `npm run update:deps`: checks for dependency updates and updates 11ty.
- `npm run setup`: populates `.env` from 1Password and installs dependencies using `npm` and `composer`. - `npm run setup`: populates `.env` from 1Password and installs dependencies using `npm` and `composer`.
- `npm run clean`: removes the `dist` and `.cache` folders. - `npm run clean`: removes the `dist` and `.cache` folders.

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "6.0.3", "version": "6.0.4",
"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": {