Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
# Running in a container causes git "dubious ownership" errors because the
# workspace owner differs from the container user. Mark it as safe so that
# lefthook install (triggered by pnpm prepare) can run git commands.
- name: Fix git ownership
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
with:
run_install: false
Expand Down
4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"dotenv": "^16.5.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"@hookform/resolvers": "^5.2.2",
"@tailor-platform/app-shell": "workspace:*",
"next": "16.2.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react": "catalog:",
"react-dom": "catalog:",
"react-hook-form": "^7.71.2",
"zod": "^4.4.3"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/vite-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"dependencies": {
"@tailor-platform/app-shell": "workspace:*",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
"@vitejs/plugin-react": "catalog:",
"happy-dom": "^20.6.2",
"postcss": "^8",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react": "catalog:",
"react-dom": "catalog:",
"tailwindcss": "catalog:",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
Expand Down
Loading
Loading