We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggest a new structure for the default/demo "after" script, which is created by lambo edit-after
lambo edit-after
The changes:
--no-update
#!/usr/bin/env bash echo " ------------------------------------------------------------------------------- - lambo after: Install composer dependencies ------------------------------------------------------------------------------- " #composer require barryvdh/laravel-debugbar --dev --no-update #composer require beyondcode/laravel-query-detector --dev --no-update #composer update echo " ------------------------------------------------------------------------------- - lambo after: Copy files to project (Source ~/.lambo/includes) ------------------------------------------------------------------------------- " #cp -Rv ~/.lambo/includes/ "${PROJECTPATH}" echo " ------------------------------------------------------------------------------- - lambo after: Git commit modifications ------------------------------------------------------------------------------- " #git add . #git commit -am "Installed composer packages and extra files." echo " ------------------------------------------------------------------------------- - lambo after: Finish ------------------------------------------------------------------------------- " #npm run build
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I suggest a new structure for the default/demo "after" script, which is created by
lambo edit-after
The changes:
--no-update
option in order to defer the installation.The text was updated successfully, but these errors were encountered: