Skip to content

Commit c6647a9

Browse files
feat: upgrade dependencies + add unplugin-fonts
1 parent ae531d7 commit c6647a9

File tree

7 files changed

+409
-378
lines changed

7 files changed

+409
-378
lines changed

astro.config.mjs

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
import { defineConfig } from 'astro/config';
2+
import Unfonts from 'unplugin-fonts/astro'
23

34
// https://astro.build/config
4-
export default defineConfig({});
5+
export default defineConfig({
6+
integrations: [
7+
Unfonts({
8+
google: {
9+
families: [
10+
'Cabin',
11+
{
12+
name: 'Open Sans',
13+
styles: 'wght@300;400',
14+
},
15+
],
16+
},
17+
})
18+
]
19+
});

package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,27 @@
1717
"astro": "astro"
1818
},
1919
"dependencies": {
20-
"@alpinejs/collapse": "3.11.1",
21-
"@alpinejs/intersect": "3.11.1",
22-
"@alpinejs/persist": "3.11.1",
20+
"@alpinejs/collapse": "3.12.0",
21+
"@alpinejs/intersect": "3.12.0",
22+
"@alpinejs/persist": "3.12.0",
2323
"@iconify/iconify": "3.1.0",
24-
"alpinejs": "3.11.1",
25-
"astro": "2.0.10",
24+
"alpinejs": "3.12.0",
25+
"astro": "2.1.3",
2626
"bulma": "0.9.4",
2727
"bulma-css-vars": "0.8.0",
28-
"fuse.js": "6.5.3",
28+
"fuse.js": "6.6.2",
2929
"js-datepicker": "5.18.2",
3030
"lozad": "1.16.0",
31-
"moment": "2.29.1",
31+
"moment": "2.29.4",
3232
"notyf": "3.10.0",
3333
"particles.js": "2.0.0",
34-
"plyr": "3.7.3",
35-
"sass": "1.57.0",
36-
"simplebar": "6.2.0"
34+
"plyr": "3.7.7",
35+
"sass": "1.59.3",
36+
"simplebar": "6.2.2"
3737
},
3838
"devDependencies": {
39-
"autoprefixer": "10.4.13",
40-
"npm-run-all": "4.1.5"
39+
"autoprefixer": "10.4.14",
40+
"npm-run-all": "4.1.5",
41+
"unplugin-fonts": "^1.0.0"
4142
}
4243
}

0 commit comments

Comments
 (0)