From a21406e570021851d26d5d2a09b1b7fb783bf959 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Sun, 13 Oct 2024 18:58:56 +0100 Subject: [PATCH] Fixes --- .github/workflows/ci.yml | 2 +- package.json | 6 +++--- packages/emails/package.json | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea985445..349361313 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: sudo apt-get update - name: Install playwright dependencies - run: pnpm playwright install --with-deps chromium + run: npx playwright install --with-deps chromium - name: Create production build run: pnpm turbo build:test --filter=@rallly/web diff --git a/package.json b/package.json index b32312300..ff0aef361 100644 --- a/package.json +++ b/package.json @@ -35,10 +35,10 @@ "@prisma/client": "^5.20.0", "framer-motion": "^10.16.4", "next": "^14.2.13", + "prisma": "^5.20.0", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^5.2.2", - "prisma": "^5.20.0", "zod": "^3.23.8" }, "devDependencies": { @@ -51,8 +51,8 @@ "prettier-plugin-tailwindcss": "^0.5.11", "tailwindcss": "^3.4.4", "turbo": "^2.1.1", - "wait-on": "^6.0.1", - "vitest": "^2.1.1" + "vitest": "^2.1.1", + "wait-on": "^6.0.1" }, "engines": { "node": "20.x" diff --git a/packages/emails/package.json b/packages/emails/package.json index dac07a8b2..770eed3b9 100644 --- a/packages/emails/package.json +++ b/packages/emails/package.json @@ -4,7 +4,6 @@ "private": true, "scripts": { "dev": "email dev --port 3333 --dir ./src/previews", - "lint": "eslint ./src", "type-check": "tsc --pretty --noEmit", "i18n:scan": "i18next-scanner --config i18next-scanner.config.js" },