From ff77228991eb08cd22ae0b54ee720685bb66fb4c Mon Sep 17 00:00:00 2001 From: Peter deHaan Date: Tue, 15 Feb 2022 08:26:16 -0800 Subject: [PATCH] Update README.md Add `@11ty/` prefix to eleventy commands. (Per: https://www.11ty.dev/docs/usage/) FIxes #120 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fb7724c..4d90771 100644 --- a/README.md +++ b/README.md @@ -45,22 +45,22 @@ npm install ### 5. Run Eleventy ``` -npx eleventy +npx @11ty/eleventy ``` Or build and host locally for local development ``` -npx eleventy --serve +npx @11ty/eleventy --serve ``` Or build automatically when a template changes: ``` -npx eleventy --watch +npx @11ty/eleventy --watch ``` Or in debug mode: ``` -DEBUG=* npx eleventy +DEBUG=* npx @11ty/eleventy ``` ### Implementation Notes