tf-next deploy does nothing
Having issues deploying my app. Running npx tf-next deploy --endpoint https://<api-id>.execute-api.<region>.amazonaws.com just exits without displaying anything.
I think you need to remove npx from the start of your command.
Using npx is fine, however it is necessary to specify the version to use the deploy command:
npx tf-next -> npx tf-next@canary.
Otherwise it would fallback to the latest regular release (0.13.2) where the tf-next deploy command is not supported.
So using it this way should work:
npx tf-next@canary deploy --endpoint https://<api-id>.execute-api.<region>.amazonaws.com
Using npx is fine, however it is necessary to specify the version to use the deploy command:
npx tf-next->npx tf-next@canary. Otherwise it would fallback to the latest regular release (0.13.2) where thetf-next deploycommand is not supported.
This should be specified in the Readme. Also, it should be done with tf-next@canary build
Agree that it's currently a rough experience that leads to some confusion while we are in the transition phase 😬 Currently working on a dedicated documentation website where I can place a notice more prominently as it is possible with GitHub Readme.