Skip to content

Commit 31afecc

Browse files
authored
fix: export module types under pakcage name (#226)
1 parent 617a02d commit 31afecc

20 files changed

+490
-242
lines changed

build.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import fs from 'node:fs'
22
import { defineBuildConfig } from 'unbuild'
33

44
export default defineBuildConfig({
5-
failOnWarn: false,
65
entries: [
76
'src/config.ts'
87
],

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"@shikijs/transformers": "^1.6.4",
7676
"@types/hast": "^3.0.4",
7777
"@types/mdast": "^4.0.4",
78-
"@vue/compiler-core": "^3.4.27",
78+
"@vue/compiler-core": "^3.4.28",
7979
"consola": "^3.2.3",
8080
"debug": "^4.3.5",
8181
"defu": "^6.1.4",
@@ -113,7 +113,8 @@
113113
"@nuxt/module-builder": "^0.7.1",
114114
"@nuxt/schema": "^3.12.1",
115115
"@nuxt/test-utils": "^3.13.1",
116-
"@nuxt/ui": "^2.16.0",
116+
"@nuxt/ui": "^2.17.0",
117+
"@nuxtjs/mdc": "link:.",
117118
"@types/node": "^20.14.2",
118119
"changelogen": "^0.5.5",
119120
"eslint": "^9.4.0",

pnpm-lock.yaml

+454-206
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/config.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
import type { MdcConfig } from './types/config'
2-
3-
export function defineConfig(config: MdcConfig) {
4-
return config
5-
}
1+
export { defineConfig } from './module'

src/module.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ import { defineNuxtModule, extendViteConfig, addComponent, addComponentsDir, cre
33
import { defu } from 'defu'
44
import { resolve } from 'pathe'
55
import type { BundledLanguage } from 'shiki'
6-
import type { ModuleOptions } from './types/module'
6+
import type { ModuleOptions, MdcConfig } from './types'
77
import { registerMDCSlotTransformer } from './utils/vue-mdc-slot'
88
import * as templates from './templates'
99
import { addWasmSupport } from './utils'
1010

11-
export * from './types/module'
11+
export type * from './types'
12+
13+
export function defineConfig(config: MdcConfig) {
14+
return config
15+
}
1216

1317
export const DefaultHighlightLangs: BundledLanguage[] = [
1418
'js',

src/runtime/components/MDC.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import { hash } from 'ohash'
2222
import { useAsyncData } from 'nuxt/app'
2323
import { watch, computed, type PropType } from 'vue'
24+
import type { MDCParseOptions } from '@nuxtjs/mdc'
2425
import { parseMarkdown } from '../parser'
25-
import type { MDCParseOptions } from '../../types'
2626
2727
const props = defineProps({
2828
tag: {

src/runtime/components/MDCRenderer.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import destr from 'destr'
44
import { kebabCase, pascalCase } from 'scule'
55
import { find, html } from 'property-information'
66
import type { VNode, ConcreteComponent, PropType, DefineComponent } from 'vue'
7+
import type { MDCElement, MDCNode, MDCRoot, MDCData } from '@nuxtjs/mdc'
78
import htmlTags from '../parser/utils/html-tags-list'
8-
import type { MDCElement, MDCNode, MDCRoot, MDCData } from '../../types'
99
import { flatUnwrap } from '../utils/node'
1010
1111
type CreateElement = typeof h

src/runtime/highlighter/rehype-nuxt.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { HighlightResult } from '../../types/highlighter'
2-
import { rehypeHighlight as rehypeHighlightUniversal, type RehypeHighlightOption } from './rehype'
1+
import type { HighlightResult, RehypeHighlightOption } from '@nuxtjs/mdc'
2+
import { rehypeHighlight as rehypeHighlightUniversal } from './rehype'
33

44
const defaults: RehypeHighlightOption = {
55
theme: {},

src/runtime/highlighter/rehype.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import type { Root, Element } from 'hast'
22
import { visit } from 'unist-util-visit'
33
import { toString } from 'hast-util-to-string'
4-
import type { Highlighter, MdcThemeOptions } from '../../types/highlighter'
5-
6-
export interface RehypeHighlightOption {
7-
theme?: MdcThemeOptions
8-
highlighter?: Highlighter
9-
}
4+
import type { RehypeHighlightOption } from '@nuxtjs/mdc'
105

116
export default rehypeHighlight
127

src/runtime/highlighter/shiki.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import {
77
transformerNotationFocus,
88
transformerNotationHighlight
99
} from '@shikijs/transformers'
10-
import type { MdcConfig } from '../../types/config'
11-
import type { Highlighter } from '../../types/highlighter'
10+
import type { MdcConfig, Highlighter } from '@nuxtjs/mdc'
1211

1312
export interface CreateShikiHighlighterOptions {
1413
/* An array of themes to be loaded initially */

src/runtime/parser/compiler.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { toString } from 'hast-util-to-string'
22
import Slugger from 'github-slugger'
3-
import type { RootContent, Root } from '../../types/hast'
4-
import type { MDCNode, MDCParseOptions, MDCRoot } from '../../types'
3+
import type { RootContent, Root, MDCNode, MDCParseOptions, MDCRoot } from '@nuxtjs/mdc'
54
import { validateProps } from './utils/props'
65

76
export function compileHast(this: any, options: MDCParseOptions = {}) {

src/runtime/parser/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import remarkParse from 'remark-parse'
33
import remark2rehype from 'remark-rehype'
44
import { parseFrontMatter } from 'remark-mdc'
55
import { defu } from 'defu'
6-
import type { MDCData, MDCElement, MDCParseOptions, MDCParserResult, MDCRoot, Toc } from '../../types'
6+
import type { MdcConfig, MDCData, MDCElement, MDCParseOptions, MDCParserResult, MDCRoot, Toc } from '@nuxtjs/mdc'
77
import { nodeTextContent } from '../utils/node'
8-
import type { MdcConfig } from '../../types/config'
98
import { useProcessorPlugins } from './utils/plugins'
109
import { defaults } from './options'
1110
import { generateToc } from './toc'

src/runtime/parser/options.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rehypeExternalLinks from 'rehype-external-links'
55
import rehypeSortAttributeValues from 'rehype-sort-attribute-values'
66
import rehypeSortAttributes from 'rehype-sort-attributes'
77
import rehypeRaw from 'rehype-raw'
8-
import type { MDCParseOptions } from '../../types'
8+
import type { MDCParseOptions } from '@nuxtjs/mdc'
99
import handlers from './handlers'
1010

1111
export const defaults: MDCParseOptions = {

src/runtime/parser/toc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { MDCNode, Toc, TocLink, MDCElement, MDCRoot } from '../../types'
1+
import type { MDCNode, Toc, TocLink, MDCElement, MDCRoot } from '@nuxtjs/mdc'
22
import { flattenNode, flattenNodeText } from '../utils/ast'
33

44
const TOC_TAGS = ['h2', 'h3', 'h4', 'h5', 'h6']

src/runtime/parser/utils/plugins.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @ts-expect-error missing types
22
import type { Processor } from 'remark-rehype/lib'
3-
import type { MDCParseOptions, RehypePlugin, RemarkPlugin } from '../../../types'
3+
import type { MDCParseOptions, RehypePlugin, RemarkPlugin } from '@nuxtjs/mdc'
44

55
export const useProcessorPlugins = async (
66
processor: Processor,

src/runtime/utils/ast.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { MDCElement, MDCNode } from '../../types'
1+
import type { MDCElement, MDCNode } from '@nuxtjs/mdc'
22

33
export function flattenNodeText(node: MDCNode): string {
44
if (node.type === 'comment') {

src/runtime/utils/node.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { VNode } from 'vue'
2-
import type { MDCElement, MDCNode, MDCText } from '../../types'
2+
import type { MDCElement, MDCNode, MDCText } from '@nuxtjs/mdc'
33

44
/**
55
* List of text nodes

src/types/highlighter.ts

+5
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ export interface HighlightResult {
1616
}
1717

1818
export type Highlighter = (code: string, lang: string, theme: MdcThemeOptions, options: Partial<HighlighterOptions>) => Promise<HighlightResult>
19+
20+
export interface RehypeHighlightOption {
21+
theme?: MdcThemeOptions
22+
highlighter?: Highlighter
23+
}

src/types/index.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
export * from './tree'
2-
export * from './parser'
3-
export * from './toc'
4-
export * from './module'
1+
export type * from './tree'
2+
export type * from './parser'
3+
export type * from './toc'
4+
export type * from './module'
5+
export type * from './highlighter'
6+
export type * from './config'
7+
export type * from './hast'

src/types/parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { Options as RehypeOption } from 'remark-rehype'
2-
import type { RehypeHighlightOption } from '../runtime/highlighter/rehype'
32
import type { MdcConfig } from './config'
43
import type { MDCData, MDCRoot } from './tree'
54
import type { Toc } from './toc'
5+
import type { RehypeHighlightOption } from './highlighter'
66

77
export interface RemarkPlugin {
88
instance?: any

0 commit comments

Comments
 (0)