Looks like for some reason SEED stopped using `yar...
# seed
a
Looks like for some reason SEED stopped using
yarn
and now uses
npx
?
f
Hey @Adrián Mouly, do you have a
yarn.lock
at the root of the repo or in the service’s folder?
a
One sec, let me check.
Oh…
Somebody deleted the file today in a PR.
Incredible.
Thank you for catching this so quickly, I was freaking out.
So SEED is going to look for that file and in that case uses
yarn
?
f
Ah that makes sense.
Yup
a
Awesome.
Thank you very much.
Going to push the file again and test.
I’m also using Bitbucket to build the app before continue… I have 2 commands:
Copy code
yarn
npx sst build --stage $AWS_STAGE --verbose
Maybe I can combine both into:
Copy code
yarn sst build --stage dev --verbose
Like SEED does?
I always run
yarn
at the beginning alone because that’s supposed to do all the setup.
But I didn’t know I could also execute the SST command from it.
a
The command will have to be
yarn && yarn run sst build --stage $AWS_STAGE --verbose
.
a
Ok, yes, that’s what I do.