@docusaurus/plugin-content-blog 0.0.0-5912 → 0.0.0-5917
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/lib/authors.d.ts +1 -0
- package/lib/blogUtils.d.ts +1 -0
- package/lib/client/index.d.ts +1 -0
- package/lib/feed.d.ts +1 -0
- package/lib/frontMatter.d.ts +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/options.d.ts +1 -0
- package/lib/props.d.ts +1 -0
- package/lib/routes.d.ts +1 -0
- package/lib/translations.d.ts +1 -0
- package/package.json +9 -9
package/lib/authors.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { BlogContentPaths } from './types';
|
|
8
9
|
import type { Author, BlogPostFrontMatter } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
export type AuthorsMap = {
|
package/lib/blogUtils.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { LoadContext } from '@docusaurus/types';
|
|
8
9
|
import type { PluginOptions, BlogPost, BlogTags, BlogPaginated } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
import type { BlogContentPaths, BlogMarkdownLoaderOptions } from './types';
|
package/lib/client/index.d.ts
CHANGED
|
@@ -4,5 +4,6 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { BlogMetadata } from '@docusaurus/plugin-content-blog';
|
|
8
9
|
export declare function useBlogMetadata(): BlogMetadata;
|
package/lib/feed.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { DocusaurusConfig } from '@docusaurus/types';
|
|
8
9
|
import type { PluginOptions, BlogPost } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
export declare function createBlogFeedFiles({ blogPosts: allBlogPosts, options, siteConfig, outDir, locale, }: {
|
package/lib/frontMatter.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { LoadContext, Plugin } from '@docusaurus/types';
|
|
8
9
|
import type { PluginOptions, BlogContent } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
export default function pluginContentBlog(context: LoadContext, options: PluginOptions): Promise<Plugin<BlogContent>>;
|
package/lib/options.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { PluginOptions, Options } from '@docusaurus/plugin-content-blog';
|
|
8
9
|
import type { OptionValidationContext } from '@docusaurus/types';
|
|
9
10
|
export declare const DEFAULT_OPTIONS: PluginOptions;
|
package/lib/props.d.ts
CHANGED
package/lib/routes.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { PluginContentLoadedActions, RouteConfig } from '@docusaurus/types';
|
|
8
9
|
import type { BlogContent, PluginOptions } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
type CreateAllRoutesParam = {
|
package/lib/translations.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
+
/// <reference path="../src/plugin-content-blog.d.ts" />
|
|
7
8
|
import type { TranslationFile } from '@docusaurus/types';
|
|
8
9
|
import type { PluginOptions, BlogContent } from '@docusaurus/plugin-content-blog';
|
|
9
10
|
export declare function getTranslationFiles(options: PluginOptions): TranslationFile[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/plugin-content-blog",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-5917",
|
|
4
4
|
"description": "Blog plugin for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "src/plugin-content-blog.d.ts",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
},
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@docusaurus/core": "0.0.0-
|
|
35
|
-
"@docusaurus/logger": "0.0.0-
|
|
36
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
37
|
-
"@docusaurus/types": "0.0.0-
|
|
38
|
-
"@docusaurus/utils": "0.0.0-
|
|
39
|
-
"@docusaurus/utils-common": "0.0.0-
|
|
40
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
34
|
+
"@docusaurus/core": "0.0.0-5917",
|
|
35
|
+
"@docusaurus/logger": "0.0.0-5917",
|
|
36
|
+
"@docusaurus/mdx-loader": "0.0.0-5917",
|
|
37
|
+
"@docusaurus/types": "0.0.0-5917",
|
|
38
|
+
"@docusaurus/utils": "0.0.0-5917",
|
|
39
|
+
"@docusaurus/utils-common": "0.0.0-5917",
|
|
40
|
+
"@docusaurus/utils-validation": "0.0.0-5917",
|
|
41
41
|
"cheerio": "^1.0.0-rc.12",
|
|
42
42
|
"feed": "^4.2.2",
|
|
43
43
|
"fs-extra": "^11.1.1",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@total-typescript/shoehorn": "^0.1.2"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "01a12610bcb9050a1e58d83fa4944b2ab2bca69f"
|
|
63
63
|
}
|