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
Task can be defined with string:
task('name', 'command');
Allow to simple describe build steps. Now for every build step users have to chdir to release dir manually:
task('deploy:build', 'cd {{release_path}} && webpack -p');
Let's improve DX and omit unnecessary cd!
Feature: use release_path if exists.
release_path
task('deploy:build', 'webpack -p');
The text was updated successfully, but these errors were encountered:
antonmedv
No branches or pull requests
Description
Task can be defined with string:
Allow to simple describe build steps.
Now for every build step users have to chdir to release dir manually:
Let's improve DX and omit unnecessary cd!
Feature: use
release_path
if exists.The text was updated successfully, but these errors were encountered: