In step (4) yarn build, I had an error that I was able to correct by : yarn add autoprefixer
and the build ended with the error : The command failed for workspaces that are depended upon by other workspaces; can't satisfy the dependency graph
Probably nothing serious?
In step (8) yarn dev :
Error : [server] ERROR: Cannot find module ... node_modules/@speckle/shared/dist-cjs/index.js [gqlgen] [FAILED] ... [@speckle/dui3]: [1] [FAILED] [@speckle/frontend-2]: [1] [FAILED] . Apollo Client error networkError: TypeError: Failed to parse URL from UNDEFINED/graphql
The steps you’re missing are related to creating .env files for dui3 and frontend-2. Regarding other errors I added this part to the docs:
When running yarn dev for all packages you might see errors relating to @speckle/shared being missing, but this is only temporarily because @speckle/shared is also being re-built at that point in time. Once its finished building all of the other packages should pick up on it and work fine. You might also see GraphQL Codegen errors, which also are temporary, because they rely on the speckle server being up and running.
I suggest running only needed components separately anyway. If you don’t need live preview generation and file imports to work you can usually get away with just running yarn dev in the server and frontend packages.