Remove references to yarn and replace them with pnpm

This commit is contained in:
Luke Vella 2025-04-26 20:03:24 +01:00
parent 3552a5e3aa
commit 880cc07c79
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
12 changed files with 27 additions and 2073 deletions

View file

@ -13,7 +13,7 @@ To preview your changes locally, you can use the [mintlify cli](https://mintlify
Install the cli globally:
```bash
yarn global add mintlify
pnpm install --global mintlify
```
Navigate to this directory (where you can find `mint.json`):

View file

@ -1,5 +1,5 @@
{
"installCommand": "yarn install",
"buildCommand": "cd ../.. && yarn db:generate && yarn build:landing",
"installCommand": "pnpm install",
"buildCommand": "cd ../.. && pnpm db:generate && pnpm build:landing",
"outputDirectory": ".next"
}

View file

@ -13,7 +13,6 @@
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js",
"test:integration": "NODE_ENV=test playwright test",
"test:unit": "vitest run",
"test": "yarn test:unit && yarn test:e2e",
"test:codegen": "playwright codegen http://localhost:3000",
"docker:start": "./scripts/docker-start.sh"
},

View file

@ -1,5 +1,5 @@
{
"installCommand": "yarn install",
"buildCommand": "cd ../.. && yarn db:generate && yarn build:web && yarn db:deploy",
"installCommand": "pnpm install",
"buildCommand": "cd ../.. && pnpm db:generate && pnpm build:web && pnpm db:deploy",
"outputDirectory": ".next"
}