Release Notes / Version 11.2210
Table Of ContentsYou now need at least pnpm 7.1.5 to build the frontend workspace and the studio-client. Please take note of the list of changes here https://github.com/pnpm/pnpm/releases/tag/v7.0.0
In order to upgrade pnpm to 7.x use the following command:
npm install -g pnpm@7
A notable mention is the removal of double dashes when passing parameters to scripts. This has some implications to the order arguments like "--filter" which now needs to be passed before the actual script name that is to be executed, e.g. :
pnpm -r run watch --filter "@coremedia-blueprint/studio-client.studio" -- --recursive --skipInitialBuild
now needs to be:
pnpm -r --filter "@coremedia-blueprint/studio-client.studio" run watch --recursive --skipInitialBuild
The documentation was adjusted accordingly.
(CMS-21584)