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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-docubase

## 1.1.2

### Patch Changes

- 820c898: Search fuctionality
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spelling: "Search fuctionality" should be "Search functionality".

Suggested change
- 820c898: Search fuctionality
- 820c898: Search functionality

Copilot uses AI. Check for mistakes.

## 1.1.1

### Patch Changes
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-docubase",
"version": "1.1.1",
"version": "1.1.2",
"description": "Create a new DocuBase documentation site",
"type": "module",
"bin": {
Expand All @@ -12,7 +12,7 @@
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
Expand Down Expand Up @@ -64,6 +64,7 @@
"@types/node": "^25.0.10",
"@types/prompts": "^2.4.9",
"storybook": "^8.4.0",
"pagefind": "^1.4.0",
"vitest": "^3.0.0"
}
}
64 changes: 64 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "A DocuBase documentation site",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro"
},
Expand All @@ -18,5 +18,8 @@
"rehype-slug": "^6.0.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"devDependencies": {
"pagefind": "^1.4.0"
}
}
Loading