@powerlines/plugin-typedoc 0.10.10 → 0.10.12
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-B7n5dnGG.d.cts → index-Bbiv6Cbl.d.cts} +25 -1
- package/dist/{index-B7n5dnGG.d.ts → index-Bbiv6Cbl.d.ts} +25 -1
- package/dist/src/index.d.cts +2 -2
- package/dist/src/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 +4 -4
|
@@ -10,7 +10,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
10
10
|
import { Jiti } from 'jiti';
|
|
11
11
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
12
12
|
import { Range } from 'semver';
|
|
13
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
13
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
14
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
15
15
|
import ts from 'typescript';
|
|
16
16
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -937,6 +937,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
937
937
|
* A logging function for the Powerlines engine
|
|
938
938
|
*/
|
|
939
939
|
log: LogFn;
|
|
940
|
+
/**
|
|
941
|
+
* A logging function for fatal messages
|
|
942
|
+
*/
|
|
943
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
944
|
+
/**
|
|
945
|
+
* A logging function for error messages
|
|
946
|
+
*/
|
|
947
|
+
error: (message: string | UnpluginMessage) => void;
|
|
948
|
+
/**
|
|
949
|
+
* A logging function for warning messages
|
|
950
|
+
*/
|
|
951
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
952
|
+
/**
|
|
953
|
+
* A logging function for informational messages
|
|
954
|
+
*/
|
|
955
|
+
info: (message: string | UnpluginMessage) => void;
|
|
956
|
+
/**
|
|
957
|
+
* A logging function for debug messages
|
|
958
|
+
*/
|
|
959
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
960
|
+
/**
|
|
961
|
+
* A logging function for trace messages
|
|
962
|
+
*/
|
|
963
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
940
964
|
/**
|
|
941
965
|
* The metadata information
|
|
942
966
|
*/
|
|
@@ -10,7 +10,7 @@ import { PackageJson } from '@stryke/types/package-json';
|
|
|
10
10
|
import { Jiti } from 'jiti';
|
|
11
11
|
import { ParserOptions, ParseResult } from 'oxc-parser';
|
|
12
12
|
import { Range } from 'semver';
|
|
13
|
-
import { UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
13
|
+
import { UnpluginMessage, UnpluginContext, UnpluginBuildContext, TransformResult, ExternalIdResult, HookFilter, UnpluginOptions } from 'unplugin';
|
|
14
14
|
import { TsConfigJson, CompilerOptions } from '@stryke/types/tsconfig';
|
|
15
15
|
import ts from 'typescript';
|
|
16
16
|
import { PrimitiveJsonValue } from '@stryke/json/types';
|
|
@@ -937,6 +937,30 @@ interface Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> {
|
|
|
937
937
|
* A logging function for the Powerlines engine
|
|
938
938
|
*/
|
|
939
939
|
log: LogFn;
|
|
940
|
+
/**
|
|
941
|
+
* A logging function for fatal messages
|
|
942
|
+
*/
|
|
943
|
+
fatal: (message: string | UnpluginMessage) => void;
|
|
944
|
+
/**
|
|
945
|
+
* A logging function for error messages
|
|
946
|
+
*/
|
|
947
|
+
error: (message: string | UnpluginMessage) => void;
|
|
948
|
+
/**
|
|
949
|
+
* A logging function for warning messages
|
|
950
|
+
*/
|
|
951
|
+
warn: (message: string | UnpluginMessage) => void;
|
|
952
|
+
/**
|
|
953
|
+
* A logging function for informational messages
|
|
954
|
+
*/
|
|
955
|
+
info: (message: string | UnpluginMessage) => void;
|
|
956
|
+
/**
|
|
957
|
+
* A logging function for debug messages
|
|
958
|
+
*/
|
|
959
|
+
debug: (message: string | UnpluginMessage) => void;
|
|
960
|
+
/**
|
|
961
|
+
* A logging function for trace messages
|
|
962
|
+
*/
|
|
963
|
+
trace: (message: string | UnpluginMessage) => void;
|
|
940
964
|
/**
|
|
941
965
|
* The metadata information
|
|
942
966
|
*/
|
package/dist/src/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-Bbiv6Cbl.cjs';
|
|
2
|
+
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-Bbiv6Cbl.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/src/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-Bbiv6Cbl.js';
|
|
2
|
+
export { G as GenerateDocsOptions, c as TypeDocPluginResolvedConfig, b as TypeDocPluginUserConfig } from '../index-Bbiv6Cbl.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 } from '../index-Bbiv6Cbl.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 } from '../index-Bbiv6Cbl.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 } from '../index-Bbiv6Cbl.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 } from '../index-Bbiv6Cbl.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.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -91,16 +91,16 @@
|
|
|
91
91
|
"@storm-software/config-tools": "^1.188.19",
|
|
92
92
|
"@stryke/fs": "^0.32.10",
|
|
93
93
|
"@stryke/path": "^0.18.5",
|
|
94
|
-
"powerlines": "^0.
|
|
94
|
+
"powerlines": "^0.19.0",
|
|
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.
|
|
99
|
+
"@powerlines/nx": "^0.10.4",
|
|
100
100
|
"@storm-software/tsup": "^0.2.17",
|
|
101
101
|
"@types/node": "^22.19.0",
|
|
102
102
|
"tsup": "8.4.0"
|
|
103
103
|
},
|
|
104
104
|
"publishConfig": { "access": "public" },
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "8ee43c2a7eebce6b221aa572553f4296c87fce76"
|
|
106
106
|
}
|