From 5d8852d2b6f5bdec692e4cc76c7c646c9d37ea48 Mon Sep 17 00:00:00 2001 From: Greg Sanderson Date: Wed, 7 Aug 2024 17:57:46 +0100 Subject: [PATCH] Updated installation.md text The text says `Use the `--no-install` flag to create a project without installing any dependencies.` ... however that flag doesn't seem to work as they are installed anyway. It looks like it was removed: https://github.com/adonisjs/create-adonisjs/pull/4 --- content/docs/getting_started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/getting_started/installation.md b/content/docs/getting_started/installation.md index 7485aa07..6baa5954 100644 --- a/content/docs/getting_started/installation.md +++ b/content/docs/getting_started/installation.md @@ -33,7 +33,7 @@ You may customize the initial project output using one of the following CLI flag - `--auth-guard`: Specify the authentication guard of your choice. You can choose between **session**, **access_tokens**, or **basic_auth**. Defaults to `session`. -- `--install`: Skip the prompt to install dependencies. Use the `--no-install` flag to create a project without installing any dependencies. +- `--install`: Skip the prompt to install dependencies. :::codegroup