Replies: 1 comment
-
It will be great to have an SDK package, which will import all other packages, and expose the programmatic API from one organized place. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The packages in the pnpm monorepo are independently versioned. As a result, it is hard to identify which versions are used by which pnpm CLI. For instance,
@pnpm/headless
is v16 but the current pnpm version is v6We could version all packages with the major version of the main package (pnpm) multiplied by 1000. So
@pnpm/headless
would be of version 6016 but when pnpm v7 comes out, it will automatically bumped to v6000. If@pnpm/headless
will need breaking changes, we may release v6001 in case pnpm is still of v6.@GiladShoham this idea came to me when I was looking at the pnpm package versions in the Bit repo
Beta Was this translation helpful? Give feedback.
All reactions