Update README.md

Add `@11ty/` prefix to <kbd>eleventy</kbd> commands. (Per: https://www.11ty.dev/docs/usage/)

FIxes #120
This commit is contained in:
Peter deHaan 2022-02-15 08:26:16 -08:00 committed by GitHub
parent aea9ea8cdb
commit ff77228991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,22 +45,22 @@ npm install
### 5. Run Eleventy ### 5. Run Eleventy
``` ```
npx eleventy npx @11ty/eleventy
``` ```
Or build and host locally for local development Or build and host locally for local development
``` ```
npx eleventy --serve npx @11ty/eleventy --serve
``` ```
Or build automatically when a template changes: Or build automatically when a template changes:
``` ```
npx eleventy --watch npx @11ty/eleventy --watch
``` ```
Or in debug mode: Or in debug mode:
``` ```
DEBUG=* npx eleventy DEBUG=* npx @11ty/eleventy
``` ```
### Implementation Notes ### Implementation Notes