mirror of
https://github.com/orhun/git-cliff.git
synced 2024-11-25 12:22:44 +03:00
chore(deps): bump docusaurus to v3 (#391)
https://docusaurus.io/docs/migration/v3
This commit is contained in:
parent
b3a3e4b9d2
commit
ee205c4472
@ -6,6 +6,7 @@ authors: orhun
|
||||
tags:
|
||||
- release
|
||||
---
|
||||
|
||||
<center>
|
||||
|
||||
<a href="https://github.com/orhun/git-cliff">
|
||||
@ -42,7 +43,7 @@ For example:
|
||||
- Each entry shows the issue/PR number and related commit
|
||||
- Emojis!
|
||||
|
||||
Configuration: <https://github.com/orhun/git-cliff/blob/main/cliff.toml>
|
||||
Configuration: [https://github.com/orhun/git-cliff/blob/main/cliff.toml](https://github.com/orhun/git-cliff/blob/main/cliff.toml)
|
||||
|
||||
### Postprocessors ⚙️
|
||||
|
||||
@ -104,8 +105,8 @@ The way that it works is:
|
||||
|
||||
`git-cliff` is now packaged for [PyPI](https://pypi.org/), the Python packaging index.
|
||||
|
||||
- <https://pypi.org/project/git-cliff>
|
||||
- <https://test.pypi.org/project/git-cliff> (test package)
|
||||
- [https://pypi.org/project/git-cliff](https://pypi.org/project/git-cliff)
|
||||
- [https://test.pypi.org/project/git-cliff](https://test.pypi.org/project/git-cliff) (test package)
|
||||
|
||||
You can download it with `pip`:
|
||||
|
||||
@ -172,7 +173,7 @@ I'm happy to announce that I will be talking about `git-cliff` at [**RustLab 202
|
||||
|
||||
<center>
|
||||
|
||||
**<https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff>**
|
||||
**[https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff](https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff)**
|
||||
|
||||
</center>
|
||||
|
||||
@ -182,7 +183,7 @@ I'm happy to announce that I will be talking about `git-cliff` at [**RustLab 202
|
||||
|
||||
- **Dates**: November 19th -> November 21th
|
||||
- **Location**: Florence, Italy
|
||||
- **Tickets**: <https://rustlab.it/tickets>
|
||||
- **Tickets**: [https://rustlab.it/tickets](https://rustlab.it/tickets)
|
||||
|
||||
## Contributions
|
||||
|
||||
|
@ -6,6 +6,7 @@ authors: orhun
|
||||
tags:
|
||||
- release
|
||||
---
|
||||
|
||||
<center>
|
||||
|
||||
<a href="https://github.com/orhun/git-cliff">
|
||||
@ -109,7 +110,7 @@ I'm happy to announce that I will be talking about `git-cliff` at [**RustLab 202
|
||||
|
||||
<center>
|
||||
|
||||
**<https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff>**
|
||||
**[https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff](https://rustlab.it/talks/turning-git-commits-into-changelog-with-git-cliff)**
|
||||
|
||||
</center>
|
||||
|
||||
@ -119,7 +120,7 @@ I'm happy to announce that I will be talking about `git-cliff` at [**RustLab 202
|
||||
|
||||
- **Dates**: November 19th -> November 21th
|
||||
- **Location**: Florence, Italy
|
||||
- **Tickets**: <https://rustlab.it/tickets>
|
||||
- **Tickets**: [https://rustlab.it/tickets](https://rustlab.it/tickets)
|
||||
|
||||
## Contributions
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Note: type annotations allow type checking and IDEs autocompletion
|
||||
|
||||
const lightCodeTheme = require("prism-react-renderer").themes.github;
|
||||
const darkCodeTheme = require("prism-react-renderer").themes.vsDark;
|
||||
const darkCodeTheme = require("prism-react-renderer").themes.dracula;
|
||||
|
||||
/** @type {import('@docusaurus/types').Config} */
|
||||
const config = {
|
||||
@ -143,7 +143,7 @@ const config = {
|
||||
prism: {
|
||||
theme: lightCodeTheme,
|
||||
darkTheme: darkCodeTheme,
|
||||
additionalLanguages: ["yaml", "toml", "rust"],
|
||||
additionalLanguages: ["bash", "diff", "json", "yaml", "toml", "rust"],
|
||||
},
|
||||
}),
|
||||
};
|
||||
|
@ -16,17 +16,17 @@
|
||||
"typecheck": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docusaurus/core": "2.4.3",
|
||||
"@docusaurus/preset-classic": "2.4.3",
|
||||
"@mdx-js/react": "^2.3.0",
|
||||
"@docusaurus/core": "3.0.1",
|
||||
"@docusaurus/preset-classic": "3.0.1",
|
||||
"@mdx-js/react": "^3.0.0",
|
||||
"clsx": "^2.0.0",
|
||||
"prism-react-renderer": "^2.3.1",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2"
|
||||
"prism-react-renderer": "^2.3.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@docusaurus/module-type-aliases": "3.0.1",
|
||||
"@tsconfig/docusaurus": "^2.0.2",
|
||||
"@docusaurus/tsconfig": "3.0.0",
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"browserslist": {
|
||||
@ -42,6 +42,6 @@
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.14"
|
||||
"node": ">=18.0"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
// This file is not used in compilation. It is here just for a nice editor experience.
|
||||
"extends": "@tsconfig/docusaurus/tsconfig.json",
|
||||
"extends": "@docusaurus/tsconfig",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "."
|
||||
}
|
||||
|
5009
website/yarn.lock
5009
website/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user