Use Mix and sass, simplify image directories and remove duplicates

This commit is contained in:
Oliver Davies 2018-05-18 21:41:26 +01:00
parent ad3bc4b0a2
commit ff29fdeb71
216 changed files with 2921 additions and 1096 deletions

View file

@ -58,7 +58,7 @@ touch .docksal/commands/phpunit
This will create a new, empty `.docksal/commands/phpunit` file, and now the `phpunit` command is now listed under "Custom commands" when we run `fin`.
![](/build/static/images/blog/docksal-phpunit-command/1.gif)
![](/build/images/blog/docksal-phpunit-command/1.gif)
You can write commands with any interpreter. Im going to use bash, so Ill add the shebang to the top of the file.
@ -83,7 +83,7 @@ fin interprets lines starting with `##` as documentation - the first of which it
Now when I run it, I see the new description.
![](/build/static/images/blog/docksal-phpunit-command/2.gif)
![](/build/images/blog/docksal-phpunit-command/2.gif)
Any additional lines are used as help text with running `fin help phpunit`. Here Ill add an example command to demonstrate how to run it as well as some more in-depth text about what the command will do.
@ -100,7 +100,7 @@ Any additional lines are used as help text with running `fin help phpunit`. Here
Now when I run `fin help phpunit`, I see the new help text.
![](/build/static/images/blog/docksal-phpunit-command/3.gif)
![](/build/images/blog/docksal-phpunit-command/3.gif)
## Adding some content