-
I didn't check up on this repo and I just saw that
Same happens if I use the
It does say that |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 21 replies
-
It is published! :) You will need to add a dependency on the new package though as well as upgrading the other packages :) eg if you're using the const monorepo = new NxMonorepoProject({
name: "my-project",
defaultReleaseBranch: "main",
devDeps: ["aws-prototyping-sdk", "@aws-prototyping-sdk/type-safe-api"],
}); Also note that because it's a dependency that the
Hope that helps! :) |
Beta Was this translation helpful? Give feedback.
-
@cogwirrel the migration so far is going good. I have a question tho about where the code of the Lambda handlers/routers should go: Should I create a |
Beta Was this translation helpful? Give feedback.
-
I finished the migration, some notes about the process:
Not related to PDK:
All in all, looking good! Thank you for all the help and I like PDK a lot :D. |
Beta Was this translation helpful? Give feedback.
-
I've been trying to get everything over using Steps to reproducenpx projen new --from aws-prototyping-sdk nx-monorepo && pnpm install Error message:
So do I need to do |
Beta Was this translation helpful? Give feedback.
-
Also (hopefully my last question :P), how do I change the name of the |
Beta Was this translation helpful? Give feedback.
-
I had 30 minutes of bliss programming, when I did an
This error seems eerily similiar to this: aws/aws-cdk#3416 so I don't think it's a PDK issue, but can I somehow pin/resolve versions for |
Beta Was this translation helpful? Give feedback.
It is published! :) You will need to add a dependency on the new package though as well as upgrading the other packages :) eg if you're using the
nx-monorepo
:Also note that because it's a dependency that the
.projenrc.ts
makes use of, you need to do 2 passes with projen:npx projen
to add the dependencyTypeSafeApiProject
from@aws-prototyping-sdk/type-safe-api
in your.projenrc.ts
, configure it, andnpx projen
againHope th…