Skip to content

Commit 6e2e294

Browse files
authored
Add documentation for new mix options (#182)
Co-authored-by: Luke Towers <[email protected]> Documents ea6f059
1 parent 4e41f56 commit 6e2e294

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

console/asset-compilation.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -268,13 +268,15 @@ Please see the `mix:install` documentation for the available arguments and optio
268268
### List registered Mix packages
269269

270270
```bash
271-
php artisan mix:list
271+
php artisan mix:list [--json]
272272
```
273273

274274
The `mix:list` command will list all registered Mix packages found in the Winter installation. This is useful for determining if your plugin or theme is correctly registered.
275275

276276
The command will list all packages, as well as the directory for the asset and the configuration file that has been defined during registration.
277277

278+
A json formatted list of packages can be printed by specifying the `--json` flag.
279+
278280
### Compile a Mix packages
279281

280282
```bash
@@ -285,6 +287,8 @@ The `mix:compile` command compiles all registered Mix packages, running each pac
285287

286288
By specifying the `-p` flag, you can compile one or more selected packages. To define multiple packages, simply add more `-p` flags to the end of the command.
287289

290+
The `--no-progress` flag can be added in order to suppress the mix progress output. Useful if you want to only view the webpack output.
291+
288292
By default, all packages are built in "development" mode. If you wish to compile in "production" mode, which may include more optimisations for production sites, add the `-f` or `--production` flag to the command.
289293

290294
The command will generate a report of all compiled files and their final size once complete.

0 commit comments

Comments
 (0)