@forsakringskassan/docs-generator 2.33.0 → 2.34.0

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.
@@ -13083,7 +13083,7 @@ const entToType = (s) => s.isFile() ? IFREG
13083
13083
  : s.isFIFO() ? IFIFO
13084
13084
  : UNKNOWN;
13085
13085
  // normalize unicode path names
13086
- const normalizeCache = new Map();
13086
+ const normalizeCache = new LRUCache({ max: 2 ** 12 });
13087
13087
  const normalize = (s) => {
13088
13088
  const c = normalizeCache.get(s);
13089
13089
  if (c)
@@ -13092,7 +13092,7 @@ const normalize = (s) => {
13092
13092
  normalizeCache.set(s, n);
13093
13093
  return n;
13094
13094
  };
13095
- const normalizeNocaseCache = new Map();
13095
+ const normalizeNocaseCache = new LRUCache({ max: 2 ** 12 });
13096
13096
  const normalizeNocase = (s) => {
13097
13097
  const c = normalizeNocaseCache.get(s);
13098
13098
  if (c)
@@ -13281,6 +13281,7 @@ class PathBase {
13281
13281
  get parentPath() {
13282
13282
  return (this.parent || this).fullpath();
13283
13283
  }
13284
+ /* c8 ignore start */
13284
13285
  /**
13285
13286
  * Deprecated alias for Dirent['parentPath'] Somewhat counterintuitively,
13286
13287
  * this property refers to the *parent* path, not the path object itself.
@@ -13290,6 +13291,7 @@ class PathBase {
13290
13291
  get path() {
13291
13292
  return this.parentPath;
13292
13293
  }
13294
+ /* c8 ignore stop */
13293
13295
  /**
13294
13296
  * Do not create new Path objects directly. They should always be accessed
13295
13297
  * via the PathScurry class or other methods on the Path class.
@@ -18083,6 +18085,22 @@ function requireLoader () {
18083
18085
  );
18084
18086
  }
18085
18087
 
18088
+ // set a property of a literal object, while protecting against prototype pollution,
18089
+ // see https://github.com/nodeca/js-yaml/issues/164 for more details
18090
+ function setProperty(object, key, value) {
18091
+ // used for this specific key only because Object.defineProperty is slow
18092
+ if (key === '__proto__') {
18093
+ Object.defineProperty(object, key, {
18094
+ configurable: true,
18095
+ enumerable: true,
18096
+ writable: true,
18097
+ value: value
18098
+ });
18099
+ } else {
18100
+ object[key] = value;
18101
+ }
18102
+ }
18103
+
18086
18104
  var simpleEscapeCheck = new Array(256); // integer, for fast access
18087
18105
  var simpleEscapeMap = new Array(256);
18088
18106
  for (var i = 0; i < 256; i++) {
@@ -18240,7 +18258,7 @@ function requireLoader () {
18240
18258
  key = sourceKeys[index];
18241
18259
 
18242
18260
  if (!_hasOwnProperty.call(destination, key)) {
18243
- destination[key] = source[key];
18261
+ setProperty(destination, key, source[key]);
18244
18262
  overridableKeys[key] = true;
18245
18263
  }
18246
18264
  }
@@ -18296,7 +18314,7 @@ function requireLoader () {
18296
18314
  state.position = startPos || state.position;
18297
18315
  throwError(state, 'duplicated mapping key');
18298
18316
  }
18299
- _result[keyNode] = valueNode;
18317
+ setProperty(_result, keyNode, valueNode);
18300
18318
  delete overridableKeys[keyNode];
18301
18319
  }
18302
18320
 
@@ -21122,22 +21140,22 @@ var hasRequiredCiInfo;
21122
21140
  function requireCiInfo () {
21123
21141
  if (hasRequiredCiInfo) return ciInfo;
21124
21142
  hasRequiredCiInfo = 1;
21125
- (function (exports) {
21143
+ (function (exports$1) {
21126
21144
 
21127
21145
  const vendors = require$$0;
21128
21146
 
21129
21147
  const env = process.env;
21130
21148
 
21131
21149
  // Used for testing only
21132
- Object.defineProperty(exports, '_vendors', {
21150
+ Object.defineProperty(exports$1, '_vendors', {
21133
21151
  value: vendors.map(function (v) {
21134
21152
  return v.constant
21135
21153
  })
21136
21154
  });
21137
21155
 
21138
- exports.name = null;
21139
- exports.isPR = null;
21140
- exports.id = null;
21156
+ exports$1.name = null;
21157
+ exports$1.isPR = null;
21158
+ exports$1.id = null;
21141
21159
 
21142
21160
  vendors.forEach(function (vendor) {
21143
21161
  const envs = Array.isArray(vendor.env) ? vendor.env : [vendor.env];
@@ -21145,18 +21163,18 @@ function requireCiInfo () {
21145
21163
  return checkEnv(obj)
21146
21164
  });
21147
21165
 
21148
- exports[vendor.constant] = isCI;
21166
+ exports$1[vendor.constant] = isCI;
21149
21167
 
21150
21168
  if (!isCI) {
21151
21169
  return
21152
21170
  }
21153
21171
 
21154
- exports.name = vendor.name;
21155
- exports.isPR = checkPR(vendor);
21156
- exports.id = vendor.constant;
21172
+ exports$1.name = vendor.name;
21173
+ exports$1.isPR = checkPR(vendor);
21174
+ exports$1.id = vendor.constant;
21157
21175
  });
21158
21176
 
21159
- exports.isCI = !!(
21177
+ exports$1.isCI = !!(
21160
21178
  env.CI !== 'false' && // Bypass all checks if CI env is explicitly set to 'false'
21161
21179
  (env.BUILD_ID || // Jenkins, Cloudbees
21162
21180
  env.BUILD_NUMBER || // Jenkins, TeamCity
@@ -21167,7 +21185,7 @@ function requireCiInfo () {
21167
21185
  env.CI_NAME || // Codeship and others
21168
21186
  env.CONTINUOUS_INTEGRATION || // Travis CI, Cirrus CI
21169
21187
  env.RUN_ID || // TaskCluster, dsari
21170
- exports.name ||
21188
+ exports$1.name ||
21171
21189
  false)
21172
21190
  );
21173
21191
 
@@ -22273,7 +22291,7 @@ var hasRequiredFs;
22273
22291
  function requireFs () {
22274
22292
  if (hasRequiredFs) return fs;
22275
22293
  hasRequiredFs = 1;
22276
- (function (exports) {
22294
+ (function (exports$1) {
22277
22295
  // This is adapted from https://github.com/normalize/mz
22278
22296
  // Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
22279
22297
  const u = requireUniversalify().fromCallback;
@@ -22328,16 +22346,16 @@ function requireFs () {
22328
22346
  });
22329
22347
 
22330
22348
  // Export cloned fs:
22331
- Object.assign(exports, fs);
22349
+ Object.assign(exports$1, fs);
22332
22350
 
22333
22351
  // Universalify async methods:
22334
22352
  api.forEach(method => {
22335
- exports[method] = u(fs[method]);
22353
+ exports$1[method] = u(fs[method]);
22336
22354
  });
22337
22355
 
22338
22356
  // We differ from mz/fs in that we still ship the old, broken, fs.exists()
22339
22357
  // since we are a drop-in replacement for the native module
22340
- exports.exists = function (filename, callback) {
22358
+ exports$1.exists = function (filename, callback) {
22341
22359
  if (typeof callback === 'function') {
22342
22360
  return fs.exists(filename, callback)
22343
22361
  }
@@ -22348,7 +22366,7 @@ function requireFs () {
22348
22366
 
22349
22367
  // fs.read(), fs.write(), fs.readv(), & fs.writev() need special treatment due to multiple callback args
22350
22368
 
22351
- exports.read = function (fd, buffer, offset, length, position, callback) {
22369
+ exports$1.read = function (fd, buffer, offset, length, position, callback) {
22352
22370
  if (typeof callback === 'function') {
22353
22371
  return fs.read(fd, buffer, offset, length, position, callback)
22354
22372
  }
@@ -22365,7 +22383,7 @@ function requireFs () {
22365
22383
  // OR
22366
22384
  // fs.write(fd, string[, position[, encoding]], callback)
22367
22385
  // We need to handle both cases, so we use ...args
22368
- exports.write = function (fd, buffer, ...args) {
22386
+ exports$1.write = function (fd, buffer, ...args) {
22369
22387
  if (typeof args[args.length - 1] === 'function') {
22370
22388
  return fs.write(fd, buffer, ...args)
22371
22389
  }
@@ -22381,7 +22399,7 @@ function requireFs () {
22381
22399
  // Function signature is
22382
22400
  // s.readv(fd, buffers[, position], callback)
22383
22401
  // We need to handle the optional arg, so we use ...args
22384
- exports.readv = function (fd, buffers, ...args) {
22402
+ exports$1.readv = function (fd, buffers, ...args) {
22385
22403
  if (typeof args[args.length - 1] === 'function') {
22386
22404
  return fs.readv(fd, buffers, ...args)
22387
22405
  }
@@ -22397,7 +22415,7 @@ function requireFs () {
22397
22415
  // Function signature is
22398
22416
  // s.writev(fd, buffers[, position], callback)
22399
22417
  // We need to handle the optional arg, so we use ...args
22400
- exports.writev = function (fd, buffers, ...args) {
22418
+ exports$1.writev = function (fd, buffers, ...args) {
22401
22419
  if (typeof args[args.length - 1] === 'function') {
22402
22420
  return fs.writev(fd, buffers, ...args)
22403
22421
  }
@@ -22412,7 +22430,7 @@ function requireFs () {
22412
22430
 
22413
22431
  // fs.realpath.native sometimes not available if fs is monkey-patched
22414
22432
  if (typeof fs.realpath.native === 'function') {
22415
- exports.realpath.native = u(fs.realpath.native);
22433
+ exports$1.realpath.native = u(fs.realpath.native);
22416
22434
  } else {
22417
22435
  process.emitWarning(
22418
22436
  'fs.realpath.native is not a function. Is fs being monkey-patched?',
@@ -47046,7 +47064,7 @@ var hasRequiredSafeBuffer;
47046
47064
  function requireSafeBuffer () {
47047
47065
  if (hasRequiredSafeBuffer) return safeBuffer.exports;
47048
47066
  hasRequiredSafeBuffer = 1;
47049
- (function (module, exports) {
47067
+ (function (module, exports$1) {
47050
47068
  /* eslint-disable node/no-deprecated-api */
47051
47069
  var buffer = require$$0$5;
47052
47070
  var Buffer = buffer.Buffer;
@@ -47061,8 +47079,8 @@ function requireSafeBuffer () {
47061
47079
  module.exports = buffer;
47062
47080
  } else {
47063
47081
  // Copy properties from require('buffer')
47064
- copyProps(buffer, exports);
47065
- exports.Buffer = SafeBuffer;
47082
+ copyProps(buffer, exports$1);
47083
+ exports$1.Buffer = SafeBuffer;
47066
47084
  }
47067
47085
 
47068
47086
  function SafeBuffer (arg, encodingOrOffset, length) {
@@ -51151,7 +51169,7 @@ var hasRequiredBrowser;
51151
51169
  function requireBrowser () {
51152
51170
  if (hasRequiredBrowser) return browser.exports;
51153
51171
  hasRequiredBrowser = 1;
51154
- (function (module, exports) {
51172
+ (function (module, exports$1) {
51155
51173
 
51156
51174
  function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
51157
51175
 
@@ -51160,17 +51178,17 @@ function requireBrowser () {
51160
51178
  /**
51161
51179
  * This is the web browser implementation of `debug()`.
51162
51180
  */
51163
- exports.log = log;
51164
- exports.formatArgs = formatArgs;
51165
- exports.save = save;
51166
- exports.load = load;
51167
- exports.useColors = useColors;
51168
- exports.storage = localstorage();
51181
+ exports$1.log = log;
51182
+ exports$1.formatArgs = formatArgs;
51183
+ exports$1.save = save;
51184
+ exports$1.load = load;
51185
+ exports$1.useColors = useColors;
51186
+ exports$1.storage = localstorage();
51169
51187
  /**
51170
51188
  * Colors.
51171
51189
  */
51172
51190
 
51173
- exports.colors = ['#0000CC', '#0000FF', '#0033CC', '#0033FF', '#0066CC', '#0066FF', '#0099CC', '#0099FF', '#00CC00', '#00CC33', '#00CC66', '#00CC99', '#00CCCC', '#00CCFF', '#3300CC', '#3300FF', '#3333CC', '#3333FF', '#3366CC', '#3366FF', '#3399CC', '#3399FF', '#33CC00', '#33CC33', '#33CC66', '#33CC99', '#33CCCC', '#33CCFF', '#6600CC', '#6600FF', '#6633CC', '#6633FF', '#66CC00', '#66CC33', '#9900CC', '#9900FF', '#9933CC', '#9933FF', '#99CC00', '#99CC33', '#CC0000', '#CC0033', '#CC0066', '#CC0099', '#CC00CC', '#CC00FF', '#CC3300', '#CC3333', '#CC3366', '#CC3399', '#CC33CC', '#CC33FF', '#CC6600', '#CC6633', '#CC9900', '#CC9933', '#CCCC00', '#CCCC33', '#FF0000', '#FF0033', '#FF0066', '#FF0099', '#FF00CC', '#FF00FF', '#FF3300', '#FF3333', '#FF3366', '#FF3399', '#FF33CC', '#FF33FF', '#FF6600', '#FF6633', '#FF9900', '#FF9933', '#FFCC00', '#FFCC33'];
51191
+ exports$1.colors = ['#0000CC', '#0000FF', '#0033CC', '#0033FF', '#0066CC', '#0066FF', '#0099CC', '#0099FF', '#00CC00', '#00CC33', '#00CC66', '#00CC99', '#00CCCC', '#00CCFF', '#3300CC', '#3300FF', '#3333CC', '#3333FF', '#3366CC', '#3366FF', '#3399CC', '#3399FF', '#33CC00', '#33CC33', '#33CC66', '#33CC99', '#33CCCC', '#33CCFF', '#6600CC', '#6600FF', '#6633CC', '#6633FF', '#66CC00', '#66CC33', '#9900CC', '#9900FF', '#9933CC', '#9933FF', '#99CC00', '#99CC33', '#CC0000', '#CC0033', '#CC0066', '#CC0099', '#CC00CC', '#CC00FF', '#CC3300', '#CC3333', '#CC3366', '#CC3399', '#CC33CC', '#CC33FF', '#CC6600', '#CC6633', '#CC9900', '#CC9933', '#CCCC00', '#CCCC33', '#FF0000', '#FF0033', '#FF0066', '#FF0099', '#FF00CC', '#FF00FF', '#FF3300', '#FF3333', '#FF3366', '#FF3399', '#FF33CC', '#FF33FF', '#FF6600', '#FF6633', '#FF9900', '#FF9933', '#FFCC00', '#FFCC33'];
51174
51192
  /**
51175
51193
  * Currently only WebKit-based Web Inspectors, Firefox >= v31,
51176
51194
  * and the Firebug extension (any Firefox version) are known
@@ -51263,9 +51281,9 @@ function requireBrowser () {
51263
51281
  function save(namespaces) {
51264
51282
  try {
51265
51283
  if (namespaces) {
51266
- exports.storage.setItem('debug', namespaces);
51284
+ exports$1.storage.setItem('debug', namespaces);
51267
51285
  } else {
51268
- exports.storage.removeItem('debug');
51286
+ exports$1.storage.removeItem('debug');
51269
51287
  }
51270
51288
  } catch (error) {// Swallow
51271
51289
  // XXX (@Qix-) should we be logging these?
@@ -51283,7 +51301,7 @@ function requireBrowser () {
51283
51301
  var r;
51284
51302
 
51285
51303
  try {
51286
- r = exports.storage.getItem('debug');
51304
+ r = exports$1.storage.getItem('debug');
51287
51305
  } catch (error) {} // Swallow
51288
51306
  // XXX (@Qix-) should we be logging these?
51289
51307
  // If debug isn't set in LS, and we're in Electron, try to load $DEBUG
@@ -51317,7 +51335,7 @@ function requireBrowser () {
51317
51335
  }
51318
51336
  }
51319
51337
 
51320
- module.exports = requireCommon()(exports);
51338
+ module.exports = requireCommon()(exports$1);
51321
51339
  var formatters = module.exports.formatters;
51322
51340
  /**
51323
51341
  * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.
@@ -51500,7 +51518,7 @@ var hasRequiredNode;
51500
51518
  function requireNode () {
51501
51519
  if (hasRequiredNode) return node.exports;
51502
51520
  hasRequiredNode = 1;
51503
- (function (module, exports) {
51521
+ (function (module, exports$1) {
51504
51522
 
51505
51523
  /**
51506
51524
  * Module dependencies.
@@ -51513,17 +51531,17 @@ function requireNode () {
51513
51531
  */
51514
51532
 
51515
51533
 
51516
- exports.init = init;
51517
- exports.log = log;
51518
- exports.formatArgs = formatArgs;
51519
- exports.save = save;
51520
- exports.load = load;
51521
- exports.useColors = useColors;
51534
+ exports$1.init = init;
51535
+ exports$1.log = log;
51536
+ exports$1.formatArgs = formatArgs;
51537
+ exports$1.save = save;
51538
+ exports$1.load = load;
51539
+ exports$1.useColors = useColors;
51522
51540
  /**
51523
51541
  * Colors.
51524
51542
  */
51525
51543
 
51526
- exports.colors = [6, 2, 3, 4, 5, 1];
51544
+ exports$1.colors = [6, 2, 3, 4, 5, 1];
51527
51545
 
51528
51546
  try {
51529
51547
  // Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
@@ -51531,7 +51549,7 @@ function requireNode () {
51531
51549
  var supportsColor = requireSupportsColor();
51532
51550
 
51533
51551
  if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
51534
- exports.colors = [20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221];
51552
+ exports$1.colors = [20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221];
51535
51553
  }
51536
51554
  } catch (error) {} // Swallow - we only care if `supports-color` is available; it doesn't have to be.
51537
51555
 
@@ -51542,7 +51560,7 @@ function requireNode () {
51542
51560
  */
51543
51561
 
51544
51562
 
51545
- exports.inspectOpts = Object.keys(process.env).filter(function (key) {
51563
+ exports$1.inspectOpts = Object.keys(process.env).filter(function (key) {
51546
51564
  return /^debug_/i.test(key);
51547
51565
  }).reduce(function (obj, key) {
51548
51566
  // Camel-case
@@ -51570,7 +51588,7 @@ function requireNode () {
51570
51588
  */
51571
51589
 
51572
51590
  function useColors() {
51573
- return 'colors' in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
51591
+ return 'colors' in exports$1.inspectOpts ? Boolean(exports$1.inspectOpts.colors) : tty.isatty(process.stderr.fd);
51574
51592
  }
51575
51593
  /**
51576
51594
  * Adds ANSI color escape codes if enabled.
@@ -51595,7 +51613,7 @@ function requireNode () {
51595
51613
  }
51596
51614
 
51597
51615
  function getDate() {
51598
- if (exports.inspectOpts.hideDate) {
51616
+ if (exports$1.inspectOpts.hideDate) {
51599
51617
  return '';
51600
51618
  }
51601
51619
 
@@ -51647,14 +51665,14 @@ function requireNode () {
51647
51665
 
51648
51666
  function init(debug) {
51649
51667
  debug.inspectOpts = {};
51650
- var keys = Object.keys(exports.inspectOpts);
51668
+ var keys = Object.keys(exports$1.inspectOpts);
51651
51669
 
51652
51670
  for (var i = 0; i < keys.length; i++) {
51653
- debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
51671
+ debug.inspectOpts[keys[i]] = exports$1.inspectOpts[keys[i]];
51654
51672
  }
51655
51673
  }
51656
51674
 
51657
- module.exports = requireCommon()(exports);
51675
+ module.exports = requireCommon()(exports$1);
51658
51676
  var formatters = module.exports.formatters;
51659
51677
  /**
51660
51678
  * Map %o to `util.inspect()`, all on a single line.
@@ -51703,9 +51721,9 @@ var hasRequiredClient;
51703
51721
  function requireClient () {
51704
51722
  if (hasRequiredClient) return client$2.exports;
51705
51723
  hasRequiredClient = 1;
51706
- (function (module, exports) {
51724
+ (function (module, exports$1) {
51707
51725
 
51708
- Object.defineProperty(exports, "__esModule", {
51726
+ Object.defineProperty(exports$1, "__esModule", {
51709
51727
  value: true
51710
51728
  });
51711
51729
 
@@ -51846,8 +51864,8 @@ function requireClient () {
51846
51864
  return Client;
51847
51865
  }(_events2.default.EventEmitter);
51848
51866
 
51849
- exports.default = Client;
51850
- module.exports = exports['default'];
51867
+ exports$1.default = Client;
51868
+ module.exports = exports$1['default'];
51851
51869
  } (client$2, client$2.exports));
51852
51870
  return client$2.exports;
51853
51871
  }
@@ -55785,9 +55803,9 @@ var hasRequiredServer;
55785
55803
  function requireServer () {
55786
55804
  if (hasRequiredServer) return server$1.exports;
55787
55805
  hasRequiredServer = 1;
55788
- (function (module, exports) {
55806
+ (function (module, exports$1) {
55789
55807
 
55790
- Object.defineProperty(exports, "__esModule", {
55808
+ Object.defineProperty(exports$1, "__esModule", {
55791
55809
  value: true
55792
55810
  });
55793
55811
 
@@ -56179,8 +56197,8 @@ function requireServer () {
56179
56197
  return Server;
56180
56198
  }(_events2.default.EventEmitter);
56181
56199
 
56182
- exports.default = Server;
56183
- module.exports = exports['default'];
56200
+ exports$1.default = Server;
56201
+ module.exports = exports$1['default'];
56184
56202
  } (server$1, server$1.exports));
56185
56203
  return server$1.exports;
56186
56204
  }
@@ -56190,9 +56208,9 @@ var hasRequiredSrc;
56190
56208
  function requireSrc () {
56191
56209
  if (hasRequiredSrc) return src$1.exports;
56192
56210
  hasRequiredSrc = 1;
56193
- (function (module, exports) {
56211
+ (function (module, exports$1) {
56194
56212
 
56195
- Object.defineProperty(exports, "__esModule", {
56213
+ Object.defineProperty(exports$1, "__esModule", {
56196
56214
  value: true
56197
56215
  });
56198
56216
 
@@ -56211,7 +56229,7 @@ function requireSrc () {
56211
56229
  // Need to keep track of LR servers when notifying
56212
56230
  var servers = [];
56213
56231
 
56214
- exports.default = tinylr;
56232
+ exports$1.default = tinylr;
56215
56233
 
56216
56234
  // Expose Server / Client objects
56217
56235
 
@@ -56250,7 +56268,7 @@ function requireSrc () {
56250
56268
  });
56251
56269
  done();
56252
56270
  }
56253
- module.exports = exports['default'];
56271
+ module.exports = exports$1['default'];
56254
56272
  } (src$1, src$1.exports));
56255
56273
  return src$1.exports;
56256
56274
  }
@@ -56259,4 +56277,4 @@ var srcExports = requireSrc();
56259
56277
  var tinylr = /*@__PURE__*/getDefaultExportFromCjs(srcExports);
56260
56278
 
56261
56279
  export { HighlightJS as H, MarkdownIt as M, deflist_plugin as a, closest as b, createTwoFilesPatch as c, dedent as d, distance as e, fm as f, globSync as g, glob as h, isCI as i, moduleImporter as j, cliProgress as k, createInstance as l, minimatch as m, fse as n, inter as o, tinylr as t, watch$1 as w };
56262
- //# sourceMappingURL=vendor-ClKMZWQO.mjs.map
56280
+ //# sourceMappingURL=vendor-BPf0gRBB.mjs.map