Skip to content

Commit

Permalink
Fix build errors and update version to 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fluid-design-io committed Dec 22, 2024
1 parent 93746f2 commit 5dde6ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vision-pro-ui

## 0.1.7

### Patch Changes

- fixed build errors

## 0.1.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions app/api/search/route.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getPages } from "@/app/source";
import { source } from "@/app/source";
import { createSearchAPI } from "fumadocs-core/search/server";

export const { GET } = createSearchAPI("advanced", {
indexes: getPages().map((page) => ({
indexes: source.getPages().map((page) => ({
title: page.data.title,
structuredData: page.data.structuredData,
id: page.url,
Expand Down
2 changes: 1 addition & 1 deletion components/core/text-effects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type PresetType = "blur" | "shake" | "scale" | "fade" | "slide";
type TextEffectProps = {
children: string;
per?: "word" | "char";
as?: keyof JSX.IntrinsicElements;
as?: "p" | "span" | "div";
variants?: {
container?: Variants;
item?: Variants;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vision-pro-ui",
"version": "0.1.6",
"version": "0.1.7",
"scripts": {
"build": "next build",
"dev": "next dev -p 3080",
Expand Down

0 comments on commit 5dde6ef

Please sign in to comment.