Update dependencies
This commit is contained in:
parent
7375f9c81b
commit
38e2a8cec5
6 changed files with 1485 additions and 2097 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -27,3 +27,4 @@ _build
|
||||||
|
|
||||||
|
|
||||||
/result
|
/result
|
||||||
|
.pnpm-store
|
||||||
|
|
|
@ -5,8 +5,9 @@ steps:
|
||||||
- ASTRO_TELEMETRY_DISABLED=1
|
- ASTRO_TELEMETRY_DISABLED=1
|
||||||
commands:
|
commands:
|
||||||
- mkdir /tmp
|
- mkdir /tmp
|
||||||
- bun install --frozen-lockfile
|
- npm i -g pnpm@9.4.0
|
||||||
- bun run build
|
- npx pnpm install --frozen-lockfile
|
||||||
|
- npx pnpm run build
|
||||||
when:
|
when:
|
||||||
- event: push
|
- event: push
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ import sitemap from "@astrojs/sitemap";
|
||||||
import { rehypeAccessibleEmojis } from "rehype-accessible-emojis";
|
import { rehypeAccessibleEmojis } from "rehype-accessible-emojis";
|
||||||
import remarkReadingTime from "./plugin/remark-reading-time";
|
import remarkReadingTime from "./plugin/remark-reading-time";
|
||||||
import remarkEmoji from "remark-emoji";
|
import remarkEmoji from "remark-emoji";
|
||||||
import remarkMermaid from "astro-diagram/remark-mermaid";
|
|
||||||
import remarkDescription from "astro-remark-description";
|
import remarkDescription from "astro-remark-description";
|
||||||
import remarkAdmonitions from "./plugin/remark-admonitions";
|
import remarkAdmonitions from "./plugin/remark-admonitions";
|
||||||
import remarkMath from "remark-math";
|
import remarkMath from "remark-math";
|
||||||
|
@ -31,7 +30,6 @@ export default defineConfig({
|
||||||
remarkAdmonitions,
|
remarkAdmonitions,
|
||||||
remarkReadingTime,
|
remarkReadingTime,
|
||||||
remarkTypst,
|
remarkTypst,
|
||||||
remarkMermaid,
|
|
||||||
remarkEmoji,
|
remarkEmoji,
|
||||||
[
|
[
|
||||||
remarkDescription,
|
remarkDescription,
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
dive
|
dive
|
||||||
nix-tree
|
nix-tree
|
||||||
vips
|
vips
|
||||||
|
shellcheck
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
40
package.json
40
package.json
|
@ -2,6 +2,7 @@
|
||||||
"name": "blog",
|
"name": "blog",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
|
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
@ -11,44 +12,43 @@
|
||||||
"format": "prettier -w ."
|
"format": "prettier -w ."
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/markdoc": "^0.11.0",
|
"@astrojs/markdoc": "^0.11.1",
|
||||||
"@astrojs/markdown-remark": "^5.0.0",
|
"@astrojs/markdown-remark": "^5.1.1",
|
||||||
"@astrojs/mdx": "^1.0.0",
|
"@astrojs/mdx": "^1.1.5",
|
||||||
"@astrojs/rss": "^3.0.0",
|
"@astrojs/rss": "^3.0.0",
|
||||||
"@astrojs/sitemap": "^3.0.0",
|
"@astrojs/sitemap": "^3.1.6",
|
||||||
"@justfork/rehype-autolink-headings": "^5.1.1",
|
"@justfork/rehype-autolink-headings": "^5.1.1",
|
||||||
"astro": "^3.0.3",
|
"astro": "^3.6.5",
|
||||||
"astro-diagram": "^0.7.0",
|
|
||||||
"astro-imagetools": "^0.9.0",
|
"astro-imagetools": "^0.9.0",
|
||||||
"astro-remark-description": "^1.0.1",
|
"astro-remark-description": "^1.1.2",
|
||||||
"classnames": "^2.3.2",
|
"classnames": "^2.5.1",
|
||||||
"fork-awesome": "^1.2.0",
|
"fork-awesome": "^1.2.0",
|
||||||
"katex": "^0.16.8",
|
"katex": "^0.16.10",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"mdast-util-to-string": "^4.0.0",
|
"mdast-util-to-string": "^4.0.0",
|
||||||
"nanoid": "^4.0.2",
|
"nanoid": "^4.0.2",
|
||||||
"reading-time": "^1.5.0",
|
"reading-time": "^1.5.0",
|
||||||
"rehype-accessible-emojis": "^0.3.2",
|
"rehype-accessible-emojis": "^0.3.2",
|
||||||
"rehype-katex": "^6.0.3",
|
"rehype-katex": "^6.0.3",
|
||||||
"remark-emoji": "^4.0.0",
|
"remark-emoji": "^4.0.1",
|
||||||
"remark-github-beta-blockquote-admonitions": "^2.1.0",
|
"remark-github-beta-blockquote-admonitions": "^2.2.1",
|
||||||
"remark-math": "^5.1.1",
|
"remark-math": "^5.1.1",
|
||||||
"remark-parse": "^10.0.2"
|
"remark-parse": "^10.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.7.3",
|
"@biomejs/biome": "^1.8.2",
|
||||||
"@types/lodash-es": "^4.17.9",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"date-fns": "^2.30.0",
|
"date-fns": "^2.30.0",
|
||||||
"hast-util-from-html": "^2.0.1",
|
"hast-util-from-html": "^2.0.1",
|
||||||
"hast-util-to-html": "^9.0.0",
|
"hast-util-to-html": "^9.0.1",
|
||||||
"mdast": "^3.0.0",
|
"mdast": "^3.0.0",
|
||||||
"mdast-util-from-markdown": "^2.0.0",
|
"mdast-util-from-markdown": "^2.0.1",
|
||||||
"prettier": "^3.0.3",
|
"prettier": "^3.3.2",
|
||||||
"prettier-plugin-astro": "^0.12.0",
|
"prettier-plugin-astro": "^0.12.3",
|
||||||
"rehype-slug": "^6.0.0",
|
"rehype-slug": "^6.0.0",
|
||||||
"sass": "^1.66.1",
|
"sass": "^1.77.6",
|
||||||
"shiki": "^0.14.5",
|
"shiki": "^0.14.7",
|
||||||
"unified": "^11.0.2",
|
"unified": "^11.0.5",
|
||||||
"unist-util-visit": "^5.0.0"
|
"unist-util-visit": "^5.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
3533
pnpm-lock.yaml
3533
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue