@powerlines/plugin-typedoc 0.10.24 → 0.10.28
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/{index-BqEoJsNI.d.cts → index-BnEU-mki.d.cts} +17 -3
- package/dist/{index-BqEoJsNI.d.ts → index-BnEU-mki.d.ts} +17 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +7 -7
|
@@ -218,8 +218,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
218
218
|
tsconfigFilePath: string;
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
declare const __VFS_PATCH__
|
|
222
|
-
declare const __VFS_REVERT__
|
|
221
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
222
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
223
223
|
type OutputModeType = "fs" | "virtual";
|
|
224
224
|
interface VirtualFile {
|
|
225
225
|
/**
|
|
@@ -628,6 +628,15 @@ interface OutputConfig {
|
|
|
628
628
|
* @defaultValue "dist/\{projectRoot\}"
|
|
629
629
|
*/
|
|
630
630
|
outputPath?: string;
|
|
631
|
+
/**
|
|
632
|
+
* The output directory path for the project build.
|
|
633
|
+
*
|
|
634
|
+
* @remarks
|
|
635
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
636
|
+
*
|
|
637
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
638
|
+
*/
|
|
639
|
+
distPath?: string;
|
|
631
640
|
/**
|
|
632
641
|
* The format of the output files
|
|
633
642
|
*
|
|
@@ -1464,5 +1473,10 @@ type TypeDocPluginContext<TResolvedConfig extends TypeDocPluginResolvedConfig =
|
|
|
1464
1473
|
*/
|
|
1465
1474
|
typedoc: Application;
|
|
1466
1475
|
};
|
|
1476
|
+
declare type __ΩGenerateDocsOptions = any[];
|
|
1477
|
+
declare type __ΩTypeDocPluginOptions = any[];
|
|
1478
|
+
declare type __ΩTypeDocPluginUserConfig = any[];
|
|
1479
|
+
declare type __ΩTypeDocPluginResolvedConfig = any[];
|
|
1480
|
+
declare type __ΩTypeDocPluginContext = any[];
|
|
1467
1481
|
|
|
1468
|
-
export type { GenerateDocsOptions as G, Plugin as P, TypeDocPluginOptions as T, TypeDocPluginContext as a, TypeDocPluginUserConfig as b, TypeDocPluginResolvedConfig as c };
|
|
1482
|
+
export type { GenerateDocsOptions as G, Plugin as P, TypeDocPluginOptions as T, __ΩGenerateDocsOptions as _, TypeDocPluginContext as a, TypeDocPluginUserConfig as b, TypeDocPluginResolvedConfig as c, __ΩTypeDocPluginOptions as d, __ΩTypeDocPluginUserConfig as e, __ΩTypeDocPluginResolvedConfig as f, __ΩTypeDocPluginContext as g };
|
|
@@ -218,8 +218,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
218
218
|
tsconfigFilePath: string;
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
declare const __VFS_PATCH__
|
|
222
|
-
declare const __VFS_REVERT__
|
|
221
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
222
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
223
223
|
type OutputModeType = "fs" | "virtual";
|
|
224
224
|
interface VirtualFile {
|
|
225
225
|
/**
|
|
@@ -628,6 +628,15 @@ interface OutputConfig {
|
|
|
628
628
|
* @defaultValue "dist/\{projectRoot\}"
|
|
629
629
|
*/
|
|
630
630
|
outputPath?: string;
|
|
631
|
+
/**
|
|
632
|
+
* The output directory path for the project build.
|
|
633
|
+
*
|
|
634
|
+
* @remarks
|
|
635
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
636
|
+
*
|
|
637
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
638
|
+
*/
|
|
639
|
+
distPath?: string;
|
|
631
640
|
/**
|
|
632
641
|
* The format of the output files
|
|
633
642
|
*
|
|
@@ -1464,5 +1473,10 @@ type TypeDocPluginContext<TResolvedConfig extends TypeDocPluginResolvedConfig =
|
|
|
1464
1473
|
*/
|
|
1465
1474
|
typedoc: Application;
|
|
1466
1475
|
};
|
|
1476
|
+
declare type __ΩGenerateDocsOptions = any[];
|
|
1477
|
+
declare type __ΩTypeDocPluginOptions = any[];
|
|
1478
|
+
declare type __ΩTypeDocPluginUserConfig = any[];
|
|
1479
|
+
declare type __ΩTypeDocPluginResolvedConfig = any[];
|
|
1480
|
+
declare type __ΩTypeDocPluginContext = any[];
|
|
1467
1481
|
|
|
1468
|
-
export type { GenerateDocsOptions as G, Plugin as P, TypeDocPluginOptions as T, TypeDocPluginContext as a, TypeDocPluginUserConfig as b, TypeDocPluginResolvedConfig as c };
|
|
1482
|
+
export type { GenerateDocsOptions as G, Plugin as P, TypeDocPluginOptions as T, __ΩGenerateDocsOptions as _, TypeDocPluginContext as a, TypeDocPluginUserConfig as b, TypeDocPluginResolvedConfig as c, __ΩTypeDocPluginOptions as d, __ΩTypeDocPluginUserConfig as e, __ΩTypeDocPluginResolvedConfig as f, __ΩTypeDocPluginContext as g };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TypeDocPluginOptions, P as Plugin, a as TypeDocPluginContext } from './index-
|
|
2
|
-
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from './index-
|
|
1
|
+
import { T as TypeDocPluginOptions, P as Plugin, a as TypeDocPluginContext } from './index-BnEU-mki.cjs';
|
|
2
|
+
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from './index-BnEU-mki.cjs';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TypeDocPluginOptions, P as Plugin, a as TypeDocPluginContext } from './index-
|
|
2
|
-
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from './index-
|
|
1
|
+
import { T as TypeDocPluginOptions, P as Plugin, a as TypeDocPluginContext } from './index-BnEU-mki.js';
|
|
2
|
+
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from './index-BnEU-mki.js';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
|
5
5
|
import '@storm-software/config/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-
|
|
1
|
+
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from '../index-BnEU-mki.cjs';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-
|
|
1
|
+
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from '../index-BnEU-mki.js';
|
|
2
2
|
import '@storm-software/build-tools/types';
|
|
3
3
|
import '@storm-software/config-tools/types';
|
|
4
4
|
import '@storm-software/config/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-
|
|
1
|
+
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from '../index-BnEU-mki.cjs';
|
|
2
2
|
import 'typedoc';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-
|
|
1
|
+
export { G as GenerateDocsOptions, a as TypeDocPluginContext, T as TypeDocPluginOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig, _ as __ΩGenerateDocsOptions, g as __ΩTypeDocPluginContext, d as __ΩTypeDocPluginOptions, f as __ΩTypeDocPluginResolvedConfig, e as __ΩTypeDocPluginUserConfig } from '../index-BnEU-mki.js';
|
|
2
2
|
import 'typedoc';
|
|
3
3
|
import '@storm-software/build-tools/types';
|
|
4
4
|
import '@storm-software/config-tools/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-typedoc",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -88,19 +88,19 @@
|
|
|
88
88
|
"files": ["dist/**/*"],
|
|
89
89
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@storm-software/config-tools": "^1.188.
|
|
91
|
+
"@storm-software/config-tools": "^1.188.42",
|
|
92
92
|
"@stryke/fs": "^0.32.13",
|
|
93
93
|
"@stryke/path": "^0.19.2",
|
|
94
|
-
"powerlines": "^0.
|
|
94
|
+
"powerlines": "^0.23.3",
|
|
95
95
|
"typedoc": "0.25.12",
|
|
96
96
|
"typedoc-plugin-markdown": "4.0.0-next.20"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@powerlines/nx": "^0.10.
|
|
100
|
-
"@storm-software/tsup": "^0.2.
|
|
101
|
-
"@types/node": "^
|
|
99
|
+
"@powerlines/nx": "^0.10.20",
|
|
100
|
+
"@storm-software/tsup": "^0.2.40",
|
|
101
|
+
"@types/node": "^24.10.1",
|
|
102
102
|
"tsup": "8.4.0"
|
|
103
103
|
},
|
|
104
104
|
"publishConfig": { "access": "public" },
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
106
106
|
}
|