Skip to content

Commit 6b58bff

Browse files
committed
Update to Astro 3.0
1 parent 710b1d4 commit 6b58bff

File tree

13 files changed

+1005
-622
lines changed

13 files changed

+1005
-622
lines changed

.vscode/settings.json

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,5 @@
1515
},
1616
"files.associations": {
1717
"*.mdoc": "markdown"
18-
},
19-
"workbench.colorCustomizations": {
20-
"activityBar.activeBackground": "#c14c58",
21-
"activityBar.background": "#c14c58",
22-
"activityBar.foreground": "#e7e7e7",
23-
"activityBar.inactiveForeground": "#e7e7e799",
24-
"activityBarBadge.background": "#64c659",
25-
"activityBarBadge.foreground": "#15202b",
26-
"commandCenter.border": "#e7e7e799",
27-
"sash.hoverBorder": "#c14c58",
28-
"statusBar.background": "#a23843",
29-
"statusBar.foreground": "#e7e7e7",
30-
"statusBarItem.hoverBackground": "#c14c58",
31-
"statusBarItem.remoteBackground": "#a23843",
32-
"statusBarItem.remoteForeground": "#e7e7e7",
33-
"titleBar.activeBackground": "#a23843",
34-
"titleBar.activeForeground": "#e7e7e7",
35-
"titleBar.inactiveBackground": "#a2384399",
36-
"titleBar.inactiveForeground": "#e7e7e799"
37-
},
38-
"peacock.color": "#a23843"
18+
}
3919
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,5 @@ All commands are run from the root of the project, from a terminal:
197197
- 3.1.5: Minor enhancements:
198198
- Upgrade to latest version of packages
199199
- Fixed minor astro check error
200+
- 3.2.0: Major enhancement:
201+
- Updated to Astro 3.x

astro.config.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ export default defineConfig({
2424
site: 'https://hellotham.github.io',
2525
base: '/hello-astro/',
2626
integrations: [tailwind(), sitemap(), mdx(), alpinejs(), robotsTxt(), markdoc()],
27-
experimental: {
28-
},
2927
markdown: {
3028
extendDefaultPlugins: true,
3129
remarkPlugins: [remarkReadingTime, remarkMath, remarkPlantUML, remarkDiagram, remarkEmoji],

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,32 @@
1717
"devDependencies": {
1818
"@akebifiky/remark-simple-plantuml": "^1.0.2",
1919
"@astrojs/alpinejs": "^0.3.0",
20-
"@astrojs/mdx": "^1.0.2",
20+
"@astrojs/mdx": "^1.1.0",
2121
"@astrojs/sitemap": "^3.0.0",
2222
"@astrojs/tailwind": "^5.0.0",
2323
"@tailwindcss/aspect-ratio": "^0.4.2",
24-
"@tailwindcss/forms": "^0.5.4",
24+
"@tailwindcss/forms": "^0.5.6",
2525
"@tailwindcss/line-clamp": "^0.4.4",
26-
"@tailwindcss/typography": "^0.5.9",
27-
"@types/alpinejs": "^3.7.2",
28-
"@types/leaflet": "^1.9.3",
26+
"@tailwindcss/typography": "^0.5.10",
27+
"@types/alpinejs": "^3.13.0",
28+
"@types/leaflet": "^1.9.4",
2929
"@types/photoswipe": "^4.1.2",
30-
"@typescript-eslint/parser": "^6.4.0",
31-
"alpinejs": "^3.12.3",
32-
"astro": "^3.0.10",
30+
"@typescript-eslint/parser": "^6.7.0",
31+
"alpinejs": "^3.13.0",
32+
"astro": "^3.1.0",
3333
"astro-robots-txt": "^1.0.0",
34-
"eslint": "^8.47.0",
34+
"eslint": "^8.49.0",
3535
"eslint-plugin-astro": "^0.29.0",
3636
"eslint-plugin-css": "^0.8.1",
3737
"eslint-plugin-jsx-a11y": "^6.7.1",
3838
"eslint-plugin-markdown": "^3.0.1",
3939
"eslint-plugin-mdx": "^2.2.0",
4040
"exifr": "^7.1.3",
4141
"mdast-util-to-string": "^4.0.0",
42-
"prettier": "^3.0.2",
42+
"prettier": "^3.0.3",
4343
"prettier-config-standard": "^7.0.0",
4444
"prettier-plugin-astro": "^0.12.0",
45-
"prettier-plugin-tailwindcss": "^0.5.3",
45+
"prettier-plugin-tailwindcss": "^0.5.4",
4646
"reading-time": "^1.5.0",
4747
"rehype-katex": "^6.0.3",
4848
"remark-emoji": "^4.0.0",
@@ -54,6 +54,7 @@
5454
"vite": "^4.4.9"
5555
},
5656
"dependencies": {
57+
"@astrojs/check": "^0.2.0",
5758
"@astrojs/markdoc": "^0.5.0",
5859
"@astrojs/rss": "^3.0.0",
5960
"astro-icon": "^0.8.1",
@@ -62,9 +63,9 @@
6263
"katex": "^0.16.8",
6364
"leaflet": "^1.9.4",
6465
"lunr": "^2.3.9",
65-
"photoswipe": "^5.3.8",
66+
"photoswipe": "^5.4.0",
6667
"photoswipe-dynamic-caption-plugin": "^1.2.7",
67-
"swiper": "^10.1.0"
68+
"swiper": "^10.2.0"
6869
},
6970
"packageManager": "[email protected]"
7071
}

0 commit comments

Comments
 (0)