mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-10 15:47:23 +02:00
refactor: enforce type import specifiers (#6230)
* refactor: enforce type import specifiers * fix * Upgrade esbuild * Fix (haha)
This commit is contained in:
parent
24d65d9bdd
commit
cb1aa30286
192 changed files with 484 additions and 337 deletions
|
@ -22,7 +22,7 @@ import {
|
|||
} from '@docusaurus/utils';
|
||||
import {translateContent, getTranslationFiles} from './translations';
|
||||
|
||||
import {
|
||||
import type {
|
||||
PluginOptions,
|
||||
BlogTags,
|
||||
BlogContent,
|
||||
|
@ -35,7 +35,7 @@ import {
|
|||
Assets,
|
||||
} from './types';
|
||||
import {PluginOptionSchema} from './pluginOptionSchema';
|
||||
import {
|
||||
import type {
|
||||
LoadContext,
|
||||
ConfigureWebpackUtils,
|
||||
Props,
|
||||
|
@ -44,13 +44,13 @@ import {
|
|||
OptionValidationContext,
|
||||
ValidationResult,
|
||||
} from '@docusaurus/types';
|
||||
import {Configuration} from 'webpack';
|
||||
import type {Configuration} from 'webpack';
|
||||
import {
|
||||
generateBlogPosts,
|
||||
getSourceToPermalink,
|
||||
getBlogTags,
|
||||
} from './blogUtils';
|
||||
import {BlogPostFrontMatter} from './blogFrontMatter';
|
||||
import type {BlogPostFrontMatter} from './blogFrontMatter';
|
||||
import {createBlogFeedFiles} from './feed';
|
||||
|
||||
export default async function pluginContentBlog(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue