1
Fork 0

Update dependencies and fix linting issues.

This commit is contained in:
Bauke 2024-02-25 12:42:15 +01:00
parent 997cd0ba31
commit e0c9f67cc3
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 16 additions and 14 deletions

View File

@ -1,5 +1,4 @@
import path from "node:path"; import path from "node:path";
// eslint-disable-next-line n/file-extension-in-import
import {defineConfig} from "astro/config"; import {defineConfig} from "astro/config";
import mdxIntegration from "@astrojs/mdx"; import mdxIntegration from "@astrojs/mdx";
import preactIntegration from "@astrojs/preact"; import preactIntegration from "@astrojs/preact";

View File

@ -1,21 +1,21 @@
{ {
"private": "true", "private": "true",
"dependencies": { "dependencies": {
"@astrojs/mdx": "^0.19.7", "@astrojs/mdx": "^2.1.1",
"@astrojs/preact": "^2.2.1", "@astrojs/preact": "^3.1.1",
"@bauke/eslint-config": "^0.1.4", "@bauke/eslint-config": "^0.1.5",
"@bauke/prettier-config": "^0.1.4", "@bauke/prettier-config": "^0.1.5",
"@bauke/stylelint-config": "^0.1.4", "@bauke/stylelint-config": "^0.1.5",
"@types/node": "^20.4.2", "@types/node": "^20.11.20",
"astro": "^2.8.3", "astro": "^4.4.4",
"modern-normalize": "^2.0.0", "modern-normalize": "^2.0.0",
"netlify-cli": "^15.9.0", "netlify-cli": "^17.17.0",
"preact": "^10.16.0", "preact": "^10.19.6",
"sass": "^1.63.6", "sass": "^1.71.1",
"stylelint": "^15.10.1", "stylelint": "^16.2.1",
"trash-cli": "^5.0.0", "trash-cli": "^5.0.0",
"typescript": "^5.1.6", "typescript": "^5.3.3",
"xo": "^0.55.0" "xo": "^0.57.0"
}, },
"prettier": "@bauke/prettier-config", "prettier": "@bauke/prettier-config",
"stylelint": { "stylelint": {
@ -24,6 +24,9 @@
"xo": { "xo": {
"extends": "@bauke/eslint-config", "extends": "@bauke/eslint-config",
"prettier": true, "prettier": true,
"rules": {
"unicorn/prevent-abbreviations": "off"
},
"space": true "space": true
} }
} }