I'm using Deployer and I think I've got everything working, but I now need to CD into my js folder and execute yarn build
. This has proven quite tricky since I can't seem to get the path right with deployer. For example my task is this;
task('frontend:build', '
cd /js;
yarn;
yarn build;
');