@docusaurus/plugin-content-blog 3.8.0 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-content-blog",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Blog plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/plugin-content-blog.d.ts",
@@ -31,14 +31,14 @@
31
31
  },
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@docusaurus/core": "3.8.0",
35
- "@docusaurus/logger": "3.8.0",
36
- "@docusaurus/mdx-loader": "3.8.0",
37
- "@docusaurus/theme-common": "3.8.0",
38
- "@docusaurus/types": "3.8.0",
39
- "@docusaurus/utils": "3.8.0",
40
- "@docusaurus/utils-common": "3.8.0",
41
- "@docusaurus/utils-validation": "3.8.0",
34
+ "@docusaurus/core": "3.8.1",
35
+ "@docusaurus/logger": "3.8.1",
36
+ "@docusaurus/mdx-loader": "3.8.1",
37
+ "@docusaurus/theme-common": "3.8.1",
38
+ "@docusaurus/types": "3.8.1",
39
+ "@docusaurus/utils": "3.8.1",
40
+ "@docusaurus/utils-common": "3.8.1",
41
+ "@docusaurus/utils-validation": "3.8.1",
42
42
  "cheerio": "1.0.0-rc.12",
43
43
  "feed": "^4.2.2",
44
44
  "fs-extra": "^11.1.1",
@@ -62,5 +62,5 @@
62
62
  "@total-typescript/shoehorn": "^0.1.2",
63
63
  "tree-node-cli": "^1.6.0"
64
64
  },
65
- "gitHead": "948d63c42fad0ba24b7b531a9deb6167e64dc845"
65
+ "gitHead": "fa8ae13e668fcbc0481ce10c0a734e2a5b397293"
66
66
  }
@@ -521,9 +521,9 @@ declare module '@docusaurus/plugin-content-blog' {
521
521
  readingTime: ReadingTimeFunctionOption;
522
522
  /** Governs the direction of blog post sorting. */
523
523
  sortPosts: 'ascending' | 'descending';
524
- /** Whether to display the last date the doc was updated. */
524
+ /** Whether to display the last date the blog post was updated. */
525
525
  showLastUpdateTime: boolean;
526
- /** Whether to display the author who last updated the doc. */
526
+ /** Whether to display the author who last updated the blog post. */
527
527
  showLastUpdateAuthor: boolean;
528
528
  /** An optional function which can be used to transform blog posts
529
529
  * (filter, modify, delete, etc...).