diff --git a/.github/workflows/deploys.yml b/.github/workflows/deploys.yml index ae02648..e5795ab 100644 --- a/.github/workflows/deploys.yml +++ b/.github/workflows/deploys.yml @@ -32,7 +32,7 @@ jobs: node-version: 22 - run: npm install --frozen-lockfile - name: Build project - run: npm run build + run: npm run build-only - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact diff --git a/bun.lockb b/bun.lockb old mode 100644 new mode 100755 index 17349b9..912ad16 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/src/components/card.vue b/src/components/card.vue index a5c87ec..198df38 100644 --- a/src/components/card.vue +++ b/src/components/card.vue @@ -3,7 +3,7 @@ const card = defineModel<{ title: string color: string name: string -}>() +}>({ required: true })