Skip to content

Commit 80fa7ca

Browse files
Merge branch 'main' into feat/action-bar
2 parents 2e6301a + 55ff287 commit 80fa7ca

File tree

87 files changed

+5532
-1052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5532
-1052
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ jobs:
154154
run: pnpm build:test
155155
env:
156156
VALIDATE_HTML: true
157+
NODE_OPTIONS: --max-old-space-size=6144
157158

158159
- name: 🖥️ Test project (browser)
159160
run: pnpm test:browser:prebuilt
@@ -182,6 +183,8 @@ jobs:
182183

183184
- name: 🏗️ Build project
184185
run: pnpm build:test
186+
env:
187+
NODE_OPTIONS: --max-old-space-size=6144
185188

186189
- name: ♿ Accessibility audit (Lighthouse - ${{ matrix.mode }} mode)
187190
run: pnpm test:a11y:prebuilt

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,11 @@ shared/ # Shared between app and server
179179
└── types/ # TypeScript type definitions
180180
181181
cli/ # Local connector CLI (separate workspace)
182+
182183
test/ # Vitest tests
183184
├── unit/ # Unit tests (*.spec.ts)
184-
── nuxt/ # Nuxt component tests
185-
tests/ # Playwright E2E tests
185+
── nuxt/ # Nuxt component tests
186+
└── e2e/ # Playwright E2E tests
186187
```
187188

188189
> [!TIP]

app/app.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ if (import.meta.client) {
118118
useEventListener(document, 'click', handleModalLightDismiss)
119119
}
120120
}
121+
122+
// title and description will be inferred
123+
// this will be overridden by upstream pages that use different templates
124+
defineOgImage('Page.takumi')
121125
</script>
122126

123127
<template>

app/components/OgImage/Default.vue

Lines changed: 0 additions & 84 deletions
This file was deleted.

app/components/OgImage/Package.d.vue.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)