Skip to content

Commit

Permalink
feat: add addDevToolbarPlugin and addIntegration utilities (#64)
Browse files Browse the repository at this point in the history
Co-authored-by: Florian Lefebvre <[email protected]>
Co-authored-by: Luiz Ferraz <[email protected]>
  • Loading branch information
3 people authored Feb 29, 2024
1 parent 794b3df commit 2863031
Show file tree
Hide file tree
Showing 35 changed files with 2,767 additions and 151 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["playground", "docs"]
"ignore": ["playground", "docs", "test-vue-app"]
}
5 changes: 5 additions & 0 deletions .changeset/olive-students-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"astro-integration-kit": minor
---

Adds 2 new utilities, `addIntegration` as well as `addDevToolbarFrameworkApp` that allows you to build Dev Toolbar Apps using UI framework components!
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
}
},
"files": {
"ignore": ["dist", ".astro"]
"ignore": ["dist", ".astro", "src/stubs"]
}
}
12 changes: 10 additions & 2 deletions docs/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export default defineConfig({
{
label: "defineIntegration",
link: "/core/define-integration/",
badge: badge("updated"),
},
{
label: "defineOptions",
Expand All @@ -103,10 +102,20 @@ export default defineConfig({
{
label: "Utilities",
items: [
{
label: "addDevToolbarFrameworkApp",
link: "/utilities/add-devtoolbar-framework-app/",
badge: badge("new"),
},
{
label: "addDts",
link: "/utilities/add-dts/",
},
{
label: "addIntegration",
link: "/utilities/add-integration/",
badge: badge("new"),
},
{
label: "addVirtualImport",
link: "/utilities/add-virtual-import/",
Expand All @@ -122,7 +131,6 @@ export default defineConfig({
{
label: "injectDevRoute",
link: "/utilities/inject-dev-route/",
badge: badge("new"),
},
{
label: "watchIntegration (HMR)",
Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "^0.16.0",
"astro": "^4.2.1",
"@astrojs/starlight": "^0.20.1",
"astro": "^4.4.6",
"sharp": "^0.32.5"
},
"devDependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/check": "^0.5.6",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit 2863031

Please sign in to comment.