Are there any plans to support `add-cdk` and `upda...
# sst
d
Are there any plans to support
add-cdk
and
update
in a project inside a workspace?
t
Does it not work?
I was thinking about nesting my SST stuff inside a sub package in my workspace instead of it being at root
d
It doesn't right now https://github.com/serverless-stack/serverless-stack/blob/b7825914849730e91c78b6c74223a8f76328eedd/packages/core/src/update/update.ts#L12
options.rootDir
seems to always be
process.cwd()
which I run from my project (package). But my
yarn.lock
is on the workspace root so it can't find it so it tries to install things with npm
t
Gotcha I'll fix this today
d
Thanks!