@forsakringskassan/docs-generator 3.9.0 → 3.10.1
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/{create-markdown-renderer-D5BdKyep.mjs → create-markdown-renderer-CXtEyRCU.mjs} +4 -4
- package/dist/{create-markdown-renderer-D5BdKyep.mjs.map → create-markdown-renderer-CXtEyRCU.mjs.map} +1 -1
- package/dist/{format-code.worker-CB5zyf9p.mjs → format-code.worker-BsG38cNK.mjs} +2 -2
- package/dist/{format-code.worker-CB5zyf9p.mjs.map → format-code.worker-BsG38cNK.mjs.map} +1 -1
- package/dist/index.d.mts +27 -0
- package/dist/index.mjs +381 -153
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +2 -2
- package/dist/{vendor-DqIMfP3a.mjs → vendor-DPuGyhL4.mjs} +10652 -10652
- package/dist/{vendor-DqIMfP3a.mjs.map → vendor-DPuGyhL4.mjs.map} +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { createRequire as $createRequire } from "node:module";
|
|
|
2
2
|
|
|
3
3
|
const require = $createRequire(import.meta.url);
|
|
4
4
|
|
|
5
|
-
import { r as runAsWorker, f as format2, a as resolveConfig } from './vendor-
|
|
5
|
+
import { r as runAsWorker, f as format2, a as resolveConfig } from './vendor-DPuGyhL4.mjs';
|
|
6
6
|
import 'node:url';
|
|
7
7
|
import 'node:path';
|
|
8
8
|
import 'fs';
|
|
@@ -54,4 +54,4 @@ async function formatCode(source, filepath) {
|
|
|
54
54
|
runAsWorker(formatCode);
|
|
55
55
|
|
|
56
56
|
export { formatCode };
|
|
57
|
-
//# sourceMappingURL=format-code.worker-
|
|
57
|
+
//# sourceMappingURL=format-code.worker-BsG38cNK.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"format-code.worker-
|
|
1
|
+
{"version":3,"file":"format-code.worker-BsG38cNK.mjs","sources":["../src/utils/format-code.worker.ts"],"sourcesContent":["import { type Options, format as prettier, resolveConfig } from \"prettier\";\nimport { runAsWorker } from \"synckit\";\n\nconst configCache = new Map<string, Options | null>();\n\nasync function getConfig(filepath: string): Promise<Options | null> {\n const cached = configCache.get(filepath);\n if (cached !== undefined) {\n return cached;\n }\n const options = await resolveConfig(filepath);\n configCache.set(filepath, options);\n return options;\n}\n\n/**\n * @internal\n */\nexport async function formatCode(\n source: string,\n filepath: string,\n): Promise<string> {\n const options = await getConfig(filepath);\n const formatted = await prettier(source, { ...options, filepath });\n return formatted.trim();\n}\n\n/* eslint-disable-next-line unicorn/no-top-level-side-effects -- required for worker to function */\nrunAsWorker(formatCode);\n"],"names":["prettier"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAM,WAAA,uBAAkB,GAAA,EAA4B;AAEpD,eAAe,UAAU,QAAA,EAA2C;AAChE,EAAA,MAAM,MAAA,GAAS,WAAA,CAAY,GAAA,CAAI,QAAQ,CAAA;AACvC,EAAA,IAAI,WAAW,MAAA,EAAW;AACtB,IAAA,OAAO,MAAA;AAAA,EACX;AACA,EAAA,MAAM,OAAA,GAAU,MAAM,aAAA,CAAc,QAAQ,CAAA;AAC5C,EAAA,WAAA,CAAY,GAAA,CAAI,UAAU,OAAO,CAAA;AACjC,EAAA,OAAO,OAAA;AACX;AAKA,eAAsB,UAAA,CAClB,QACA,QAAA,EACe;AACf,EAAA,MAAM,OAAA,GAAU,MAAM,SAAA,CAAU,QAAQ,CAAA;AACxC,EAAA,MAAM,SAAA,GAAY,MAAMA,OAAA,CAAS,MAAA,EAAQ,EAAE,GAAG,OAAA,EAAS,UAAU,CAAA;AACjE,EAAA,OAAO,UAAU,IAAA,EAAK;AAC1B;AAGA,WAAA,CAAY,UAAU,CAAA;;"}
|
package/dist/index.d.mts
CHANGED
|
@@ -213,6 +213,25 @@ export declare interface ExtractExamplesOptions extends ProcessorOptions {
|
|
|
213
213
|
*/
|
|
214
214
|
export declare function extractExamplesProcessor(options: ExtractExamplesOptions): Processor;
|
|
215
215
|
|
|
216
|
+
/**
|
|
217
|
+
* Options for `extractMarkdownProcessor`.
|
|
218
|
+
*
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export declare interface ExtractMarkdownOptions extends ProcessorOptions {
|
|
222
|
+
/**
|
|
223
|
+
* Folder to write docs to.
|
|
224
|
+
*/
|
|
225
|
+
outputFolder: string;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Processor to extract and write examples to separate files.
|
|
230
|
+
*
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export declare function extractMarkdownProcessor(options: ExtractMarkdownOptions): Processor;
|
|
234
|
+
|
|
216
235
|
/**
|
|
217
236
|
* @public
|
|
218
237
|
*/
|
|
@@ -720,6 +739,8 @@ export declare interface ProcessorContext {
|
|
|
720
739
|
readonly sidenav: NavigationSection;
|
|
721
740
|
readonly resources: ResourceTask[];
|
|
722
741
|
readonly outputFolder: string;
|
|
742
|
+
setState<K extends keyof StateMap>(key: K, value: StateMap[K]): void;
|
|
743
|
+
getState<K extends keyof StateMap>(key: K): StateMap[K] | null;
|
|
723
744
|
addDocument(document: Document_2 | Document_2[]): void;
|
|
724
745
|
addVendorAsset(asset: VendorAsset | VendorAsset[]): void;
|
|
725
746
|
/**
|
|
@@ -926,6 +947,12 @@ export declare interface SourceUrlProcessorOptions extends ProcessorOptions {
|
|
|
926
947
|
readonly componentFileExtension?: string;
|
|
927
948
|
}
|
|
928
949
|
|
|
950
|
+
/**
|
|
951
|
+
* @public
|
|
952
|
+
*/
|
|
953
|
+
export declare interface StateMap {
|
|
954
|
+
}
|
|
955
|
+
|
|
929
956
|
/* Excluded from this release type: TemplateBlockData */
|
|
930
957
|
|
|
931
958
|
/**
|