This commit is contained in:
Adam Matthiesen 2024-03-28 12:29:11 -07:00
commit 1c1c037beb
No known key found for this signature in database
GPG Key ID: 1A080F6B1E4AF38E
5 changed files with 594 additions and 208 deletions

View File

@ -14,7 +14,7 @@
"lint:fix": "biome check --apply ." "lint:fix": "biome check --apply ."
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^1.6.1", "@biomejs/biome": "^1.6.2",
"@changesets/cli": "^2.27.1" "@changesets/cli": "^2.27.1"
} }
} }

View File

@ -1,5 +1,14 @@
# @matthiesenxyz/astro-gists # @matthiesenxyz/astro-gists
## 0.2.15
### Patch Changes
- 402681a: Bump dependencies:
- vite from to
- astro from to
## 0.2.14 ## 0.2.14
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@matthiesenxyz/astro-gists", "name": "@matthiesenxyz/astro-gists",
"version": "0.2.14", "version": "0.2.15",
"description": "Allows the user to import GitHub Gists by ID through an Astro Component and Octokit", "description": "Allows the user to import GitHub Gists by ID through an Astro Component and Octokit",
"author": { "author": {
"email": "adam@matthiesen.xyz", "email": "adam@matthiesen.xyz",
@ -57,6 +57,6 @@
"hast-util-to-html": "8.0.4", "hast-util-to-html": "8.0.4",
"p-retry": "6.2.0", "p-retry": "6.2.0",
"octokit": "^3.1.2", "octokit": "^3.1.2",
"vite": "^5.1.6" "vite": "^5.2.6"
} }
} }

View File

@ -11,13 +11,13 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"astro": "^4.5.9"
"@matthiesenxyz/astro-gists": "workspace:*", "@matthiesenxyz/astro-gists": "workspace:*",
"astro": "^4.5.6"
}, },
"devDependencies": { "devDependencies": {
"@astrojs/mdx": "^2.2.0", "@astrojs/mdx": "^2.2.1",
"@astrojs/check": "^0.5.9", "@astrojs/check": "^0.5.10",
"@types/node": "^20.11.28", "@types/node": "^20.11.30",
"typescript": "^5.4.2" "typescript": "^5.4.3"
} }
} }

File diff suppressed because it is too large Load Diff