@powerlines/plugin-typedoc 0.10.188 → 0.10.190
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/{src/index.cjs → index.cjs} +1 -1
- package/dist/{src/index.d.cts → index.d.cts} +2 -2
- package/dist/{src/index.d.mts → index.d.mts} +3 -3
- package/dist/{packages/plugin-typedoc/src/types → types}/plugin.d.cts +3 -3
- package/dist/{packages/plugin-typedoc/src/types → types}/plugin.d.mts +3 -3
- package/package.json +4 -4
- /package/dist/{src/index.mjs → index.mjs} +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/index.cjs +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/index.d.cts +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/index.d.mts +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/index.mjs +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/plugin.cjs +0 -0
- /package/dist/{packages/plugin-typedoc/src/types → types}/plugin.mjs +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
-
const require_rolldown_runtime = require('
|
|
2
|
+
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
|
|
3
3
|
let __storm_software_config_tools_types = require("@storm-software/config-tools/types");
|
|
4
4
|
let __stryke_fs_exists = require("@stryke/fs/exists");
|
|
5
5
|
let __stryke_fs_helpers = require("@stryke/fs/helpers");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig, __ΩGenerateDocsOptions, __ΩTypeDocPluginContext, __ΩTypeDocPluginOptions, __ΩTypeDocPluginResolvedConfig, __ΩTypeDocPluginUserConfig } from "
|
|
1
|
+
import { Plugin } from "./powerlines/src/types/plugin.cjs";
|
|
2
|
+
import { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig, __ΩGenerateDocsOptions, __ΩTypeDocPluginContext, __ΩTypeDocPluginOptions, __ΩTypeDocPluginResolvedConfig, __ΩTypeDocPluginUserConfig } from "./types/plugin.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig, __ΩGenerateDocsOptions, __ΩTypeDocPluginContext, __ΩTypeDocPluginOptions, __ΩTypeDocPluginResolvedConfig, __ΩTypeDocPluginUserConfig } from "
|
|
3
|
-
import "
|
|
1
|
+
import { Plugin } from "./powerlines/src/types/plugin.mjs";
|
|
2
|
+
import { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig, __ΩGenerateDocsOptions, __ΩTypeDocPluginContext, __ΩTypeDocPluginOptions, __ΩTypeDocPluginResolvedConfig, __ΩTypeDocPluginUserConfig } from "./types/plugin.mjs";
|
|
3
|
+
import "./types/index.mjs";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { UserConfig } from "
|
|
2
|
-
import { ResolvedConfig } from "
|
|
3
|
-
import { PluginContext } from "
|
|
1
|
+
import { UserConfig } from "../powerlines/src/types/config.cjs";
|
|
2
|
+
import { ResolvedConfig } from "../powerlines/src/types/resolved.cjs";
|
|
3
|
+
import { PluginContext } from "../powerlines/src/types/context.cjs";
|
|
4
4
|
import { Application, ProjectReflection, TypeDocOptions } from "typedoc";
|
|
5
5
|
|
|
6
6
|
//#region src/types/plugin.d.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { UserConfig } from "
|
|
2
|
-
import { ResolvedConfig } from "
|
|
3
|
-
import { PluginContext } from "
|
|
1
|
+
import { UserConfig } from "../powerlines/src/types/config.mjs";
|
|
2
|
+
import { ResolvedConfig } from "../powerlines/src/types/resolved.mjs";
|
|
3
|
+
import { PluginContext } from "../powerlines/src/types/context.mjs";
|
|
4
4
|
import { Application, ProjectReflection, TypeDocOptions } from "typedoc";
|
|
5
5
|
|
|
6
6
|
//#region src/types/plugin.d.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-typedoc",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.190",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -104,14 +104,14 @@
|
|
|
104
104
|
"@stryke/fs": "^0.33.35",
|
|
105
105
|
"@stryke/path": "^0.25.3",
|
|
106
106
|
"defu": "^6.1.4",
|
|
107
|
-
"powerlines": "^0.37.
|
|
107
|
+
"powerlines": "^0.37.56",
|
|
108
108
|
"typedoc": "0.25.12",
|
|
109
109
|
"typedoc-plugin-markdown": "4.0.0-next.20"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
112
|
+
"@powerlines/plugin-plugin": "^0.12.134",
|
|
113
113
|
"@types/node": "^24.10.9"
|
|
114
114
|
},
|
|
115
115
|
"publishConfig": { "access": "public" },
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "7af3632002c069b20d1ce8fc08866a8c52cb7256"
|
|
117
117
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|