so I have a project that I'm working on that is a Monorepo. So I have a packages
directory in the root directory that contains all my npm packages. Some of these packages rely on eachother e.g. in a package.json I might have
{
"dependencies": {
"foo": "workspace:*",
"bar": "workspace:*",
}
}
(I use pnpm)
So I was wondering, if I were to post these packages, would all the dependencies still work the way they should?
Thanks!