@forsakringskassan/docs-generator 2.28.10 → 2.28.11

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.mjs CHANGED
@@ -4,8 +4,8 @@ const require = $createRequire(import.meta.url);
4
4
 
5
5
  import fs from 'node:fs/promises';
6
6
  import path from 'node:path/posix';
7
- import { g as globSync, m as minimatch, M as MarkdownIt, d as dedent, e as closest, f as distance, h as fm, i as isCI, j as glob, k as moduleImporter, l as cliProgress, t as tinylr, w as watch, n as createInstance, o as fse } from './vendor-B8uiqaoK.mjs';
8
- import { g as generateId, p as parseInfostring, i as isDocumentPage, n as normalizePath, a as getFingerprint, h as hasTag, f as findTag, b as getOutputFilePath, d as htmlencode, e as exampleWorkerUrl, c as createMarkdownRenderer, j as generateExample } from './create-markdown-renderer-CyfvyYyU.mjs';
7
+ import { g as globSync, m as minimatch, M as MarkdownIt, d as dedent, e as closest, f as distance, h as fm, i as isCI, j as glob, k as moduleImporter, l as cliProgress, t as tinylr, w as watch, n as createInstance, o as fse } from './vendor-CMzqoPR8.mjs';
8
+ import { g as generateId, p as parseInfostring, i as isDocumentPage, n as normalizePath, a as getFingerprint, h as hasTag, f as findTag, b as getOutputFilePath, d as htmlencode, e as exampleWorkerUrl, c as createMarkdownRenderer, j as generateExample } from './create-markdown-renderer-DcyK76t5.mjs';
9
9
  import path$1 from 'node:path';
10
10
  import require$$1 from 'crypto';
11
11
  import 'node:crypto';
@@ -47,7 +47,7 @@ import 'tls';
47
47
  import 'tty';
48
48
  import 'querystring';
49
49
  import 'vue';
50
- import './vue3-BnNvoOYe.mjs';
50
+ import './vue3-CprzF_70.mjs';
51
51
 
52
52
  function toArray$2(value) {
53
53
  return Array.isArray(value) ? value : [value];
package/dist/markdown.mjs CHANGED
@@ -2,8 +2,8 @@ import { createRequire as $createRequire } from "node:module";
2
2
 
3
3
  const require = $createRequire(import.meta.url);
4
4
 
5
- export { S as SoftError, c as createMarkdownRenderer } from './create-markdown-renderer-CyfvyYyU.mjs';
6
- import './vendor-B8uiqaoK.mjs';
5
+ export { S as SoftError, c as createMarkdownRenderer } from './create-markdown-renderer-DcyK76t5.mjs';
6
+ import './vendor-CMzqoPR8.mjs';
7
7
  import 'node:url';
8
8
  import 'node:path';
9
9
  import 'fs';
@@ -37,5 +37,5 @@ import 'node:path/posix';
37
37
  import 'node:crypto';
38
38
  import 'node:child_process';
39
39
  import 'vue';
40
- import './vue3-BnNvoOYe.mjs';
40
+ import './vue3-CprzF_70.mjs';
41
41
  //# sourceMappingURL=markdown.mjs.map
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.9"
8
+ "packageVersion": "7.52.10"
9
9
  }
10
10
  ]
11
11
  }
@@ -22652,7 +22652,8 @@ function requireStat () {
22652
22652
  }
22653
22653
 
22654
22654
  function areIdentical (srcStat, destStat) {
22655
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
22655
+ // stat.dev can be 0n on windows when node version >= 22.x.x
22656
+ return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
22656
22657
  }
22657
22658
 
22658
22659
  // return true if dest is a subdir of src, otherwise false.
@@ -25059,7 +25060,7 @@ class Interpolator {
25059
25060
  };
25060
25061
  this.regexp = getOrResetRegExp(this.regexp, `${this.prefix}(.+?)${this.suffix}`);
25061
25062
  this.regexpUnescape = getOrResetRegExp(this.regexpUnescape, `${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`);
25062
- this.nestingRegexp = getOrResetRegExp(this.nestingRegexp, `${this.nestingPrefix}(.+?)${this.nestingSuffix}`);
25063
+ this.nestingRegexp = getOrResetRegExp(this.nestingRegexp, `${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`);
25063
25064
  }
25064
25065
  interpolate(str, data, lng, options) {
25065
25066
  let match;
@@ -56131,4 +56132,4 @@ var srcExports = requireSrc();
56131
56132
  var tinylr = /*@__PURE__*/getDefaultExportFromCjs(srcExports);
56132
56133
 
56133
56134
  export { HighlightJS as H, MarkdownIt as M, createTwoFilesPatch as a, deflist_plugin as b, commonjsRequire as c, dedent as d, closest as e, distance as f, globSync as g, fm as h, isCI as i, glob as j, moduleImporter as k, cliProgress as l, minimatch as m, createInstance as n, fse as o, tinylr as t, watch$1 as w };
56134
- //# sourceMappingURL=vendor-B8uiqaoK.mjs.map
56135
+ //# sourceMappingURL=vendor-CMzqoPR8.mjs.map