From d91f58c5ec603faa418dd6b52896e95d89ed2e87 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Tue, 29 Oct 2024 05:13:21 +0100 Subject: [PATCH] doc: fix command name minify:asset (#13) There is no `s` at the end: https://github.com/sensiolabs/minify-bundle/blob/655f29e6b839aa1df035ed904575ca606ff187d0/src/Command/MinifyAssetCommand.php#L31 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e343ba..a22f0d2 100644 --- a/README.md +++ b/README.md @@ -121,11 +121,11 @@ Then, run the following command to minify assets: ```shell # this outputs the result in the console -php bin/console minify:assets css/main.css +php bin/console minify:asset css/main.css # this will write the output into the 'main.min.css' file # (the given output file is created / overwritten if needed) -php bin/console minify:assets css/main.css css/main.min.css +php bin/console minify:asset css/main.css css/main.min.css ``` ## Configuration