Skip to content

Commit

Permalink
chore: update deps and format files
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh committed Jul 13, 2023
1 parent 3127b91 commit 40eefd6
Show file tree
Hide file tree
Showing 47 changed files with 482 additions and 663 deletions.
6 changes: 3 additions & 3 deletions .prettierrc.cjs → .prettierrc.js
@@ -1,10 +1,10 @@
/** @type {import("@types/prettier").Options} */
module.exports = {
/** @type {import("prettier").Options} */
export default {
printWidth: 100,
tabWidth: 2,
trailingComma: "all",
semi: true,
plugins: ["./node_modules/prettier-plugin-astro", require("prettier-plugin-tailwindcss")],
plugins: ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
astroAllowShorthand: false,
overrides: [
{
Expand Down
29 changes: 13 additions & 16 deletions package.json
Expand Up @@ -10,27 +10,27 @@
"preview": "astro preview",
"check": "astro check",
"lint": "eslint . --ext .ts,.js,.astro",
"format": "prettier -w --plugin-search-dir=. --cache .",
"format": "prettier -w --cache .",
"update-data": "tsx ./scripts/update-catalogue-info.ts --silent"
},
"devDependencies": {
"@astrojs/tailwind": "^4.0.0",
"@types/eslint": "^8.40.2",
"@types/eslint": "^8.44.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.4.0",
"@types/node": "^20.4.2",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"astro": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"astro": "^2.8.2",
"astro-auto-import": "^0.3.0",
"astro-icon": "0.8.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"kleur": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.11.0",
"quick-score": "^0.2.0",
"quicklink": "^2.3.0",
"typescript": "^5.1.6"
Expand All @@ -47,25 +47,22 @@
}
}
}
},
"patchedDependencies": {
"astro@2.8.0": "patches/astro@2.8.0.patch"
}
},
"packageManager": "pnpm@8.6.2",
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@types/igdb-api-node": "^5.0.0",
"astro-expressive-code": "^0.13.0",
"astro-expressive-code": "^0.18.0",
"dotenv": "^16.3.1",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"igdb-api-node": "^5.0.2",
"markdown-it": "^13.0.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"sharp": "^0.32.1",
"prettier-plugin-tailwindcss": "^0.4.0",
"sharp": "^0.32.2",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.7",
"vercel": "^31.0.1"
"vercel": "^31.0.2"
}
}
54 changes: 0 additions & 54 deletions patches/astro@2.8.0.patch

This file was deleted.

0 comments on commit 40eefd6

Please sign in to comment.