mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 05:26:39 +00:00
chore(deps): update Astro, Vue, Prettier and related deps
Upgrade Astro to 5.11.0, Vue to 3.5.17, Prettier to 3.6.2, and update related dependencies and lockfile. Also update @astrojs/rss, @astrojs/vue, @vitejs/plugin-vue-jsx, @volar/kit, and Shiki packages to latest versions. Add "format" script to package.json for code formatting. This ensures compatibility, bug fixes, and improved features across the project.
This commit is contained in:
parent
c58ee4ddfa
commit
143b71e74b
6 changed files with 3840 additions and 2361 deletions
|
|
@ -7,4 +7,4 @@ import vue from "@astrojs/vue";
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: "https://orbital-orbit.netlify.app",
|
site: "https://orbital-orbit.netlify.app",
|
||||||
integrations: [vue()],
|
integrations: [vue()],
|
||||||
});
|
});
|
||||||
|
|
|
||||||
15
package.json
15
package.json
|
|
@ -6,18 +6,19 @@
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"build": "astro build",
|
"build": "astro build",
|
||||||
"preview": "astro preview",
|
"preview": "astro preview",
|
||||||
"astro": "astro"
|
"astro": "astro",
|
||||||
|
"format": "prettier -wl ."
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.9.4",
|
"@astrojs/check": "^0.9.4",
|
||||||
"@astrojs/rss": "^4.0.10",
|
"@astrojs/rss": "^4.0.12",
|
||||||
"@astrojs/vue": "^5.0.3",
|
"@astrojs/vue": "^5.1.0",
|
||||||
"astro": "^5.1.1",
|
"astro": "^5.11.0",
|
||||||
"typescript": "^5.7.2",
|
"typescript": "^5.8.3",
|
||||||
"vue": "^3.5.13"
|
"vue": "^3.5.17"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"prettier": "^3.4.2",
|
"prettier": "^3.6.2",
|
||||||
"prettier-plugin-astro": "^0.14.1"
|
"prettier-plugin-astro": "^0.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6170
pnpm-lock.yaml
6170
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
3
pnpm-workspace.yaml
Normal file
3
pnpm-workspace.yaml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
onlyBuiltDependencies:
|
||||||
|
- esbuild
|
||||||
|
- sharp
|
||||||
|
|
@ -1,13 +1,8 @@
|
||||||
{
|
{
|
||||||
"extends": "astro/tsconfigs/strict",
|
"extends": "astro/tsconfigs/strict",
|
||||||
"include": [
|
"include": [".astro/types.d.ts", "**/*"],
|
||||||
".astro/types.d.ts",
|
"exclude": ["dist"],
|
||||||
"**/*"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"dist"
|
|
||||||
],
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"jsx": "preserve"
|
"jsx": "preserve"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue