@ox-content/unplugin 0.9.0 → 0.11.0
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/dist/esbuild.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/rollup.d.ts +2 -2
- package/package.json +2 -2
package/dist/esbuild.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as OxContentOptions, d as ResolvedOptions, f as TocEntry, p as TransformResult, t as unplugin } from "./index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as unplugin1 from "unplugin";
|
|
3
3
|
|
|
4
4
|
//#region src/esbuild.d.ts
|
|
5
5
|
|
|
6
|
-
declare const _default: (options?: OxContentOptions | undefined) =>
|
|
6
|
+
declare const _default: (options?: OxContentOptions | undefined) => unplugin1.EsbuildPlugin;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { type OxContentOptions, type ResolvedOptions, type TocEntry, type TransformResult, _default as default, unplugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as unplugin2 from "unplugin";
|
|
2
2
|
import MarkdownIt from "markdown-it";
|
|
3
3
|
|
|
4
4
|
//#region src/types.d.ts
|
|
@@ -255,6 +255,6 @@ declare function transformMarkdown(source: string, filePath: string, options: Re
|
|
|
255
255
|
/**
|
|
256
256
|
* The unplugin instance.
|
|
257
257
|
*/
|
|
258
|
-
declare const unplugin:
|
|
258
|
+
declare const unplugin: unplugin2.UnpluginInstance<OxContentOptions | undefined, boolean>;
|
|
259
259
|
//#endregion
|
|
260
260
|
export { OxContentOptions as a, RehypePlugin as c, ResolvedOptions as d, TocEntry as f, MarkdownItPlugin as i, RemarkPlugin as l, transformMarkdown as n, OxContentPlugin as o, TransformResult as p, DocsConfig as r, PluginConfig as s, unplugin as t, ResolvedDocsConfig as u };
|
package/dist/rollup.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as OxContentOptions, d as ResolvedOptions, f as TocEntry, p as TransformResult, t as unplugin } from "./index.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as unplugin0 from "unplugin";
|
|
3
3
|
|
|
4
4
|
//#region src/rollup.d.ts
|
|
5
5
|
|
|
6
|
-
declare const _default: (options?: OxContentOptions | undefined) =>
|
|
6
|
+
declare const _default: (options?: OxContentOptions | undefined) => unplugin0.RollupPlugin<any> | unplugin0.RollupPlugin<any>[];
|
|
7
7
|
//#endregion
|
|
8
8
|
export { type OxContentOptions, type ResolvedOptions, type TocEntry, type TransformResult, _default as default, unplugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ox-content/unplugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Universal plugin for Ox Content - Markdown processing for webpack, rollup, esbuild, vite, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"remark-rehype": "^11.1.1",
|
|
45
45
|
"unified": "^11.0.5",
|
|
46
46
|
"unplugin": "^2.1.2",
|
|
47
|
-
"@ox-content/napi": "0.
|
|
47
|
+
"@ox-content/napi": "0.11.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/markdown-it": "^14.1.2",
|