About 411,000 results
Open links in new tab
  1. jestjs - How to configure Jest properly in a pnpm monorepo with ...

    Feb 12, 2025 · Install pnpm Create folder monorepo CD in monorepo and run command pnpm init Create file monorepo/pnpm-workspace.yaml and copy and paste the content I provided in this …

  2. How to share packages between apps in pnpm monorepo

    Apr 26, 2025 · Second: A monorepo is for managing multiple independent packages in a single repository. (source) From your description, I think you might be trying to create two separate …

  3. how to install tailwindcss in monorepo like turborepo

    Mar 12, 2025 · cd apps/web //should be present in you app directory npm install -D tailwindcss postcss autoprefixer npx tailwindcss init -p problem is unable to create tailwind.config.json if …

  4. github - git monorepo with multiple projects - Stack Overflow

    Feb 9, 2023 · I want to have an umbrella repo (monorepo) with multiple projects in such a way that I should be able to clone each project individually, modify and push without having to …

  5. How to handle Prisma shared types in a monorepo setup

    Apr 24, 2025 · The logic behind this solution is to use a monorepo setup with dependency hoisting, where shared dependencies like @prisma/client and prisma are defined in the root …

  6. How to version products inside monorepo? - Stack Overflow

    Nov 10, 2017 · Where I am struggling to find the answer that I want to find is versioning. What is the versioning strategy when all of your projects and products are inside a monorepo? 1 …

  7. Build a monorepo with UV and common packages - Stack Overflow

    Feb 3, 2025 · I am building a monorepo that manages multiple projects with independent requirements. I am using UV to manage libraries in a monorepo and using databricks asset …

  8. git - How to migrate multiple repositories into a mono-repo while ...

    Apr 26, 2018 · 15 I'm trying to migrate a few Git repositories into one monorepo. I have two project repositories, let's call them project1 and project2. In my monorepo, I want to have a …

  9. Monorepo with Deno and node.js (vite) with shared packages, …

    Dec 8, 2024 · I am trying to set up a Deno / Nodejs monorepo with some shared packages meant to be used in both environments: repo/ ├── packages/ (shared with frontend and backend) …

  10. javascript - Dependencies in Monorepo - Stack Overflow

    Jan 2, 2021 · In a monorepo, if you have a dependency in one package can you use that dependency in another package without adding it to that package? For more clarity, check the …