@storm-software/workspace-tools 1.60.8 → 1.60.10

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.
@@ -1,4 +1,3 @@
1
- const require = (await import('node:module')).createRequire(import.meta.url);
2
1
  var __create = Object.create;
3
2
  var __defProp = Object.defineProperty;
4
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -9966,20 +9965,6 @@ var require_source_map_support = __commonJS({
9966
9965
  var require_typescript = __commonJS({
9967
9966
  "node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
9968
9967
  "use strict";
9969
- /*! *****************************************************************************
9970
- Copyright (c) Microsoft Corporation. All rights reserved.
9971
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
9972
- this file except in compliance with the License. You may obtain a copy of the
9973
- License at http://www.apache.org/licenses/LICENSE-2.0
9974
-
9975
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
9976
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9977
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
9978
- MERCHANTABLITY OR NON-INFRINGEMENT.
9979
-
9980
- See the Apache Version 2.0 License for specific language governing permissions
9981
- and limitations under the License.
9982
- ***************************************************************************** */
9983
9968
  var ts9 = (() => {
9984
9969
  var __defProp4 = Object.defineProperty;
9985
9970
  var __getOwnPropNames3 = Object.getOwnPropertyNames;
@@ -210466,7 +210451,6 @@ ${error.message}`;
210466
210451
  exports2.loadYaml = loadYaml2;
210467
210452
  var typescript;
210468
210453
  var loadTsSync = function loadTsSync2(filepath, content) {
210469
- /* istanbul ignore next -- @preserve */
210470
210454
  if (typescript === void 0) {
210471
210455
  typescript = require_typescript();
210472
210456
  }
@@ -210778,7 +210762,6 @@ var require_util3 = __commonJS({
210778
210762
  return Object.fromEntries(Object.entries(options8).filter(([, value]) => value !== void 0));
210779
210763
  }
210780
210764
  exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
210781
- /* istanbul ignore next -- @preserve */
210782
210765
  async function isDirectory2(path14) {
210783
210766
  try {
210784
210767
  const stat2 = await fs_1.promises.stat(path14);
@@ -210791,7 +210774,6 @@ var require_util3 = __commonJS({
210791
210774
  }
210792
210775
  }
210793
210776
  exports2.isDirectory = isDirectory2;
210794
- /* istanbul ignore next -- @preserve */
210795
210777
  function isDirectorySync(path14) {
210796
210778
  try {
210797
210779
  const stat2 = fs_1.default.statSync(path14);
@@ -210908,7 +210890,6 @@ ${[...importStack, fullPath].map((path14, i3) => `${i3 + 1}. ${path14}`).join("\
210908
210890
  let currentDir = startDir;
210909
210891
  while (currentDir !== stopDir) {
210910
210892
  const parentDir = path_1.default.dirname(currentDir);
210911
- /* istanbul ignore if -- @preserve */
210912
210893
  if (parentDir === currentDir) {
210913
210894
  break;
210914
210895
  }
@@ -210920,7 +210901,6 @@ ${[...importStack, fullPath].map((path14, i3) => `${i3 + 1}. ${path14}`).join("\
210920
210901
  };
210921
210902
  exports2.ExplorerBase = ExplorerBase;
210922
210903
  function getExtensionDescription(extension) {
210923
- /* istanbul ignore next -- @preserve */
210924
210904
  return extension ? `extension "${extension}"` : "files without extensions";
210925
210905
  }
210926
210906
  exports2.getExtensionDescription = getExtensionDescription;
@@ -211001,13 +210981,11 @@ var require_Explorer = __commonJS({
211001
210981
  from = path_1.default.resolve(from);
211002
210982
  const dirs = this.#getDirs(from);
211003
210983
  const firstDirIter = await dirs.next();
211004
- /* istanbul ignore if -- @preserve */
211005
210984
  if (firstDirIter.done) {
211006
210985
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211007
210986
  }
211008
210987
  let currentDir = firstDirIter.value;
211009
210988
  const search = async () => {
211010
- /* istanbul ignore if -- @preserve */
211011
210989
  if (await (0, util_js_1.isDirectory)(currentDir.path)) {
211012
210990
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
211013
210991
  try {
@@ -211106,7 +211084,6 @@ var require_Explorer = __commonJS({
211106
211084
  }
211107
211085
  }
211108
211086
  const parentDir = path_1.default.dirname(currentDir);
211109
- /* istanbul ignore if -- @preserve */
211110
211087
  if (parentDir === currentDir) {
211111
211088
  break;
211112
211089
  }
@@ -211162,13 +211139,11 @@ var require_ExplorerSync = __commonJS({
211162
211139
  from = path_1.default.resolve(from);
211163
211140
  const dirs = this.#getDirs(from);
211164
211141
  const firstDirIter = dirs.next();
211165
- /* istanbul ignore if -- @preserve */
211166
211142
  if (firstDirIter.done) {
211167
211143
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211168
211144
  }
211169
211145
  let currentDir = firstDirIter.value;
211170
211146
  const search = () => {
211171
- /* istanbul ignore if -- @preserve */
211172
211147
  if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
211173
211148
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
211174
211149
  try {
@@ -211267,7 +211242,6 @@ var require_ExplorerSync = __commonJS({
211267
211242
  }
211268
211243
  }
211269
211244
  const parentDir = path_1.default.dirname(currentDir);
211270
- /* istanbul ignore if -- @preserve */
211271
211245
  if (parentDir === currentDir) {
211272
211246
  break;
211273
211247
  }
@@ -335370,13 +335344,6 @@ var require_package2 = __commonJS({
335370
335344
  var require_ejs = __commonJS({
335371
335345
  "node_modules/.pnpm/ejs@3.1.9/node_modules/ejs/lib/ejs.js"(exports2) {
335372
335346
  "use strict";
335373
- /**
335374
- * @file Embedded JavaScript templating engine. {@link http://ejs.co}
335375
- * @author Matthew Eernisse <mde@fleegix.org>
335376
- * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
335377
- * @project EJS
335378
- * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
335379
- */
335380
335347
  var fs7 = require("fs");
335381
335348
  var path14 = require("path");
335382
335349
  var utils2 = require_utils5();
@@ -341126,13 +341093,6 @@ var require_rimraf = __commonJS({
341126
341093
  // node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js
341127
341094
  var require_tmp = __commonJS({
341128
341095
  "node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js"(exports2, module2) {
341129
- /*!
341130
- * Tmp
341131
- *
341132
- * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
341133
- *
341134
- * MIT Licensed
341135
- */
341136
341096
  var fs7 = require("fs");
341137
341097
  var os6 = require("os");
341138
341098
  var path14 = require("path");
@@ -342523,13 +342483,6 @@ var require_offset_from_root = __commonJS({
342523
342483
  var require_utils6 = __commonJS({
342524
342484
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/utils.js"(exports2) {
342525
342485
  "use strict";
342526
- /**
342527
- * @license
342528
- * Copyright Google LLC All Rights Reserved.
342529
- *
342530
- * Use of this source code is governed by an MIT-style license that can be
342531
- * found in the LICENSE file at https://angular.io/license
342532
- */
342533
342486
  Object.defineProperty(exports2, "__esModule", { value: true });
342534
342487
  exports2.isJsonArray = exports2.isJsonObject = void 0;
342535
342488
  function isJsonObject(value) {
@@ -342547,13 +342500,6 @@ var require_utils6 = __commonJS({
342547
342500
  var require_utility = __commonJS({
342548
342501
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/utility.js"(exports2) {
342549
342502
  "use strict";
342550
- /**
342551
- * @license
342552
- * Copyright Google LLC All Rights Reserved.
342553
- *
342554
- * Use of this source code is governed by an MIT-style license that can be
342555
- * found in the LICENSE file at https://angular.io/license
342556
- */
342557
342503
  Object.defineProperty(exports2, "__esModule", { value: true });
342558
342504
  exports2.getTypesOfSchema = void 0;
342559
342505
  var utils_1 = require_utils6();
@@ -342634,13 +342580,6 @@ var require_utility = __commonJS({
342634
342580
  var require_transforms = __commonJS({
342635
342581
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/transforms.js"(exports2) {
342636
342582
  "use strict";
342637
- /**
342638
- * @license
342639
- * Copyright Google LLC All Rights Reserved.
342640
- *
342641
- * Use of this source code is governed by an MIT-style license that can be
342642
- * found in the LICENSE file at https://angular.io/license
342643
- */
342644
342583
  Object.defineProperty(exports2, "__esModule", { value: true });
342645
342584
  exports2.addUndefinedDefaults = void 0;
342646
342585
  var utils_1 = require_utils6();
@@ -342719,13 +342658,6 @@ var require_transforms = __commonJS({
342719
342658
  var require_interface = __commonJS({
342720
342659
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/interface.js"(exports2) {
342721
342660
  "use strict";
342722
- /**
342723
- * @license
342724
- * Copyright Google LLC All Rights Reserved.
342725
- *
342726
- * Use of this source code is governed by an MIT-style license that can be
342727
- * found in the LICENSE file at https://angular.io/license
342728
- */
342729
342661
  Object.defineProperty(exports2, "__esModule", { value: true });
342730
342662
  }
342731
342663
  });
@@ -342734,13 +342666,6 @@ var require_interface = __commonJS({
342734
342666
  var require_pointer = __commonJS({
342735
342667
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/pointer.js"(exports2) {
342736
342668
  "use strict";
342737
- /**
342738
- * @license
342739
- * Copyright Google LLC All Rights Reserved.
342740
- *
342741
- * Use of this source code is governed by an MIT-style license that can be
342742
- * found in the LICENSE file at https://angular.io/license
342743
- */
342744
342669
  Object.defineProperty(exports2, "__esModule", { value: true });
342745
342670
  exports2.parseJsonPointer = exports2.joinJsonPointer = exports2.buildJsonPointer = void 0;
342746
342671
  function buildJsonPointer(fragments) {
@@ -345844,7 +345769,6 @@ var require_data = __commonJS({
345844
345769
  // node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js
345845
345770
  var require_uri_all = __commonJS({
345846
345771
  "node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js"(exports2, module2) {
345847
- /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
345848
345772
  (function(global2, factory) {
345849
345773
  typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : factory(global2.URI = global2.URI || {});
345850
345774
  })(exports2, function(exports3) {
@@ -359410,13 +359334,6 @@ var require_cjs = __commonJS({
359410
359334
  var require_exception2 = __commonJS({
359411
359335
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/exception.js"(exports2) {
359412
359336
  "use strict";
359413
- /**
359414
- * @license
359415
- * Copyright Google LLC All Rights Reserved.
359416
- *
359417
- * Use of this source code is governed by an MIT-style license that can be
359418
- * found in the LICENSE file at https://angular.io/license
359419
- */
359420
359337
  Object.defineProperty(exports2, "__esModule", { value: true });
359421
359338
  exports2.PathIsFileException = exports2.PathIsDirectoryException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.UnknownException = exports2.BaseException = void 0;
359422
359339
  var BaseException = class extends Error {
@@ -359462,13 +359379,6 @@ var require_exception2 = __commonJS({
359462
359379
  var require_literals = __commonJS({
359463
359380
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/literals.js"(exports2) {
359464
359381
  "use strict";
359465
- /**
359466
- * @license
359467
- * Copyright Google LLC All Rights Reserved.
359468
- *
359469
- * Use of this source code is governed by an MIT-style license that can be
359470
- * found in the LICENSE file at https://angular.io/license
359471
- */
359472
359382
  Object.defineProperty(exports2, "__esModule", { value: true });
359473
359383
  exports2.trimNewlines = exports2.stripIndents = exports2.stripIndent = exports2.indentBy = exports2.oneLine = void 0;
359474
359384
  function oneLine(strings, ...values) {
@@ -359513,13 +359423,6 @@ var require_literals = __commonJS({
359513
359423
  var require_strings = __commonJS({
359514
359424
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/strings.js"(exports2) {
359515
359425
  "use strict";
359516
- /**
359517
- * @license
359518
- * Copyright Google LLC All Rights Reserved.
359519
- *
359520
- * Use of this source code is governed by an MIT-style license that can be
359521
- * found in the LICENSE file at https://angular.io/license
359522
- */
359523
359426
  Object.defineProperty(exports2, "__esModule", { value: true });
359524
359427
  exports2.levenshtein = exports2.capitalize = exports2.underscore = exports2.classify = exports2.camelize = exports2.dasherize = exports2.decamelize = void 0;
359525
359428
  var STRING_DASHERIZE_REGEXP = /[ _]/g;
@@ -359592,13 +359495,6 @@ var require_strings = __commonJS({
359592
359495
  var require_object = __commonJS({
359593
359496
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/object.js"(exports2) {
359594
359497
  "use strict";
359595
- /**
359596
- * @license
359597
- * Copyright Google LLC All Rights Reserved.
359598
- *
359599
- * Use of this source code is governed by an MIT-style license that can be
359600
- * found in the LICENSE file at https://angular.io/license
359601
- */
359602
359498
  Object.defineProperty(exports2, "__esModule", { value: true });
359603
359499
  exports2.deepCopy = void 0;
359604
359500
  var copySymbol = Symbol();
@@ -361950,13 +361846,6 @@ var require_source_map2 = __commonJS({
361950
361846
  var require_template = __commonJS({
361951
361847
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/template.js"(exports2) {
361952
361848
  "use strict";
361953
- /**
361954
- * @license
361955
- * Copyright Google LLC All Rights Reserved.
361956
- *
361957
- * Use of this source code is governed by an MIT-style license that can be
361958
- * found in the LICENSE file at https://angular.io/license
361959
- */
361960
361849
  Object.defineProperty(exports2, "__esModule", { value: true });
361961
361850
  exports2.template = exports2.templateParser = void 0;
361962
361851
  var source_map_1 = require_source_map2();
@@ -362171,13 +362060,6 @@ var require_template = __commonJS({
362171
362060
  var require_partially_ordered_set = __commonJS({
362172
362061
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/partially-ordered-set.js"(exports2) {
362173
362062
  "use strict";
362174
- /**
362175
- * @license
362176
- * Copyright Google LLC All Rights Reserved.
362177
- *
362178
- * Use of this source code is governed by an MIT-style license that can be
362179
- * found in the LICENSE file at https://angular.io/license
362180
- */
362181
362063
  Object.defineProperty(exports2, "__esModule", { value: true });
362182
362064
  exports2.PartiallyOrderedSet = exports2.CircularDependencyFoundException = exports2.DependencyNotFoundException = void 0;
362183
362065
  var exception_1 = require_exception2();
@@ -362312,13 +362194,6 @@ var require_partially_ordered_set = __commonJS({
362312
362194
  var require_priority_queue = __commonJS({
362313
362195
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/priority-queue.js"(exports2) {
362314
362196
  "use strict";
362315
- /**
362316
- * @license
362317
- * Copyright Google LLC All Rights Reserved.
362318
- *
362319
- * Use of this source code is governed by an MIT-style license that can be
362320
- * found in the LICENSE file at https://angular.io/license
362321
- */
362322
362197
  Object.defineProperty(exports2, "__esModule", { value: true });
362323
362198
  exports2.PriorityQueue = void 0;
362324
362199
  var PriorityQueue = class {
@@ -362365,13 +362240,6 @@ var require_priority_queue = __commonJS({
362365
362240
  var require_lang = __commonJS({
362366
362241
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/lang.js"(exports2) {
362367
362242
  "use strict";
362368
- /**
362369
- * @license
362370
- * Copyright Google LLC All Rights Reserved.
362371
- *
362372
- * Use of this source code is governed by an MIT-style license that can be
362373
- * found in the LICENSE file at https://angular.io/license
362374
- */
362375
362243
  Object.defineProperty(exports2, "__esModule", { value: true });
362376
362244
  exports2.isPromise = void 0;
362377
362245
  function isPromise(obj) {
@@ -362385,13 +362253,6 @@ var require_lang = __commonJS({
362385
362253
  var require_utils7 = __commonJS({
362386
362254
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/index.js"(exports2) {
362387
362255
  "use strict";
362388
- /**
362389
- * @license
362390
- * Copyright Google LLC All Rights Reserved.
362391
- *
362392
- * Use of this source code is governed by an MIT-style license that can be
362393
- * found in the LICENSE file at https://angular.io/license
362394
- */
362395
362256
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362396
362257
  if (k23 === void 0)
362397
362258
  k23 = k6;
@@ -362447,13 +362308,6 @@ var require_utils7 = __commonJS({
362447
362308
  var require_visitor = __commonJS({
362448
362309
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/visitor.js"(exports2) {
362449
362310
  "use strict";
362450
- /**
362451
- * @license
362452
- * Copyright Google LLC All Rights Reserved.
362453
- *
362454
- * Use of this source code is governed by an MIT-style license that can be
362455
- * found in the LICENSE file at https://angular.io/license
362456
- */
362457
362311
  Object.defineProperty(exports2, "__esModule", { value: true });
362458
362312
  exports2.visitJsonSchema = exports2.visitJson = void 0;
362459
362313
  var rxjs_1 = require_cjs();
@@ -362574,13 +362428,6 @@ var require_visitor = __commonJS({
362574
362428
  var require_registry = __commonJS({
362575
362429
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/registry.js"(exports2) {
362576
362430
  "use strict";
362577
- /**
362578
- * @license
362579
- * Copyright Google LLC All Rights Reserved.
362580
- *
362581
- * Use of this source code is governed by an MIT-style license that can be
362582
- * found in the LICENSE file at https://angular.io/license
362583
- */
362584
362431
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362585
362432
  if (k23 === void 0)
362586
362433
  k23 = k6;
@@ -363087,13 +362934,6 @@ var require_registry = __commonJS({
363087
362934
  var require_schema2 = __commonJS({
363088
362935
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/schema.js"(exports2) {
363089
362936
  "use strict";
363090
- /**
363091
- * @license
363092
- * Copyright Google LLC All Rights Reserved.
363093
- *
363094
- * Use of this source code is governed by an MIT-style license that can be
363095
- * found in the LICENSE file at https://angular.io/license
363096
- */
363097
362937
  Object.defineProperty(exports2, "__esModule", { value: true });
363098
362938
  exports2.mergeSchemas = exports2.isJsonSchema = void 0;
363099
362939
  var utils_1 = require_utils6();
@@ -363133,13 +362973,6 @@ var require_schema2 = __commonJS({
363133
362973
  var require_schema3 = __commonJS({
363134
362974
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/index.js"(exports2) {
363135
362975
  "use strict";
363136
- /**
363137
- * @license
363138
- * Copyright Google LLC All Rights Reserved.
363139
- *
363140
- * Use of this source code is governed by an MIT-style license that can be
363141
- * found in the LICENSE file at https://angular.io/license
363142
- */
363143
362976
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363144
362977
  if (k23 === void 0)
363145
362978
  k23 = k6;
@@ -363194,13 +363027,6 @@ var require_schema3 = __commonJS({
363194
363027
  var require_json3 = __commonJS({
363195
363028
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/index.js"(exports2) {
363196
363029
  "use strict";
363197
- /**
363198
- * @license
363199
- * Copyright Google LLC All Rights Reserved.
363200
- *
363201
- * Use of this source code is governed by an MIT-style license that can be
363202
- * found in the LICENSE file at https://angular.io/license
363203
- */
363204
363030
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363205
363031
  if (k23 === void 0)
363206
363032
  k23 = k6;
@@ -363250,13 +363076,6 @@ var require_json3 = __commonJS({
363250
363076
  var require_logger = __commonJS({
363251
363077
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/logger.js"(exports2) {
363252
363078
  "use strict";
363253
- /**
363254
- * @license
363255
- * Copyright Google LLC All Rights Reserved.
363256
- *
363257
- * Use of this source code is governed by an MIT-style license that can be
363258
- * found in the LICENSE file at https://angular.io/license
363259
- */
363260
363079
  Object.defineProperty(exports2, "__esModule", { value: true });
363261
363080
  exports2.Logger = void 0;
363262
363081
  var rxjs_1 = require_cjs();
@@ -363378,13 +363197,6 @@ var require_logger = __commonJS({
363378
363197
  var require_indent = __commonJS({
363379
363198
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/indent.js"(exports2) {
363380
363199
  "use strict";
363381
- /**
363382
- * @license
363383
- * Copyright Google LLC All Rights Reserved.
363384
- *
363385
- * Use of this source code is governed by an MIT-style license that can be
363386
- * found in the LICENSE file at https://angular.io/license
363387
- */
363388
363200
  Object.defineProperty(exports2, "__esModule", { value: true });
363389
363201
  exports2.IndentLogger = void 0;
363390
363202
  var rxjs_1 = require_cjs();
@@ -363417,13 +363229,6 @@ var require_indent = __commonJS({
363417
363229
  var require_level = __commonJS({
363418
363230
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/level.js"(exports2) {
363419
363231
  "use strict";
363420
- /**
363421
- * @license
363422
- * Copyright Google LLC All Rights Reserved.
363423
- *
363424
- * Use of this source code is governed by an MIT-style license that can be
363425
- * found in the LICENSE file at https://angular.io/license
363426
- */
363427
363232
  Object.defineProperty(exports2, "__esModule", { value: true });
363428
363233
  exports2.LevelCapLogger = exports2.LevelTransformLogger = void 0;
363429
363234
  var logger_1 = require_logger();
@@ -363473,13 +363278,6 @@ var require_level = __commonJS({
363473
363278
  var require_null_logger = __commonJS({
363474
363279
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/null-logger.js"(exports2) {
363475
363280
  "use strict";
363476
- /**
363477
- * @license
363478
- * Copyright Google LLC All Rights Reserved.
363479
- *
363480
- * Use of this source code is governed by an MIT-style license that can be
363481
- * found in the LICENSE file at https://angular.io/license
363482
- */
363483
363281
  Object.defineProperty(exports2, "__esModule", { value: true });
363484
363282
  exports2.NullLogger = void 0;
363485
363283
  var rxjs_1 = require_cjs();
@@ -363515,13 +363313,6 @@ var require_null_logger = __commonJS({
363515
363313
  var require_transform_logger = __commonJS({
363516
363314
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/transform-logger.js"(exports2) {
363517
363315
  "use strict";
363518
- /**
363519
- * @license
363520
- * Copyright Google LLC All Rights Reserved.
363521
- *
363522
- * Use of this source code is governed by an MIT-style license that can be
363523
- * found in the LICENSE file at https://angular.io/license
363524
- */
363525
363316
  Object.defineProperty(exports2, "__esModule", { value: true });
363526
363317
  exports2.TransformLogger = void 0;
363527
363318
  var logger_1 = require_logger();
@@ -363539,13 +363330,6 @@ var require_transform_logger = __commonJS({
363539
363330
  var require_logger2 = __commonJS({
363540
363331
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/index.js"(exports2) {
363541
363332
  "use strict";
363542
- /**
363543
- * @license
363544
- * Copyright Google LLC All Rights Reserved.
363545
- *
363546
- * Use of this source code is governed by an MIT-style license that can be
363547
- * found in the LICENSE file at https://angular.io/license
363548
- */
363549
363333
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363550
363334
  if (k23 === void 0)
363551
363335
  k23 = k6;
@@ -363579,13 +363363,6 @@ var require_logger2 = __commonJS({
363579
363363
  var require_definitions = __commonJS({
363580
363364
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/definitions.js"(exports2) {
363581
363365
  "use strict";
363582
- /**
363583
- * @license
363584
- * Copyright Google LLC All Rights Reserved.
363585
- *
363586
- * Use of this source code is governed by an MIT-style license that can be
363587
- * found in the LICENSE file at https://angular.io/license
363588
- */
363589
363366
  Object.defineProperty(exports2, "__esModule", { value: true });
363590
363367
  exports2.TargetDefinitionCollection = exports2.ProjectDefinitionCollection = void 0;
363591
363368
  var DefinitionCollection = class {
@@ -363752,13 +363529,6 @@ var require_definitions = __commonJS({
363752
363529
  var require_path2 = __commonJS({
363753
363530
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/path.js"(exports2) {
363754
363531
  "use strict";
363755
- /**
363756
- * @license
363757
- * Copyright Google LLC All Rights Reserved.
363758
- *
363759
- * Use of this source code is governed by an MIT-style license that can be
363760
- * found in the LICENSE file at https://angular.io/license
363761
- */
363762
363532
  Object.defineProperty(exports2, "__esModule", { value: true });
363763
363533
  exports2.getSystemPath = exports2.asPosixPath = exports2.asWindowsPath = exports2.path = exports2.noCacheNormalize = exports2.normalize = exports2.resetNormalizeCache = exports2.fragment = exports2.resolve = exports2.relative = exports2.isAbsolute = exports2.join = exports2.dirname = exports2.basename = exports2.extname = exports2.split = exports2.NormalizedRoot = exports2.NormalizedSep = exports2.PathCannotBeFragmentException = exports2.PathMustBeAbsoluteException = exports2.InvalidPathException = void 0;
363764
363534
  var exception_1 = require_exception2();
@@ -363962,13 +363732,6 @@ var require_path2 = __commonJS({
363962
363732
  var require_buffer2 = __commonJS({
363963
363733
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/buffer.js"(exports2) {
363964
363734
  "use strict";
363965
- /**
363966
- * @license
363967
- * Copyright Google LLC All Rights Reserved.
363968
- *
363969
- * Use of this source code is governed by an MIT-style license that can be
363970
- * found in the LICENSE file at https://angular.io/license
363971
- */
363972
363735
  Object.defineProperty(exports2, "__esModule", { value: true });
363973
363736
  exports2.fileBuffer = exports2.fileBufferToString = exports2.stringToFileBuffer = void 0;
363974
363737
  var node_util_1 = require("node:util");
@@ -363994,13 +363757,6 @@ var require_buffer2 = __commonJS({
363994
363757
  var require_interface2 = __commonJS({
363995
363758
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/interface.js"(exports2) {
363996
363759
  "use strict";
363997
- /**
363998
- * @license
363999
- * Copyright Google LLC All Rights Reserved.
364000
- *
364001
- * Use of this source code is governed by an MIT-style license that can be
364002
- * found in the LICENSE file at https://angular.io/license
364003
- */
364004
363760
  Object.defineProperty(exports2, "__esModule", { value: true });
364005
363761
  exports2.HostWatchEventType = void 0;
364006
363762
  var HostWatchEventType;
@@ -364017,13 +363773,6 @@ var require_interface2 = __commonJS({
364017
363773
  var require_memory = __commonJS({
364018
363774
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/memory.js"(exports2) {
364019
363775
  "use strict";
364020
- /**
364021
- * @license
364022
- * Copyright Google LLC All Rights Reserved.
364023
- *
364024
- * Use of this source code is governed by an MIT-style license that can be
364025
- * found in the LICENSE file at https://angular.io/license
364026
- */
364027
363776
  Object.defineProperty(exports2, "__esModule", { value: true });
364028
363777
  exports2.SimpleMemoryHost = void 0;
364029
363778
  var rxjs_1 = require_cjs();
@@ -364340,13 +364089,6 @@ var require_memory = __commonJS({
364340
364089
  var require_sync8 = __commonJS({
364341
364090
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/sync.js"(exports2) {
364342
364091
  "use strict";
364343
- /**
364344
- * @license
364345
- * Copyright Google LLC All Rights Reserved.
364346
- *
364347
- * Use of this source code is governed by an MIT-style license that can be
364348
- * found in the LICENSE file at https://angular.io/license
364349
- */
364350
364092
  Object.defineProperty(exports2, "__esModule", { value: true });
364351
364093
  exports2.SyncDelegateHost = exports2.SynchronousDelegateExpectedException = void 0;
364352
364094
  var exception_1 = require_exception2();
@@ -364428,13 +364170,6 @@ var require_sync8 = __commonJS({
364428
364170
  var require_test = __commonJS({
364429
364171
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/test.js"(exports2) {
364430
364172
  "use strict";
364431
- /**
364432
- * @license
364433
- * Copyright Google LLC All Rights Reserved.
364434
- *
364435
- * Use of this source code is governed by an MIT-style license that can be
364436
- * found in the LICENSE file at https://angular.io/license
364437
- */
364438
364173
  Object.defineProperty(exports2, "__esModule", { value: true });
364439
364174
  exports2.TestHost = void 0;
364440
364175
  var path_1 = require_path2();
@@ -364548,13 +364283,6 @@ var require_test = __commonJS({
364548
364283
  var require_resolver = __commonJS({
364549
364284
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/resolver.js"(exports2) {
364550
364285
  "use strict";
364551
- /**
364552
- * @license
364553
- * Copyright Google LLC All Rights Reserved.
364554
- *
364555
- * Use of this source code is governed by an MIT-style license that can be
364556
- * found in the LICENSE file at https://angular.io/license
364557
- */
364558
364286
  Object.defineProperty(exports2, "__esModule", { value: true });
364559
364287
  exports2.ResolverHost = void 0;
364560
364288
  var ResolverHost = class {
@@ -364606,13 +364334,6 @@ var require_resolver = __commonJS({
364606
364334
  var require_alias = __commonJS({
364607
364335
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/alias.js"(exports2) {
364608
364336
  "use strict";
364609
- /**
364610
- * @license
364611
- * Copyright Google LLC All Rights Reserved.
364612
- *
364613
- * Use of this source code is governed by an MIT-style license that can be
364614
- * found in the LICENSE file at https://angular.io/license
364615
- */
364616
364337
  Object.defineProperty(exports2, "__esModule", { value: true });
364617
364338
  exports2.AliasHost = void 0;
364618
364339
  var path_1 = require_path2();
@@ -364645,13 +364366,6 @@ var require_alias = __commonJS({
364645
364366
  var require_create = __commonJS({
364646
364367
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/create.js"(exports2) {
364647
364368
  "use strict";
364648
- /**
364649
- * @license
364650
- * Copyright Google LLC All Rights Reserved.
364651
- *
364652
- * Use of this source code is governed by an MIT-style license that can be
364653
- * found in the LICENSE file at https://angular.io/license
364654
- */
364655
364369
  Object.defineProperty(exports2, "__esModule", { value: true });
364656
364370
  exports2.createSyncHost = void 0;
364657
364371
  var rxjs_1 = require_cjs();
@@ -364706,13 +364420,6 @@ var require_create = __commonJS({
364706
364420
  var require_empty3 = __commonJS({
364707
364421
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/empty.js"(exports2) {
364708
364422
  "use strict";
364709
- /**
364710
- * @license
364711
- * Copyright Google LLC All Rights Reserved.
364712
- *
364713
- * Use of this source code is governed by an MIT-style license that can be
364714
- * found in the LICENSE file at https://angular.io/license
364715
- */
364716
364423
  Object.defineProperty(exports2, "__esModule", { value: true });
364717
364424
  exports2.Empty = void 0;
364718
364425
  var rxjs_1 = require_cjs();
@@ -366280,13 +365987,6 @@ var require_picomatch4 = __commonJS({
366280
365987
  var require_pattern3 = __commonJS({
366281
365988
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/pattern.js"(exports2) {
366282
365989
  "use strict";
366283
- /**
366284
- * @license
366285
- * Copyright Google LLC All Rights Reserved.
366286
- *
366287
- * Use of this source code is governed by an MIT-style license that can be
366288
- * found in the LICENSE file at https://angular.io/license
366289
- */
366290
365990
  Object.defineProperty(exports2, "__esModule", { value: true });
366291
365991
  exports2.PatternMatchingHost = void 0;
366292
365992
  var picomatch_1 = require_picomatch4();
@@ -366318,13 +366018,6 @@ var require_pattern3 = __commonJS({
366318
366018
  var require_record = __commonJS({
366319
366019
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/record.js"(exports2) {
366320
366020
  "use strict";
366321
- /**
366322
- * @license
366323
- * Copyright Google LLC All Rights Reserved.
366324
- *
366325
- * Use of this source code is governed by an MIT-style license that can be
366326
- * found in the LICENSE file at https://angular.io/license
366327
- */
366328
366021
  Object.defineProperty(exports2, "__esModule", { value: true });
366329
366022
  exports2.CordHost = void 0;
366330
366023
  var rxjs_1 = require_cjs();
@@ -366594,13 +366287,6 @@ var require_record = __commonJS({
366594
366287
  var require_safe = __commonJS({
366595
366288
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/safe.js"(exports2) {
366596
366289
  "use strict";
366597
- /**
366598
- * @license
366599
- * Copyright Google LLC All Rights Reserved.
366600
- *
366601
- * Use of this source code is governed by an MIT-style license that can be
366602
- * found in the LICENSE file at https://angular.io/license
366603
- */
366604
366290
  Object.defineProperty(exports2, "__esModule", { value: true });
366605
366291
  exports2.SafeReadonlyHost = void 0;
366606
366292
  var rxjs_1 = require_cjs();
@@ -366641,13 +366327,6 @@ var require_safe = __commonJS({
366641
366327
  var require_scoped = __commonJS({
366642
366328
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/scoped.js"(exports2) {
366643
366329
  "use strict";
366644
- /**
366645
- * @license
366646
- * Copyright Google LLC All Rights Reserved.
366647
- *
366648
- * Use of this source code is governed by an MIT-style license that can be
366649
- * found in the LICENSE file at https://angular.io/license
366650
- */
366651
366330
  Object.defineProperty(exports2, "__esModule", { value: true });
366652
366331
  exports2.ScopedHost = void 0;
366653
366332
  var path_1 = require_path2();
@@ -366670,13 +366349,6 @@ var require_scoped = __commonJS({
366670
366349
  var require_host = __commonJS({
366671
366350
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/index.js"(exports2) {
366672
366351
  "use strict";
366673
- /**
366674
- * @license
366675
- * Copyright Google LLC All Rights Reserved.
366676
- *
366677
- * Use of this source code is governed by an MIT-style license that can be
366678
- * found in the LICENSE file at https://angular.io/license
366679
- */
366680
366352
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366681
366353
  if (k23 === void 0)
366682
366354
  k23 = k6;
@@ -366737,13 +366409,6 @@ var require_host = __commonJS({
366737
366409
  var require_virtual_fs = __commonJS({
366738
366410
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/index.js"(exports2) {
366739
366411
  "use strict";
366740
- /**
366741
- * @license
366742
- * Copyright Google LLC All Rights Reserved.
366743
- *
366744
- * Use of this source code is governed by an MIT-style license that can be
366745
- * found in the LICENSE file at https://angular.io/license
366746
- */
366747
366412
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366748
366413
  if (k23 === void 0)
366749
366414
  k23 = k6;
@@ -366793,13 +366458,6 @@ var require_virtual_fs = __commonJS({
366793
366458
  var require_host2 = __commonJS({
366794
366459
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/host.js"(exports2) {
366795
366460
  "use strict";
366796
- /**
366797
- * @license
366798
- * Copyright Google LLC All Rights Reserved.
366799
- *
366800
- * Use of this source code is governed by an MIT-style license that can be
366801
- * found in the LICENSE file at https://angular.io/license
366802
- */
366803
366461
  Object.defineProperty(exports2, "__esModule", { value: true });
366804
366462
  exports2.createWorkspaceHost = void 0;
366805
366463
  var rxjs_1 = require_cjs();
@@ -366987,13 +366645,6 @@ var require_main = __commonJS({
366987
366645
  var require_metadata2 = __commonJS({
366988
366646
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/metadata.js"(exports2) {
366989
366647
  "use strict";
366990
- /**
366991
- * @license
366992
- * Copyright Google LLC All Rights Reserved.
366993
- *
366994
- * Use of this source code is governed by an MIT-style license that can be
366995
- * found in the LICENSE file at https://angular.io/license
366996
- */
366997
366648
  Object.defineProperty(exports2, "__esModule", { value: true });
366998
366649
  exports2.JsonWorkspaceMetadata = exports2.JsonWorkspaceSymbol = void 0;
366999
366650
  var jsonc_parser_1 = require_main();
@@ -367050,13 +366701,6 @@ var require_metadata2 = __commonJS({
367050
366701
  var require_utilities = __commonJS({
367051
366702
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/utilities.js"(exports2) {
367052
366703
  "use strict";
367053
- /**
367054
- * @license
367055
- * Copyright Google LLC All Rights Reserved.
367056
- *
367057
- * Use of this source code is governed by an MIT-style license that can be
367058
- * found in the LICENSE file at https://angular.io/license
367059
- */
367060
366704
  Object.defineProperty(exports2, "__esModule", { value: true });
367061
366705
  exports2.createVirtualAstObject = void 0;
367062
366706
  var json_1 = require_json3();
@@ -367163,13 +366807,6 @@ var require_utilities = __commonJS({
367163
366807
  var require_reader3 = __commonJS({
367164
366808
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/reader.js"(exports2) {
367165
366809
  "use strict";
367166
- /**
367167
- * @license
367168
- * Copyright Google LLC All Rights Reserved.
367169
- *
367170
- * Use of this source code is governed by an MIT-style license that can be
367171
- * found in the LICENSE file at https://angular.io/license
367172
- */
367173
366810
  Object.defineProperty(exports2, "__esModule", { value: true });
367174
366811
  exports2.readJsonWorkspace = void 0;
367175
366812
  var jsonc_parser_1 = require_main();
@@ -367384,13 +367021,6 @@ var require_reader3 = __commonJS({
367384
367021
  var require_writer = __commonJS({
367385
367022
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/writer.js"(exports2) {
367386
367023
  "use strict";
367387
- /**
367388
- * @license
367389
- * Copyright Google LLC All Rights Reserved.
367390
- *
367391
- * Use of this source code is governed by an MIT-style license that can be
367392
- * found in the LICENSE file at https://angular.io/license
367393
- */
367394
367024
  Object.defineProperty(exports2, "__esModule", { value: true });
367395
367025
  exports2.writeJsonWorkspace = void 0;
367396
367026
  var jsonc_parser_1 = require_main();
@@ -367520,13 +367150,6 @@ var require_writer = __commonJS({
367520
367150
  var require_core4 = __commonJS({
367521
367151
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/core.js"(exports2) {
367522
367152
  "use strict";
367523
- /**
367524
- * @license
367525
- * Copyright Google LLC All Rights Reserved.
367526
- *
367527
- * Use of this source code is governed by an MIT-style license that can be
367528
- * found in the LICENSE file at https://angular.io/license
367529
- */
367530
367153
  Object.defineProperty(exports2, "__esModule", { value: true });
367531
367154
  exports2.writeWorkspace = exports2.readWorkspace = exports2._test_removeWorkspaceFile = exports2._test_addWorkspaceFile = exports2.WorkspaceFormat = void 0;
367532
367155
  var virtual_fs_1 = require_virtual_fs();
@@ -367611,13 +367234,6 @@ var require_core4 = __commonJS({
367611
367234
  var require_workspace = __commonJS({
367612
367235
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/index.js"(exports2) {
367613
367236
  "use strict";
367614
- /**
367615
- * @license
367616
- * Copyright Google LLC All Rights Reserved.
367617
- *
367618
- * Use of this source code is governed by an MIT-style license that can be
367619
- * found in the LICENSE file at https://angular.io/license
367620
- */
367621
367237
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367622
367238
  if (k23 === void 0)
367623
367239
  k23 = k6;
@@ -367662,13 +367278,6 @@ var require_workspace = __commonJS({
367662
367278
  var require_src3 = __commonJS({
367663
367279
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/index.js"(exports2) {
367664
367280
  "use strict";
367665
- /**
367666
- * @license
367667
- * Copyright Google LLC All Rights Reserved.
367668
- *
367669
- * Use of this source code is governed by an MIT-style license that can be
367670
- * found in the LICENSE file at https://angular.io/license
367671
- */
367672
367281
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367673
367282
  if (k23 === void 0)
367674
367283
  k23 = k6;
@@ -367725,13 +367334,6 @@ var require_src3 = __commonJS({
367725
367334
  var require_html_selector = __commonJS({
367726
367335
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/html-selector.js"(exports2) {
367727
367336
  "use strict";
367728
- /**
367729
- * @license
367730
- * Copyright Google LLC All Rights Reserved.
367731
- *
367732
- * Use of this source code is governed by an MIT-style license that can be
367733
- * found in the LICENSE file at https://angular.io/license
367734
- */
367735
367337
  Object.defineProperty(exports2, "__esModule", { value: true });
367736
367338
  exports2.htmlSelectorFormat = void 0;
367737
367339
  var unicodeRanges = [
@@ -367771,13 +367373,6 @@ var require_html_selector = __commonJS({
367771
367373
  var require_path3 = __commonJS({
367772
367374
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/path.js"(exports2) {
367773
367375
  "use strict";
367774
- /**
367775
- * @license
367776
- * Copyright Google LLC All Rights Reserved.
367777
- *
367778
- * Use of this source code is governed by an MIT-style license that can be
367779
- * found in the LICENSE file at https://angular.io/license
367780
- */
367781
367376
  Object.defineProperty(exports2, "__esModule", { value: true });
367782
367377
  exports2.pathFormat = void 0;
367783
367378
  var core_1 = require_src3();
@@ -367797,13 +367392,6 @@ var require_path3 = __commonJS({
367797
367392
  var require_formats2 = __commonJS({
367798
367393
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/index.js"(exports2) {
367799
367394
  "use strict";
367800
- /**
367801
- * @license
367802
- * Copyright Google LLC All Rights Reserved.
367803
- *
367804
- * Use of this source code is governed by an MIT-style license that can be
367805
- * found in the LICENSE file at https://angular.io/license
367806
- */
367807
367395
  Object.defineProperty(exports2, "__esModule", { value: true });
367808
367396
  exports2.standardFormats = exports2.pathFormat = exports2.htmlSelectorFormat = void 0;
367809
367397
  var html_selector_1 = require_html_selector();
@@ -367824,13 +367412,6 @@ var require_formats2 = __commonJS({
367824
367412
  var require_interface3 = __commonJS({
367825
367413
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/interface.js"(exports2) {
367826
367414
  "use strict";
367827
- /**
367828
- * @license
367829
- * Copyright Google LLC All Rights Reserved.
367830
- *
367831
- * Use of this source code is governed by an MIT-style license that can be
367832
- * found in the LICENSE file at https://angular.io/license
367833
- */
367834
367415
  Object.defineProperty(exports2, "__esModule", { value: true });
367835
367416
  exports2.Tree = exports2.TreeSymbol = exports2.FileVisitorCancelToken = exports2.MergeStrategy = void 0;
367836
367417
  var MergeStrategy;
@@ -367866,13 +367447,6 @@ var require_interface3 = __commonJS({
367866
367447
  var require_exception3 = __commonJS({
367867
367448
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/exception/exception.js"(exports2) {
367868
367449
  "use strict";
367869
- /**
367870
- * @license
367871
- * Copyright Google LLC All Rights Reserved.
367872
- *
367873
- * Use of this source code is governed by an MIT-style license that can be
367874
- * found in the LICENSE file at https://angular.io/license
367875
- */
367876
367450
  Object.defineProperty(exports2, "__esModule", { value: true });
367877
367451
  exports2.UnimplementedException = exports2.UnsuccessfulWorkflowExecution = exports2.MergeConflictException = exports2.InvalidUpdateRecordException = exports2.ContentHasMutatedException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.SchematicsException = void 0;
367878
367452
  var core_1 = require_src3();
@@ -367928,13 +367502,6 @@ var require_exception3 = __commonJS({
367928
367502
  var require_delegate = __commonJS({
367929
367503
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/delegate.js"(exports2) {
367930
367504
  "use strict";
367931
- /**
367932
- * @license
367933
- * Copyright Google LLC All Rights Reserved.
367934
- *
367935
- * Use of this source code is governed by an MIT-style license that can be
367936
- * found in the LICENSE file at https://angular.io/license
367937
- */
367938
367505
  Object.defineProperty(exports2, "__esModule", { value: true });
367939
367506
  exports2.DelegateTree = void 0;
367940
367507
  var interface_1 = require_interface3();
@@ -368012,13 +367579,6 @@ var require_delegate = __commonJS({
368012
367579
  var require_entry3 = __commonJS({
368013
367580
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/entry.js"(exports2) {
368014
367581
  "use strict";
368015
- /**
368016
- * @license
368017
- * Copyright Google LLC All Rights Reserved.
368018
- *
368019
- * Use of this source code is governed by an MIT-style license that can be
368020
- * found in the LICENSE file at https://angular.io/license
368021
- */
368022
367582
  Object.defineProperty(exports2, "__esModule", { value: true });
368023
367583
  exports2.LazyFileEntry = exports2.SimpleFileEntry = void 0;
368024
367584
  var SimpleFileEntry = class {
@@ -369482,13 +369042,6 @@ var require_magic_string_cjs = __commonJS({
369482
369042
  var require_update_buffer = __commonJS({
369483
369043
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/utility/update-buffer.js"(exports2) {
369484
369044
  "use strict";
369485
- /**
369486
- * @license
369487
- * Copyright Google LLC All Rights Reserved.
369488
- *
369489
- * Use of this source code is governed by an MIT-style license that can be
369490
- * found in the LICENSE file at https://angular.io/license
369491
- */
369492
369045
  var __importDefault2 = exports2 && exports2.__importDefault || function(mod) {
369493
369046
  return mod && mod.__esModule ? mod : { "default": mod };
369494
369047
  };
@@ -369568,13 +369121,6 @@ var require_update_buffer = __commonJS({
369568
369121
  var require_recorder = __commonJS({
369569
369122
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/recorder.js"(exports2) {
369570
369123
  "use strict";
369571
- /**
369572
- * @license
369573
- * Copyright Google LLC All Rights Reserved.
369574
- *
369575
- * Use of this source code is governed by an MIT-style license that can be
369576
- * found in the LICENSE file at https://angular.io/license
369577
- */
369578
369124
  Object.defineProperty(exports2, "__esModule", { value: true });
369579
369125
  exports2.UpdateRecorderBom = exports2.UpdateRecorderBase = void 0;
369580
369126
  var exception_1 = require_exception3();
@@ -369649,13 +369195,6 @@ var require_recorder = __commonJS({
369649
369195
  var require_scoped2 = __commonJS({
369650
369196
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/scoped.js"(exports2) {
369651
369197
  "use strict";
369652
- /**
369653
- * @license
369654
- * Copyright Google LLC All Rights Reserved.
369655
- *
369656
- * Use of this source code is governed by an MIT-style license that can be
369657
- * found in the LICENSE file at https://angular.io/license
369658
- */
369659
369198
  Object.defineProperty(exports2, "__esModule", { value: true });
369660
369199
  exports2.ScopedTree = void 0;
369661
369200
  var core_1 = require_src3();
@@ -369833,13 +369372,6 @@ var require_scoped2 = __commonJS({
369833
369372
  var require_host_tree = __commonJS({
369834
369373
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/host-tree.js"(exports2) {
369835
369374
  "use strict";
369836
- /**
369837
- * @license
369838
- * Copyright Google LLC All Rights Reserved.
369839
- *
369840
- * Use of this source code is governed by an MIT-style license that can be
369841
- * found in the LICENSE file at https://angular.io/license
369842
- */
369843
369375
  Object.defineProperty(exports2, "__esModule", { value: true });
369844
369376
  exports2.FilterHostTree = exports2.HostCreateTree = exports2.HostTree = exports2.HostDirEntry = void 0;
369845
369377
  var core_1 = require_src3();
@@ -370255,13 +369787,6 @@ var require_host_tree = __commonJS({
370255
369787
  var require_static = __commonJS({
370256
369788
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/static.js"(exports2) {
370257
369789
  "use strict";
370258
- /**
370259
- * @license
370260
- * Copyright Google LLC All Rights Reserved.
370261
- *
370262
- * Use of this source code is governed by an MIT-style license that can be
370263
- * found in the LICENSE file at https://angular.io/license
370264
- */
370265
369790
  Object.defineProperty(exports2, "__esModule", { value: true });
370266
369791
  exports2.partition = exports2.merge = exports2.branch = exports2.empty = void 0;
370267
369792
  var exception_1 = require_exception3();
@@ -370298,13 +369823,6 @@ var require_static = __commonJS({
370298
369823
  var require_null2 = __commonJS({
370299
369824
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/null.js"(exports2) {
370300
369825
  "use strict";
370301
- /**
370302
- * @license
370303
- * Copyright Google LLC All Rights Reserved.
370304
- *
370305
- * Use of this source code is governed by an MIT-style license that can be
370306
- * found in the LICENSE file at https://angular.io/license
370307
- */
370308
369826
  Object.defineProperty(exports2, "__esModule", { value: true });
370309
369827
  exports2.NullTree = exports2.NullTreeDirEntry = exports2.CannotCreateFileException = void 0;
370310
369828
  var core_1 = require_src3();
@@ -370405,13 +369923,6 @@ var require_null2 = __commonJS({
370405
369923
  var require_call = __commonJS({
370406
369924
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/call.js"(exports2) {
370407
369925
  "use strict";
370408
- /**
370409
- * @license
370410
- * Copyright Google LLC All Rights Reserved.
370411
- *
370412
- * Use of this source code is governed by an MIT-style license that can be
370413
- * found in the LICENSE file at https://angular.io/license
370414
- */
370415
369926
  Object.defineProperty(exports2, "__esModule", { value: true });
370416
369927
  exports2.callRule = exports2.callSource = exports2.InvalidSourceResultException = exports2.InvalidRuleResultException = void 0;
370417
369928
  var core_1 = require_src3();
@@ -370492,13 +370003,6 @@ var require_call = __commonJS({
370492
370003
  var require_schematic = __commonJS({
370493
370004
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/schematic.js"(exports2) {
370494
370005
  "use strict";
370495
- /**
370496
- * @license
370497
- * Copyright Google LLC All Rights Reserved.
370498
- *
370499
- * Use of this source code is governed by an MIT-style license that can be
370500
- * found in the LICENSE file at https://angular.io/license
370501
- */
370502
370006
  Object.defineProperty(exports2, "__esModule", { value: true });
370503
370007
  exports2.SchematicImpl = exports2.InvalidSchematicsNameException = void 0;
370504
370008
  var core_1 = require_src3();
@@ -370563,13 +370067,6 @@ var require_schematic = __commonJS({
370563
370067
  var require_engine = __commonJS({
370564
370068
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/engine.js"(exports2) {
370565
370069
  "use strict";
370566
- /**
370567
- * @license
370568
- * Copyright Google LLC All Rights Reserved.
370569
- *
370570
- * Use of this source code is governed by an MIT-style license that can be
370571
- * found in the LICENSE file at https://angular.io/license
370572
- */
370573
370070
  Object.defineProperty(exports2, "__esModule", { value: true });
370574
370071
  exports2.SchematicEngine = exports2.TaskScheduler = exports2.CollectionImpl = exports2.UnknownTaskDependencyException = exports2.UnregisteredTaskException = exports2.SchematicEngineConflictingException = exports2.PrivateSchematicException = exports2.UnknownSchematicException = exports2.CircularCollectionException = exports2.UnknownCollectionException = exports2.UnknownUrlSourceProtocol = void 0;
370575
370072
  var core_1 = require_src3();
@@ -370864,13 +370361,6 @@ var require_engine = __commonJS({
370864
370361
  var require_interface4 = __commonJS({
370865
370362
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/interface.js"(exports2) {
370866
370363
  "use strict";
370867
- /**
370868
- * @license
370869
- * Copyright Google LLC All Rights Reserved.
370870
- *
370871
- * Use of this source code is governed by an MIT-style license that can be
370872
- * found in the LICENSE file at https://angular.io/license
370873
- */
370874
370364
  Object.defineProperty(exports2, "__esModule", { value: true });
370875
370365
  }
370876
370366
  });
@@ -370879,13 +370369,6 @@ var require_interface4 = __commonJS({
370879
370369
  var require_engine2 = __commonJS({
370880
370370
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/index.js"(exports2) {
370881
370371
  "use strict";
370882
- /**
370883
- * @license
370884
- * Copyright Google LLC All Rights Reserved.
370885
- *
370886
- * Use of this source code is governed by an MIT-style license that can be
370887
- * found in the LICENSE file at https://angular.io/license
370888
- */
370889
370372
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
370890
370373
  if (k23 === void 0)
370891
370374
  k23 = k6;
@@ -370917,13 +370400,6 @@ var require_engine2 = __commonJS({
370917
370400
  var require_cli_logger = __commonJS({
370918
370401
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/cli-logger.js"(exports2) {
370919
370402
  "use strict";
370920
- /**
370921
- * @license
370922
- * Copyright Google LLC All Rights Reserved.
370923
- *
370924
- * Use of this source code is governed by an MIT-style license that can be
370925
- * found in the LICENSE file at https://angular.io/license
370926
- */
370927
370403
  Object.defineProperty(exports2, "__esModule", { value: true });
370928
370404
  exports2.createConsoleLogger = void 0;
370929
370405
  var rxjs_1 = require_cjs();
@@ -372721,12 +372197,6 @@ var require_readdirp = __commonJS({
372721
372197
  // node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js
372722
372198
  var require_normalize_path = __commonJS({
372723
372199
  "node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js"(exports2, module2) {
372724
- /*!
372725
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
372726
- *
372727
- * Copyright (c) 2014-2018, Jon Schlinkert.
372728
- * Released under the MIT License.
372729
- */
372730
372200
  module2.exports = function(path14, stripTrailing) {
372731
372201
  if (typeof path14 !== "string") {
372732
372202
  throw new TypeError("expected path to be a string");
@@ -372823,12 +372293,6 @@ var require_anymatch = __commonJS({
372823
372293
  // node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
372824
372294
  var require_is_extglob2 = __commonJS({
372825
372295
  "node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js"(exports2, module2) {
372826
- /*!
372827
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
372828
- *
372829
- * Copyright (c) 2014-2016, Jon Schlinkert.
372830
- * Licensed under the MIT License.
372831
- */
372832
372296
  module2.exports = function isExtglob(str2) {
372833
372297
  if (typeof str2 !== "string" || str2 === "") {
372834
372298
  return false;
@@ -372847,12 +372311,6 @@ var require_is_extglob2 = __commonJS({
372847
372311
  // node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
372848
372312
  var require_is_glob2 = __commonJS({
372849
372313
  "node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js"(exports2, module2) {
372850
- /*!
372851
- * is-glob <https://github.com/jonschlinkert/is-glob>
372852
- *
372853
- * Copyright (c) 2014-2017, Jon Schlinkert.
372854
- * Released under the MIT License.
372855
- */
372856
372314
  var isExtglob = require_is_extglob2();
372857
372315
  var chars = { "{": "}", "(": ")", "[": "]" };
372858
372316
  var strictCheck = function(str2) {
@@ -373129,12 +372587,6 @@ var require_stringify2 = __commonJS({
373129
372587
  var require_is_number2 = __commonJS({
373130
372588
  "node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports2, module2) {
373131
372589
  "use strict";
373132
- /*!
373133
- * is-number <https://github.com/jonschlinkert/is-number>
373134
- *
373135
- * Copyright (c) 2014-present, Jon Schlinkert.
373136
- * Released under the MIT License.
373137
- */
373138
372590
  module2.exports = function(num) {
373139
372591
  if (typeof num === "number") {
373140
372592
  return num - num === 0;
@@ -373151,12 +372603,6 @@ var require_is_number2 = __commonJS({
373151
372603
  var require_to_regex_range2 = __commonJS({
373152
372604
  "node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports2, module2) {
373153
372605
  "use strict";
373154
- /*!
373155
- * to-regex-range <https://github.com/micromatch/to-regex-range>
373156
- *
373157
- * Copyright (c) 2015-present, Jon Schlinkert.
373158
- * Released under the MIT License.
373159
- */
373160
372606
  var isNumber = require_is_number2();
373161
372607
  var toRegexRange = (min, max, options8) => {
373162
372608
  if (isNumber(min) === false) {
@@ -373369,12 +372815,6 @@ var require_to_regex_range2 = __commonJS({
373369
372815
  var require_fill_range2 = __commonJS({
373370
372816
  "node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports2, module2) {
373371
372817
  "use strict";
373372
- /*!
373373
- * fill-range <https://github.com/jonschlinkert/fill-range>
373374
- *
373375
- * Copyright (c) 2014-present, Jon Schlinkert.
373376
- * Licensed under the MIT License.
373377
- */
373378
372818
  var util3 = require("util");
373379
372819
  var toRegexRange = require_to_regex_range2();
373380
372820
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -376217,13 +375657,6 @@ var require_chokidar = __commonJS({
376217
375657
  var require_host3 = __commonJS({
376218
375658
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/host.js"(exports2) {
376219
375659
  "use strict";
376220
- /**
376221
- * @license
376222
- * Copyright Google LLC All Rights Reserved.
376223
- *
376224
- * Use of this source code is governed by an MIT-style license that can be
376225
- * found in the LICENSE file at https://angular.io/license
376226
- */
376227
375660
  Object.defineProperty(exports2, "__esModule", { value: true });
376228
375661
  exports2.NodeJsSyncHost = exports2.NodeJsAsyncHost = void 0;
376229
375662
  var node_fs_1 = require("node:fs");
@@ -376414,13 +375847,6 @@ var require_host3 = __commonJS({
376414
375847
  var require_node = __commonJS({
376415
375848
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/index.js"(exports2) {
376416
375849
  "use strict";
376417
- /**
376418
- * @license
376419
- * Copyright Google LLC All Rights Reserved.
376420
- *
376421
- * Use of this source code is governed by an MIT-style license that can be
376422
- * found in the LICENSE file at https://angular.io/license
376423
- */
376424
375850
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376425
375851
  if (k23 === void 0)
376426
375852
  k23 = k6;
@@ -376451,13 +375877,6 @@ var require_node = __commonJS({
376451
375877
  var require_action = __commonJS({
376452
375878
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/action.js"(exports2) {
376453
375879
  "use strict";
376454
- /**
376455
- * @license
376456
- * Copyright Google LLC All Rights Reserved.
376457
- *
376458
- * Use of this source code is governed by an MIT-style license that can be
376459
- * found in the LICENSE file at https://angular.io/license
376460
- */
376461
375880
  Object.defineProperty(exports2, "__esModule", { value: true });
376462
375881
  exports2.isContentAction = exports2.ActionList = exports2.UnknownActionException = void 0;
376463
375882
  var core_1 = require_src3();
@@ -376593,13 +376012,6 @@ var require_action = __commonJS({
376593
376012
  var require_sink = __commonJS({
376594
376013
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/sink.js"(exports2) {
376595
376014
  "use strict";
376596
- /**
376597
- * @license
376598
- * Copyright Google LLC All Rights Reserved.
376599
- *
376600
- * Use of this source code is governed by an MIT-style license that can be
376601
- * found in the LICENSE file at https://angular.io/license
376602
- */
376603
376015
  Object.defineProperty(exports2, "__esModule", { value: true });
376604
376016
  exports2.SimpleSinkBase = void 0;
376605
376017
  var rxjs_1 = require_cjs();
@@ -376712,13 +376124,6 @@ var require_sink = __commonJS({
376712
376124
  var require_host4 = __commonJS({
376713
376125
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/host.js"(exports2) {
376714
376126
  "use strict";
376715
- /**
376716
- * @license
376717
- * Copyright Google LLC All Rights Reserved.
376718
- *
376719
- * Use of this source code is governed by an MIT-style license that can be
376720
- * found in the LICENSE file at https://angular.io/license
376721
- */
376722
376127
  Object.defineProperty(exports2, "__esModule", { value: true });
376723
376128
  exports2.HostSink = void 0;
376724
376129
  var rxjs_1 = require_cjs();
@@ -376789,13 +376194,6 @@ var require_host4 = __commonJS({
376789
376194
  var require_dryrun = __commonJS({
376790
376195
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/dryrun.js"(exports2) {
376791
376196
  "use strict";
376792
- /**
376793
- * @license
376794
- * Copyright Google LLC All Rights Reserved.
376795
- *
376796
- * Use of this source code is governed by an MIT-style license that can be
376797
- * found in the LICENSE file at https://angular.io/license
376798
- */
376799
376197
  Object.defineProperty(exports2, "__esModule", { value: true });
376800
376198
  exports2.DryRunSink = void 0;
376801
376199
  var core_1 = require_src3();
@@ -376868,13 +376266,6 @@ var require_dryrun = __commonJS({
376868
376266
  var require_base2 = __commonJS({
376869
376267
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/base.js"(exports2) {
376870
376268
  "use strict";
376871
- /**
376872
- * @license
376873
- * Copyright Google LLC All Rights Reserved.
376874
- *
376875
- * Use of this source code is governed by an MIT-style license that can be
376876
- * found in the LICENSE file at https://angular.io/license
376877
- */
376878
376269
  Object.defineProperty(exports2, "__esModule", { value: true });
376879
376270
  exports2.BaseWorkflow = void 0;
376880
376271
  var core_1 = require_src3();
@@ -376998,13 +376389,6 @@ var require_base2 = __commonJS({
376998
376389
  var require_interface5 = __commonJS({
376999
376390
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/interface.js"(exports2) {
377000
376391
  "use strict";
377001
- /**
377002
- * @license
377003
- * Copyright Google LLC All Rights Reserved.
377004
- *
377005
- * Use of this source code is governed by an MIT-style license that can be
377006
- * found in the LICENSE file at https://angular.io/license
377007
- */
377008
376392
  Object.defineProperty(exports2, "__esModule", { value: true });
377009
376393
  }
377010
376394
  });
@@ -377013,13 +376397,6 @@ var require_interface5 = __commonJS({
377013
376397
  var require_workflow = __commonJS({
377014
376398
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/index.js"(exports2) {
377015
376399
  "use strict";
377016
- /**
377017
- * @license
377018
- * Copyright Google LLC All Rights Reserved.
377019
- *
377020
- * Use of this source code is governed by an MIT-style license that can be
377021
- * found in the LICENSE file at https://angular.io/license
377022
- */
377023
376400
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
377024
376401
  if (k23 === void 0)
377025
376402
  k23 = k6;
@@ -377050,13 +376427,6 @@ var require_workflow = __commonJS({
377050
376427
  var require_base3 = __commonJS({
377051
376428
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/base.js"(exports2) {
377052
376429
  "use strict";
377053
- /**
377054
- * @license
377055
- * Copyright Google LLC All Rights Reserved.
377056
- *
377057
- * Use of this source code is governed by an MIT-style license that can be
377058
- * found in the LICENSE file at https://angular.io/license
377059
- */
377060
376430
  Object.defineProperty(exports2, "__esModule", { value: true });
377061
376431
  exports2.applyToSubtree = exports2.composeFileOperators = exports2.forEach = exports2.partitionApplyMerge = exports2.when = exports2.branchAndMerge = exports2.asSource = exports2.filter = exports2.noop = exports2.mergeWith = exports2.apply = exports2.chain = exports2.empty = exports2.source = void 0;
377062
376432
  var rxjs_1 = require_cjs();
@@ -377196,13 +376566,6 @@ var require_base3 = __commonJS({
377196
376566
  var require_move3 = __commonJS({
377197
376567
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/move.js"(exports2) {
377198
376568
  "use strict";
377199
- /**
377200
- * @license
377201
- * Copyright Google LLC All Rights Reserved.
377202
- *
377203
- * Use of this source code is governed by an MIT-style license that can be
377204
- * found in the LICENSE file at https://angular.io/license
377205
- */
377206
376569
  Object.defineProperty(exports2, "__esModule", { value: true });
377207
376570
  exports2.move = void 0;
377208
376571
  var core_1 = require_src3();
@@ -377236,13 +376599,6 @@ var require_move3 = __commonJS({
377236
376599
  var require_random = __commonJS({
377237
376600
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/random.js"(exports2) {
377238
376601
  "use strict";
377239
- /**
377240
- * @license
377241
- * Copyright Google LLC All Rights Reserved.
377242
- *
377243
- * Use of this source code is governed by an MIT-style license that can be
377244
- * found in the LICENSE file at https://angular.io/license
377245
- */
377246
376602
  Object.defineProperty(exports2, "__esModule", { value: true });
377247
376603
  var host_tree_1 = require_host_tree();
377248
376604
  function generateStringOfLength(l) {
@@ -377275,13 +376631,6 @@ var require_random = __commonJS({
377275
376631
  var require_schematic2 = __commonJS({
377276
376632
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/schematic.js"(exports2) {
377277
376633
  "use strict";
377278
- /**
377279
- * @license
377280
- * Copyright Google LLC All Rights Reserved.
377281
- *
377282
- * Use of this source code is governed by an MIT-style license that can be
377283
- * found in the LICENSE file at https://angular.io/license
377284
- */
377285
376634
  Object.defineProperty(exports2, "__esModule", { value: true });
377286
376635
  exports2.schematic = exports2.externalSchematic = void 0;
377287
376636
  var rxjs_1 = require_cjs();
@@ -377316,13 +376665,6 @@ var require_schematic2 = __commonJS({
377316
376665
  var require_template2 = __commonJS({
377317
376666
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/template.js"(exports2) {
377318
376667
  "use strict";
377319
- /**
377320
- * @license
377321
- * Copyright Google LLC All Rights Reserved.
377322
- *
377323
- * Use of this source code is governed by an MIT-style license that can be
377324
- * found in the LICENSE file at https://angular.io/license
377325
- */
377326
376668
  Object.defineProperty(exports2, "__esModule", { value: true });
377327
376669
  exports2.applyTemplates = exports2.template = exports2.renameTemplateFiles = exports2.pathTemplate = exports2.applyPathTemplate = exports2.contentTemplate = exports2.applyContentTemplate = exports2.InvalidPipeException = exports2.UnknownPipeException = exports2.OptionIsNotDefinedException = exports2.TEMPLATE_FILENAME_RE = void 0;
377328
376670
  var core_1 = require_src3();
@@ -377473,13 +376815,6 @@ var require_template2 = __commonJS({
377473
376815
  var require_url = __commonJS({
377474
376816
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/url.js"(exports2) {
377475
376817
  "use strict";
377476
- /**
377477
- * @license
377478
- * Copyright Google LLC All Rights Reserved.
377479
- *
377480
- * Use of this source code is governed by an MIT-style license that can be
377481
- * found in the LICENSE file at https://angular.io/license
377482
- */
377483
376818
  Object.defineProperty(exports2, "__esModule", { value: true });
377484
376819
  exports2.url = void 0;
377485
376820
  var url_1 = require("url");
@@ -377495,13 +376830,6 @@ var require_url = __commonJS({
377495
376830
  var require_empty4 = __commonJS({
377496
376831
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/empty.js"(exports2) {
377497
376832
  "use strict";
377498
- /**
377499
- * @license
377500
- * Copyright Google LLC All Rights Reserved.
377501
- *
377502
- * Use of this source code is governed by an MIT-style license that can be
377503
- * found in the LICENSE file at https://angular.io/license
377504
- */
377505
376833
  Object.defineProperty(exports2, "__esModule", { value: true });
377506
376834
  exports2.EmptyTree = void 0;
377507
376835
  var host_tree_1 = require_host_tree();
@@ -377518,13 +376846,6 @@ var require_empty4 = __commonJS({
377518
376846
  var require_src4 = __commonJS({
377519
376847
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/index.js"(exports2) {
377520
376848
  "use strict";
377521
- /**
377522
- * @license
377523
- * Copyright Google LLC All Rights Reserved.
377524
- *
377525
- * Use of this source code is governed by an MIT-style license that can be
377526
- * found in the LICENSE file at https://angular.io/license
377527
- */
377528
376849
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
377529
376850
  if (k23 === void 0)
377530
376851
  k23 = k6;
@@ -377620,13 +376941,6 @@ var require_src4 = __commonJS({
377620
376941
  var require_options = __commonJS({
377621
376942
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/options.js"(exports2) {
377622
376943
  "use strict";
377623
- /**
377624
- * @license
377625
- * Copyright Google LLC All Rights Reserved.
377626
- *
377627
- * Use of this source code is governed by an MIT-style license that can be
377628
- * found in the LICENSE file at https://angular.io/license
377629
- */
377630
376944
  Object.defineProperty(exports2, "__esModule", { value: true });
377631
376945
  exports2.NodePackageName = void 0;
377632
376946
  exports2.NodePackageName = "node-package";
@@ -377637,13 +376951,6 @@ var require_options = __commonJS({
377637
376951
  var require_options2 = __commonJS({
377638
376952
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/options.js"(exports2) {
377639
376953
  "use strict";
377640
- /**
377641
- * @license
377642
- * Copyright Google LLC All Rights Reserved.
377643
- *
377644
- * Use of this source code is governed by an MIT-style license that can be
377645
- * found in the LICENSE file at https://angular.io/license
377646
- */
377647
376954
  Object.defineProperty(exports2, "__esModule", { value: true });
377648
376955
  exports2.RepositoryInitializerName = void 0;
377649
376956
  exports2.RepositoryInitializerName = "repo-init";
@@ -377654,13 +376961,6 @@ var require_options2 = __commonJS({
377654
376961
  var require_options3 = __commonJS({
377655
376962
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/options.js"(exports2) {
377656
376963
  "use strict";
377657
- /**
377658
- * @license
377659
- * Copyright Google LLC All Rights Reserved.
377660
- *
377661
- * Use of this source code is governed by an MIT-style license that can be
377662
- * found in the LICENSE file at https://angular.io/license
377663
- */
377664
376964
  Object.defineProperty(exports2, "__esModule", { value: true });
377665
376965
  exports2.RunSchematicName = void 0;
377666
376966
  exports2.RunSchematicName = "run-schematic";
@@ -381134,7 +380434,6 @@ var require_stream_duplex = __commonJS({
381134
380434
  // node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js
381135
380435
  var require_safe_buffer = __commonJS({
381136
380436
  "node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js"(exports2, module2) {
381137
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
381138
380437
  var buffer2 = require("buffer");
381139
380438
  var Buffer2 = buffer2.Buffer;
381140
380439
  function copyProps(src, dst) {
@@ -383609,13 +382908,6 @@ var require_ora = __commonJS({
383609
382908
  var require_executor = __commonJS({
383610
382909
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/executor.js"(exports2) {
383611
382910
  "use strict";
383612
- /**
383613
- * @license
383614
- * Copyright Google LLC All Rights Reserved.
383615
- *
383616
- * Use of this source code is governed by an MIT-style license that can be
383617
- * found in the LICENSE file at https://angular.io/license
383618
- */
383619
382911
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383620
382912
  if (k23 === void 0)
383621
382913
  k23 = k6;
@@ -383787,13 +383079,6 @@ var require_executor = __commonJS({
383787
383079
  var require_executor2 = __commonJS({
383788
383080
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/executor.js"(exports2) {
383789
383081
  "use strict";
383790
- /**
383791
- * @license
383792
- * Copyright Google LLC All Rights Reserved.
383793
- *
383794
- * Use of this source code is governed by an MIT-style license that can be
383795
- * found in the LICENSE file at https://angular.io/license
383796
- */
383797
383082
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383798
383083
  if (k23 === void 0)
383799
383084
  k23 = k6;
@@ -383890,13 +383175,6 @@ var require_executor2 = __commonJS({
383890
383175
  var require_executor3 = __commonJS({
383891
383176
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/executor.js"(exports2) {
383892
383177
  "use strict";
383893
- /**
383894
- * @license
383895
- * Copyright Google LLC All Rights Reserved.
383896
- *
383897
- * Use of this source code is governed by an MIT-style license that can be
383898
- * found in the LICENSE file at https://angular.io/license
383899
- */
383900
383178
  Object.defineProperty(exports2, "__esModule", { value: true });
383901
383179
  function default_1() {
383902
383180
  return (options8, context) => {
@@ -383925,13 +383203,6 @@ var require_executor3 = __commonJS({
383925
383203
  var require_node3 = __commonJS({
383926
383204
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/node/index.js"(exports2) {
383927
383205
  "use strict";
383928
- /**
383929
- * @license
383930
- * Copyright Google LLC All Rights Reserved.
383931
- *
383932
- * Use of this source code is governed by an MIT-style license that can be
383933
- * found in the LICENSE file at https://angular.io/license
383934
- */
383935
383206
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383936
383207
  if (k23 === void 0)
383937
383208
  k23 = k6;
@@ -383991,13 +383262,6 @@ var require_node3 = __commonJS({
383991
383262
  var require_description = __commonJS({
383992
383263
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/description.js"(exports2) {
383993
383264
  "use strict";
383994
- /**
383995
- * @license
383996
- * Copyright Google LLC All Rights Reserved.
383997
- *
383998
- * Use of this source code is governed by an MIT-style license that can be
383999
- * found in the LICENSE file at https://angular.io/license
384000
- */
384001
383265
  Object.defineProperty(exports2, "__esModule", { value: true });
384002
383266
  }
384003
383267
  });
@@ -384006,13 +383270,6 @@ var require_description = __commonJS({
384006
383270
  var require_export_ref = __commonJS({
384007
383271
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/export-ref.js"(exports2) {
384008
383272
  "use strict";
384009
- /**
384010
- * @license
384011
- * Copyright Google LLC All Rights Reserved.
384012
- *
384013
- * Use of this source code is governed by an MIT-style license that can be
384014
- * found in the LICENSE file at https://angular.io/license
384015
- */
384016
383273
  Object.defineProperty(exports2, "__esModule", { value: true });
384017
383274
  exports2.ExportStringRef = void 0;
384018
383275
  var path_1 = require("path");
@@ -384049,13 +383306,6 @@ var require_export_ref = __commonJS({
384049
383306
  var require_file_system_utility = __commonJS({
384050
383307
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-utility.js"(exports2) {
384051
383308
  "use strict";
384052
- /**
384053
- * @license
384054
- * Copyright Google LLC All Rights Reserved.
384055
- *
384056
- * Use of this source code is governed by an MIT-style license that can be
384057
- * found in the LICENSE file at https://angular.io/license
384058
- */
384059
383309
  Object.defineProperty(exports2, "__esModule", { value: true });
384060
383310
  exports2.readJsonFile = void 0;
384061
383311
  var schematics_1 = require_src4();
@@ -384081,13 +383331,6 @@ var require_file_system_utility = __commonJS({
384081
383331
  var require_file_system_engine_host_base = __commonJS({
384082
383332
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js"(exports2) {
384083
383333
  "use strict";
384084
- /**
384085
- * @license
384086
- * Copyright Google LLC All Rights Reserved.
384087
- *
384088
- * Use of this source code is governed by an MIT-style license that can be
384089
- * found in the LICENSE file at https://angular.io/license
384090
- */
384091
383334
  Object.defineProperty(exports2, "__esModule", { value: true });
384092
383335
  exports2.FileSystemEngineHostBase = exports2.SchematicNameCollisionException = exports2.SchematicMissingDescriptionException = exports2.SchematicMissingFieldsException = exports2.CollectionMissingFieldsException = exports2.CollectionMissingSchematicsMapException = exports2.FactoryCannotBeResolvedException = exports2.SchematicMissingFactoryException = exports2.InvalidCollectionJsonException = exports2.CollectionCannotBeResolvedException = void 0;
384093
383336
  var core_1 = require_src3();
@@ -384322,13 +383565,6 @@ var require_file_system_engine_host_base = __commonJS({
384322
383565
  var require_node_module_engine_host = __commonJS({
384323
383566
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js"(exports2) {
384324
383567
  "use strict";
384325
- /**
384326
- * @license
384327
- * Copyright Google LLC All Rights Reserved.
384328
- *
384329
- * Use of this source code is governed by an MIT-style license that can be
384330
- * found in the LICENSE file at https://angular.io/license
384331
- */
384332
383568
  Object.defineProperty(exports2, "__esModule", { value: true });
384333
383569
  exports2.NodeModulesEngineHost = exports2.NodePackageDoesNotSupportSchematics = void 0;
384334
383570
  var core_1 = require_src3();
@@ -384957,13 +384193,6 @@ var require_operators = __commonJS({
384957
384193
  var require_schema_option_transform = __commonJS({
384958
384194
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/schema-option-transform.js"(exports2) {
384959
384195
  "use strict";
384960
- /**
384961
- * @license
384962
- * Copyright Google LLC All Rights Reserved.
384963
- *
384964
- * Use of this source code is governed by an MIT-style license that can be
384965
- * found in the LICENSE file at https://angular.io/license
384966
- */
384967
384196
  Object.defineProperty(exports2, "__esModule", { value: true });
384968
384197
  exports2.validateOptionsWithSchema = exports2.InvalidInputOptions = void 0;
384969
384198
  var core_1 = require_src3();
@@ -385000,13 +384229,6 @@ Errors:
385000
384229
  var require_node_workflow = __commonJS({
385001
384230
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js"(exports2) {
385002
384231
  "use strict";
385003
- /**
385004
- * @license
385005
- * Copyright Google LLC All Rights Reserved.
385006
- *
385007
- * Use of this source code is governed by an MIT-style license that can be
385008
- * found in the LICENSE file at https://angular.io/license
385009
- */
385010
384232
  Object.defineProperty(exports2, "__esModule", { value: true });
385011
384233
  exports2.NodeWorkflow = void 0;
385012
384234
  var core_1 = require_src3();
@@ -385070,13 +384292,6 @@ var require_node_workflow = __commonJS({
385070
384292
  var require_file_system_engine_host = __commonJS({
385071
384293
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host.js"(exports2) {
385072
384294
  "use strict";
385073
- /**
385074
- * @license
385075
- * Copyright Google LLC All Rights Reserved.
385076
- *
385077
- * Use of this source code is governed by an MIT-style license that can be
385078
- * found in the LICENSE file at https://angular.io/license
385079
- */
385080
384295
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385081
384296
  if (k23 === void 0)
385082
384297
  k23 = k6;
@@ -385194,13 +384409,6 @@ var require_file_system_engine_host = __commonJS({
385194
384409
  var require_node_modules_test_engine_host = __commonJS({
385195
384410
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-modules-test-engine-host.js"(exports2) {
385196
384411
  "use strict";
385197
- /**
385198
- * @license
385199
- * Copyright Google LLC All Rights Reserved.
385200
- *
385201
- * Use of this source code is governed by an MIT-style license that can be
385202
- * found in the LICENSE file at https://angular.io/license
385203
- */
385204
384412
  Object.defineProperty(exports2, "__esModule", { value: true });
385205
384413
  exports2.NodeModulesTestEngineHost = void 0;
385206
384414
  var node_module_engine_host_1 = require_node_module_engine_host();
@@ -385240,13 +384448,6 @@ var require_node_modules_test_engine_host = __commonJS({
385240
384448
  var require_tools = __commonJS({
385241
384449
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/index.js"(exports2) {
385242
384450
  "use strict";
385243
- /**
385244
- * @license
385245
- * Copyright Google LLC All Rights Reserved.
385246
- *
385247
- * Use of this source code is governed by an MIT-style license that can be
385248
- * found in the LICENSE file at https://angular.io/license
385249
- */
385250
384451
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385251
384452
  if (k23 === void 0)
385252
384453
  k23 = k6;
@@ -385299,13 +384500,6 @@ var require_tools = __commonJS({
385299
384500
  var require_schematic_test_runner = __commonJS({
385300
384501
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/schematic-test-runner.js"(exports2) {
385301
384502
  "use strict";
385302
- /**
385303
- * @license
385304
- * Copyright Google LLC All Rights Reserved.
385305
- *
385306
- * Use of this source code is governed by an MIT-style license that can be
385307
- * found in the LICENSE file at https://angular.io/license
385308
- */
385309
384503
  Object.defineProperty(exports2, "__esModule", { value: true });
385310
384504
  exports2.SchematicTestRunner = exports2.UnitTestTree = void 0;
385311
384505
  var core_1 = require_src3();
@@ -385387,13 +384581,6 @@ var require_schematic_test_runner = __commonJS({
385387
384581
  var require_testing = __commonJS({
385388
384582
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/index.js"(exports2) {
385389
384583
  "use strict";
385390
- /**
385391
- * @license
385392
- * Copyright Google LLC All Rights Reserved.
385393
- *
385394
- * Use of this source code is governed by an MIT-style license that can be
385395
- * found in the LICENSE file at https://angular.io/license
385396
- */
385397
384584
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385398
384585
  if (k23 === void 0)
385399
384586
  k23 = k6;
@@ -385577,13 +384764,6 @@ var require_invoke_nx_generator = __commonJS({
385577
384764
  var require_api = __commonJS({
385578
384765
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/api.js"(exports2) {
385579
384766
  "use strict";
385580
- /**
385581
- * @license
385582
- * Copyright Google LLC All Rights Reserved.
385583
- *
385584
- * Use of this source code is governed by an MIT-style license that can be
385585
- * found in the LICENSE file at https://angular.io/license
385586
- */
385587
384767
  Object.defineProperty(exports2, "__esModule", { value: true });
385588
384768
  exports2.isJobHandler = exports2.JobState = exports2.JobOutboundMessageKind = exports2.JobInboundMessageKind = void 0;
385589
384769
  var JobInboundMessageKind;
@@ -385624,13 +384804,6 @@ var require_api = __commonJS({
385624
384804
  var require_strategy = __commonJS({
385625
384805
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/strategy.js"(exports2) {
385626
384806
  "use strict";
385627
- /**
385628
- * @license
385629
- * Copyright Google LLC All Rights Reserved.
385630
- *
385631
- * Use of this source code is governed by an MIT-style license that can be
385632
- * found in the LICENSE file at https://angular.io/license
385633
- */
385634
384807
  Object.defineProperty(exports2, "__esModule", { value: true });
385635
384808
  exports2.memoize = exports2.reuse = exports2.serialize = void 0;
385636
384809
  var core_1 = require_src3();
@@ -385706,13 +384879,6 @@ var require_strategy = __commonJS({
385706
384879
  var require_create_job_handler = __commonJS({
385707
384880
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/create-job-handler.js"(exports2) {
385708
384881
  "use strict";
385709
- /**
385710
- * @license
385711
- * Copyright Google LLC All Rights Reserved.
385712
- *
385713
- * Use of this source code is governed by an MIT-style license that can be
385714
- * found in the LICENSE file at https://angular.io/license
385715
- */
385716
384882
  Object.defineProperty(exports2, "__esModule", { value: true });
385717
384883
  exports2.createLoggerJob = exports2.createJobFactory = exports2.createJobHandler = exports2.ChannelAlreadyExistException = void 0;
385718
384884
  var core_1 = require_src3();
@@ -385831,13 +384997,6 @@ var require_create_job_handler = __commonJS({
385831
384997
  var require_exception4 = __commonJS({
385832
384998
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/exception.js"(exports2) {
385833
384999
  "use strict";
385834
- /**
385835
- * @license
385836
- * Copyright Google LLC All Rights Reserved.
385837
- *
385838
- * Use of this source code is governed by an MIT-style license that can be
385839
- * found in the LICENSE file at https://angular.io/license
385840
- */
385841
385000
  Object.defineProperty(exports2, "__esModule", { value: true });
385842
385001
  exports2.JobDoesNotExistException = exports2.JobNameAlreadyRegisteredException = void 0;
385843
385002
  var core_1 = require_src3();
@@ -385860,13 +385019,6 @@ var require_exception4 = __commonJS({
385860
385019
  var require_dispatcher = __commonJS({
385861
385020
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/dispatcher.js"(exports2) {
385862
385021
  "use strict";
385863
- /**
385864
- * @license
385865
- * Copyright Google LLC All Rights Reserved.
385866
- *
385867
- * Use of this source code is governed by an MIT-style license that can be
385868
- * found in the LICENSE file at https://angular.io/license
385869
- */
385870
385022
  Object.defineProperty(exports2, "__esModule", { value: true });
385871
385023
  exports2.createDispatcher = void 0;
385872
385024
  var api_1 = require_api();
@@ -385910,13 +385062,6 @@ var require_dispatcher = __commonJS({
385910
385062
  var require_fallback_registry = __commonJS({
385911
385063
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/fallback-registry.js"(exports2) {
385912
385064
  "use strict";
385913
- /**
385914
- * @license
385915
- * Copyright Google LLC All Rights Reserved.
385916
- *
385917
- * Use of this source code is governed by an MIT-style license that can be
385918
- * found in the LICENSE file at https://angular.io/license
385919
- */
385920
385065
  Object.defineProperty(exports2, "__esModule", { value: true });
385921
385066
  exports2.FallbackRegistry = void 0;
385922
385067
  var rxjs_1 = require_cjs();
@@ -385940,13 +385085,6 @@ var require_fallback_registry = __commonJS({
385940
385085
  var require_simple_registry = __commonJS({
385941
385086
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-registry.js"(exports2) {
385942
385087
  "use strict";
385943
- /**
385944
- * @license
385945
- * Copyright Google LLC All Rights Reserved.
385946
- *
385947
- * Use of this source code is governed by an MIT-style license that can be
385948
- * found in the LICENSE file at https://angular.io/license
385949
- */
385950
385088
  Object.defineProperty(exports2, "__esModule", { value: true });
385951
385089
  exports2.SimpleJobRegistry = void 0;
385952
385090
  var core_1 = require_src3();
@@ -386010,13 +385148,6 @@ var require_simple_registry = __commonJS({
386010
385148
  var require_simple_scheduler = __commonJS({
386011
385149
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-scheduler.js"(exports2) {
386012
385150
  "use strict";
386013
- /**
386014
- * @license
386015
- * Copyright Google LLC All Rights Reserved.
386016
- *
386017
- * Use of this source code is governed by an MIT-style license that can be
386018
- * found in the LICENSE file at https://angular.io/license
386019
- */
386020
385151
  Object.defineProperty(exports2, "__esModule", { value: true });
386021
385152
  exports2.SimpleScheduler = exports2.JobOutputSchemaValidationError = exports2.JobInboundMessageSchemaValidationError = exports2.JobArgumentSchemaValidationError = void 0;
386022
385153
  var core_1 = require_src3();
@@ -386386,13 +385517,6 @@ var require_simple_scheduler = __commonJS({
386386
385517
  var require_jobs = __commonJS({
386387
385518
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/index.js"(exports2) {
386388
385519
  "use strict";
386389
- /**
386390
- * @license
386391
- * Copyright Google LLC All Rights Reserved.
386392
- *
386393
- * Use of this source code is governed by an MIT-style license that can be
386394
- * found in the LICENSE file at https://angular.io/license
386395
- */
386396
385520
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
386397
385521
  if (k23 === void 0)
386398
385522
  k23 = k6;
@@ -386464,13 +385588,6 @@ var require_progress_schema = __commonJS({
386464
385588
  var require_api2 = __commonJS({
386465
385589
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/api.js"(exports2) {
386466
385590
  "use strict";
386467
- /**
386468
- * @license
386469
- * Copyright Google LLC All Rights Reserved.
386470
- *
386471
- * Use of this source code is governed by an MIT-style license that can be
386472
- * found in the LICENSE file at https://angular.io/license
386473
- */
386474
385591
  Object.defineProperty(exports2, "__esModule", { value: true });
386475
385592
  exports2.scheduleTargetAndForget = exports2.targetFromTargetString = exports2.targetStringFromTarget = exports2.fromAsyncIterable = exports2.isBuilderOutput = exports2.BuilderProgressState = void 0;
386476
385593
  var rxjs_1 = require_cjs();
@@ -386633,13 +385750,6 @@ var require_progress_schema2 = __commonJS({
386633
385750
  var require_schedule_by_name = __commonJS({
386634
385751
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/schedule-by-name.js"(exports2) {
386635
385752
  "use strict";
386636
- /**
386637
- * @license
386638
- * Copyright Google LLC All Rights Reserved.
386639
- *
386640
- * Use of this source code is governed by an MIT-style license that can be
386641
- * found in the LICENSE file at https://angular.io/license
386642
- */
386643
385753
  Object.defineProperty(exports2, "__esModule", { value: true });
386644
385754
  exports2.scheduleByTarget = exports2.scheduleByName = void 0;
386645
385755
  var rxjs_1 = require_cjs();
@@ -386821,13 +385931,6 @@ var require_output_schema = __commonJS({
386821
385931
  var require_architect = __commonJS({
386822
385932
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/architect.js"(exports2) {
386823
385933
  "use strict";
386824
- /**
386825
- * @license
386826
- * Copyright Google LLC All Rights Reserved.
386827
- *
386828
- * Use of this source code is governed by an MIT-style license that can be
386829
- * found in the LICENSE file at https://angular.io/license
386830
- */
386831
385934
  Object.defineProperty(exports2, "__esModule", { value: true });
386832
385935
  exports2.Architect = void 0;
386833
385936
  var core_1 = require_src3();
@@ -387094,13 +386197,6 @@ var require_architect = __commonJS({
387094
386197
  var require_internal = __commonJS({
387095
386198
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/internal.js"(exports2) {
387096
386199
  "use strict";
387097
- /**
387098
- * @license
387099
- * Copyright Google LLC All Rights Reserved.
387100
- *
387101
- * Use of this source code is governed by an MIT-style license that can be
387102
- * found in the LICENSE file at https://angular.io/license
387103
- */
387104
386200
  Object.defineProperty(exports2, "__esModule", { value: true });
387105
386201
  exports2.BuilderVersionSymbol = exports2.BuilderSymbol = void 0;
387106
386202
  exports2.BuilderSymbol = Symbol.for("@angular-devkit/architect:builder");
@@ -387153,13 +386249,6 @@ var require_package3 = __commonJS({
387153
386249
  var require_create_builder = __commonJS({
387154
386250
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/create-builder.js"(exports2) {
387155
386251
  "use strict";
387156
- /**
387157
- * @license
387158
- * Copyright Google LLC All Rights Reserved.
387159
- *
387160
- * Use of this source code is governed by an MIT-style license that can be
387161
- * found in the LICENSE file at https://angular.io/license
387162
- */
387163
386252
  Object.defineProperty(exports2, "__esModule", { value: true });
387164
386253
  exports2.createBuilder = void 0;
387165
386254
  var core_1 = require_src3();
@@ -387326,13 +386415,6 @@ var require_create_builder = __commonJS({
387326
386415
  var require_src5 = __commonJS({
387327
386416
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/index.js"(exports2) {
387328
386417
  "use strict";
387329
- /**
387330
- * @license
387331
- * Copyright Google LLC All Rights Reserved.
387332
- *
387333
- * Use of this source code is governed by an MIT-style license that can be
387334
- * found in the LICENSE file at https://angular.io/license
387335
- */
387336
386418
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
387337
386419
  if (k23 === void 0)
387338
386420
  k23 = k6;
@@ -388497,7 +387579,6 @@ var require_out5 = __commonJS({
388497
387579
  // node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
388498
387580
  var require_queue_microtask2 = __commonJS({
388499
387581
  "node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js"(exports2, module2) {
388500
- /*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
388501
387582
  var promise;
388502
387583
  module2.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
388503
387584
  throw err;
@@ -388508,7 +387589,6 @@ var require_queue_microtask2 = __commonJS({
388508
387589
  // node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
388509
387590
  var require_run_parallel2 = __commonJS({
388510
387591
  "node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js"(exports2, module2) {
388511
- /*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
388512
387592
  module2.exports = runParallel;
388513
387593
  var queueMicrotask2 = require_queue_microtask2();
388514
387594
  function runParallel(tasks, cb) {
@@ -422607,15 +421687,6 @@ If this is important to you, please consider supporting Rollup to make a native
422607
421687
  var require_parseAst = __commonJS({
422608
421688
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/parseAst.js"(exports2) {
422609
421689
  "use strict";
422610
- /*
422611
- @license
422612
- Rollup.js v4.10.0
422613
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
422614
-
422615
- https://github.com/rollup/rollup
422616
-
422617
- Released under the MIT License.
422618
- */
422619
421690
  var native_js = require_native();
422620
421691
  var node_path = require("node:path");
422621
421692
  function rangeContains(range, index) {
@@ -424931,15 +424002,6 @@ ${smallChunks} are below minChunkSize.`
424931
424002
  var require_rollup = __commonJS({
424932
424003
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/rollup.js"(exports2) {
424933
424004
  "use strict";
424934
- /*
424935
- @license
424936
- Rollup.js v4.10.0
424937
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
424938
-
424939
- https://github.com/rollup/rollup
424940
-
424941
- Released under the MIT License.
424942
- */
424943
424005
  var parseAst_js = require_parseAst();
424944
424006
  var process$1 = require("node:process");
424945
424007
  var tty2 = require("tty");
@@ -442639,15 +441701,6 @@ ${outro}`;
442639
441701
  var require_fsevents_importer = __commonJS({
442640
441702
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/fsevents-importer.js"(exports2) {
442641
441703
  "use strict";
442642
- /*
442643
- @license
442644
- Rollup.js v4.10.0
442645
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
442646
-
442647
- https://github.com/rollup/rollup
442648
-
442649
- Released under the MIT License.
442650
- */
442651
441704
  var fsEvents;
442652
441705
  var fsEventsImportError;
442653
441706
  async function loadFsEvents() {
@@ -442676,15 +441729,6 @@ var require_fsevents_importer = __commonJS({
442676
441729
  var require_shared = __commonJS({
442677
441730
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/index.js"(exports2) {
442678
441731
  "use strict";
442679
- /*
442680
- @license
442681
- Rollup.js v4.10.0
442682
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
442683
-
442684
- https://github.com/rollup/rollup
442685
-
442686
- Released under the MIT License.
442687
- */
442688
441732
  var rollup = require_rollup();
442689
441733
  var require$$0$1 = require("fs");
442690
441734
  var require$$2 = require("util");
@@ -442925,12 +441969,6 @@ var require_shared = __commonJS({
442925
441969
  readdirp$1.default = readdirp$1;
442926
441970
  var readdirp_1 = readdirp$1;
442927
441971
  var anymatch$2 = { exports: {} };
442928
- /*!
442929
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
442930
- *
442931
- * Copyright (c) 2014-2018, Jon Schlinkert.
442932
- * Released under the MIT License.
442933
- */
442934
441972
  var normalizePath$2 = function(path15, stripTrailing) {
442935
441973
  if (typeof path15 !== "string") {
442936
441974
  throw new TypeError("expected path to be a string");
@@ -443016,12 +442054,6 @@ var require_shared = __commonJS({
443016
442054
  anymatch$1.default = anymatch$1;
443017
442055
  anymatch$2.exports = anymatch$1;
443018
442056
  var anymatchExports = anymatch$2.exports;
443019
- /*!
443020
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
443021
- *
443022
- * Copyright (c) 2014-2016, Jon Schlinkert.
443023
- * Licensed under the MIT License.
443024
- */
443025
442057
  var isExtglob$1 = function isExtglob2(str2) {
443026
442058
  if (typeof str2 !== "string" || str2 === "") {
443027
442059
  return false;
@@ -443034,12 +442066,6 @@ var require_shared = __commonJS({
443034
442066
  }
443035
442067
  return false;
443036
442068
  };
443037
- /*!
443038
- * is-glob <https://github.com/jonschlinkert/is-glob>
443039
- *
443040
- * Copyright (c) 2014-2017, Jon Schlinkert.
443041
- * Released under the MIT License.
443042
- */
443043
442069
  var isExtglob = isExtglob$1;
443044
442070
  var chars = { "{": "}", "(": ")", "[": "]" };
443045
442071
  var strictCheck = function(str2) {
@@ -443291,12 +442317,6 @@ var require_shared = __commonJS({
443291
442317
  };
443292
442318
  return stringify2(ast);
443293
442319
  };
443294
- /*!
443295
- * is-number <https://github.com/jonschlinkert/is-number>
443296
- *
443297
- * Copyright (c) 2014-present, Jon Schlinkert.
443298
- * Released under the MIT License.
443299
- */
443300
442320
  var isNumber$2 = function(num) {
443301
442321
  if (typeof num === "number") {
443302
442322
  return num - num === 0;
@@ -443306,12 +442326,6 @@ var require_shared = __commonJS({
443306
442326
  }
443307
442327
  return false;
443308
442328
  };
443309
- /*!
443310
- * to-regex-range <https://github.com/micromatch/to-regex-range>
443311
- *
443312
- * Copyright (c) 2015-present, Jon Schlinkert.
443313
- * Released under the MIT License.
443314
- */
443315
442329
  var isNumber$1 = isNumber$2;
443316
442330
  var toRegexRange$1 = (min2, max, options8) => {
443317
442331
  if (isNumber$1(min2) === false) {
@@ -443517,12 +442531,6 @@ var require_shared = __commonJS({
443517
442531
  toRegexRange$1.cache = {};
443518
442532
  toRegexRange$1.clearCache = () => toRegexRange$1.cache = {};
443519
442533
  var toRegexRange_1 = toRegexRange$1;
443520
- /*!
443521
- * fill-range <https://github.com/jonschlinkert/fill-range>
443522
- *
443523
- * Copyright (c) 2014-present, Jon Schlinkert.
443524
- * Licensed under the MIT License.
443525
- */
443526
442534
  var util3 = require$$2;
443527
442535
  var toRegexRange = toRegexRange_1;
443528
442536
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -446288,15 +445296,6 @@ var require_shared = __commonJS({
446288
445296
  var require_watch = __commonJS({
446289
445297
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/watch.js"(exports2) {
446290
445298
  "use strict";
446291
- /*
446292
- @license
446293
- Rollup.js v4.10.0
446294
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
446295
-
446296
- https://github.com/rollup/rollup
446297
-
446298
- Released under the MIT License.
446299
- */
446300
445299
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
446301
445300
  var node_path = require("node:path");
446302
445301
  var process4 = require("node:process");
@@ -446596,15 +445595,6 @@ var require_watch = __commonJS({
446596
445595
  var require_rollup2 = __commonJS({
446597
445596
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/rollup.js"(exports2) {
446598
445597
  "use strict";
446599
- /*
446600
- @license
446601
- Rollup.js v4.10.0
446602
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
446603
-
446604
- https://github.com/rollup/rollup
446605
-
446606
- Released under the MIT License.
446607
- */
446608
445598
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
446609
445599
  var rollup = require_rollup();
446610
445600
  var parseAst_js = require_parseAst();
@@ -466401,21 +465391,6 @@ ${externalDependencies.map((dep) => {
466401
465391
  return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
466402
465392
  }).join("\n")}`
466403
465393
  );
466404
- const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
466405
- const prettierOptions = {
466406
- plugins: ["prettier-plugin-packagejson"],
466407
- trailingComma: "none",
466408
- tabWidth: 2,
466409
- semi: true,
466410
- singleQuote: false,
466411
- quoteProps: "preserve",
466412
- insertPragma: false,
466413
- bracketSameLine: true,
466414
- printWidth: 80,
466415
- bracketSpacing: true,
466416
- arrowParens: "avoid",
466417
- endOfLine: "lf"
466418
- };
466419
465394
  let entryPoints = [];
466420
465395
  if (options8.entry) {
466421
465396
  entryPoints.push(options8.entry);
@@ -466557,13 +465532,7 @@ ${externalDependencies.map((dep) => {
466557
465532
  packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit3.joinPathFragments)("packages", context.projectName);
466558
465533
  const packageJsonPath = (0, import_devkit3.joinPathFragments)(context.root, options8.outputPath, "package.json");
466559
465534
  writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
466560
- (0, import_node_fs3.writeFileSync)(
466561
- packageJsonPath,
466562
- await prettier.format(JSON.stringify(packageJson), {
466563
- ...prettierOptions,
466564
- parser: "json"
466565
- })
466566
- );
465535
+ (0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
466567
465536
  } else {
466568
465537
  writeWarning(config, "Skipping writing to package.json file");
466569
465538
  }
@@ -466578,15 +465547,9 @@ ${externalDependencies.map((dep) => {
466578
465547
  files.map(
466579
465548
  async (file) => (0, import_fs_extra.writeFile)(
466580
465549
  file,
466581
- await prettier.format(
466582
- `${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
465550
+ `${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
466583
465551
 
466584
465552
  ${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
466585
- {
466586
- ...prettierOptions,
466587
- parser: "typescript"
466588
- }
466589
- ),
466590
465553
  "utf-8"
466591
465554
  )
466592
465555
  )
@@ -466761,3 +465724,1297 @@ var executor_default2 = withRunExecutor(
466761
465724
  0 && (module.exports = {
466762
465725
  tsupBrowserBuildExecutorFn
466763
465726
  });
465727
+ /*! Bundled license information:
465728
+
465729
+ typescript/lib/typescript.js:
465730
+ (*! *****************************************************************************
465731
+ Copyright (c) Microsoft Corporation. All rights reserved.
465732
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
465733
+ this file except in compliance with the License. You may obtain a copy of the
465734
+ License at http://www.apache.org/licenses/LICENSE-2.0
465735
+
465736
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
465737
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
465738
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
465739
+ MERCHANTABLITY OR NON-INFRINGEMENT.
465740
+
465741
+ See the Apache Version 2.0 License for specific language governing permissions
465742
+ and limitations under the License.
465743
+ ***************************************************************************** *)
465744
+
465745
+ cosmiconfig/dist/loaders.js:
465746
+ (* istanbul ignore next -- @preserve *)
465747
+
465748
+ cosmiconfig/dist/util.js:
465749
+ (* istanbul ignore next -- @preserve *)
465750
+
465751
+ cosmiconfig/dist/ExplorerBase.js:
465752
+ (* istanbul ignore if -- @preserve *)
465753
+ (* istanbul ignore next -- @preserve *)
465754
+
465755
+ cosmiconfig/dist/Explorer.js:
465756
+ (* istanbul ignore if -- @preserve *)
465757
+
465758
+ cosmiconfig/dist/ExplorerSync.js:
465759
+ (* istanbul ignore if -- @preserve *)
465760
+
465761
+ ejs/lib/ejs.js:
465762
+ (**
465763
+ * @file Embedded JavaScript templating engine. {@link http://ejs.co}
465764
+ * @author Matthew Eernisse <mde@fleegix.org>
465765
+ * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
465766
+ * @project EJS
465767
+ * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
465768
+ *)
465769
+
465770
+ tmp/lib/tmp.js:
465771
+ (*!
465772
+ * Tmp
465773
+ *
465774
+ * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
465775
+ *
465776
+ * MIT Licensed
465777
+ *)
465778
+
465779
+ @angular-devkit/core/src/json/utils.js:
465780
+ (**
465781
+ * @license
465782
+ * Copyright Google LLC All Rights Reserved.
465783
+ *
465784
+ * Use of this source code is governed by an MIT-style license that can be
465785
+ * found in the LICENSE file at https://angular.io/license
465786
+ *)
465787
+
465788
+ @angular-devkit/core/src/json/schema/utility.js:
465789
+ (**
465790
+ * @license
465791
+ * Copyright Google LLC All Rights Reserved.
465792
+ *
465793
+ * Use of this source code is governed by an MIT-style license that can be
465794
+ * found in the LICENSE file at https://angular.io/license
465795
+ *)
465796
+
465797
+ @angular-devkit/core/src/json/schema/transforms.js:
465798
+ (**
465799
+ * @license
465800
+ * Copyright Google LLC All Rights Reserved.
465801
+ *
465802
+ * Use of this source code is governed by an MIT-style license that can be
465803
+ * found in the LICENSE file at https://angular.io/license
465804
+ *)
465805
+
465806
+ @angular-devkit/core/src/json/schema/interface.js:
465807
+ (**
465808
+ * @license
465809
+ * Copyright Google LLC All Rights Reserved.
465810
+ *
465811
+ * Use of this source code is governed by an MIT-style license that can be
465812
+ * found in the LICENSE file at https://angular.io/license
465813
+ *)
465814
+
465815
+ @angular-devkit/core/src/json/schema/pointer.js:
465816
+ (**
465817
+ * @license
465818
+ * Copyright Google LLC All Rights Reserved.
465819
+ *
465820
+ * Use of this source code is governed by an MIT-style license that can be
465821
+ * found in the LICENSE file at https://angular.io/license
465822
+ *)
465823
+
465824
+ uri-js/dist/es5/uri.all.js:
465825
+ (** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js *)
465826
+
465827
+ @angular-devkit/core/src/exception.js:
465828
+ (**
465829
+ * @license
465830
+ * Copyright Google LLC All Rights Reserved.
465831
+ *
465832
+ * Use of this source code is governed by an MIT-style license that can be
465833
+ * found in the LICENSE file at https://angular.io/license
465834
+ *)
465835
+
465836
+ @angular-devkit/core/src/utils/literals.js:
465837
+ (**
465838
+ * @license
465839
+ * Copyright Google LLC All Rights Reserved.
465840
+ *
465841
+ * Use of this source code is governed by an MIT-style license that can be
465842
+ * found in the LICENSE file at https://angular.io/license
465843
+ *)
465844
+
465845
+ @angular-devkit/core/src/utils/strings.js:
465846
+ (**
465847
+ * @license
465848
+ * Copyright Google LLC All Rights Reserved.
465849
+ *
465850
+ * Use of this source code is governed by an MIT-style license that can be
465851
+ * found in the LICENSE file at https://angular.io/license
465852
+ *)
465853
+
465854
+ @angular-devkit/core/src/utils/object.js:
465855
+ (**
465856
+ * @license
465857
+ * Copyright Google LLC All Rights Reserved.
465858
+ *
465859
+ * Use of this source code is governed by an MIT-style license that can be
465860
+ * found in the LICENSE file at https://angular.io/license
465861
+ *)
465862
+
465863
+ @angular-devkit/core/src/utils/template.js:
465864
+ (**
465865
+ * @license
465866
+ * Copyright Google LLC All Rights Reserved.
465867
+ *
465868
+ * Use of this source code is governed by an MIT-style license that can be
465869
+ * found in the LICENSE file at https://angular.io/license
465870
+ *)
465871
+
465872
+ @angular-devkit/core/src/utils/partially-ordered-set.js:
465873
+ (**
465874
+ * @license
465875
+ * Copyright Google LLC All Rights Reserved.
465876
+ *
465877
+ * Use of this source code is governed by an MIT-style license that can be
465878
+ * found in the LICENSE file at https://angular.io/license
465879
+ *)
465880
+
465881
+ @angular-devkit/core/src/utils/priority-queue.js:
465882
+ (**
465883
+ * @license
465884
+ * Copyright Google LLC All Rights Reserved.
465885
+ *
465886
+ * Use of this source code is governed by an MIT-style license that can be
465887
+ * found in the LICENSE file at https://angular.io/license
465888
+ *)
465889
+
465890
+ @angular-devkit/core/src/utils/lang.js:
465891
+ (**
465892
+ * @license
465893
+ * Copyright Google LLC All Rights Reserved.
465894
+ *
465895
+ * Use of this source code is governed by an MIT-style license that can be
465896
+ * found in the LICENSE file at https://angular.io/license
465897
+ *)
465898
+
465899
+ @angular-devkit/core/src/utils/index.js:
465900
+ (**
465901
+ * @license
465902
+ * Copyright Google LLC All Rights Reserved.
465903
+ *
465904
+ * Use of this source code is governed by an MIT-style license that can be
465905
+ * found in the LICENSE file at https://angular.io/license
465906
+ *)
465907
+
465908
+ @angular-devkit/core/src/json/schema/visitor.js:
465909
+ (**
465910
+ * @license
465911
+ * Copyright Google LLC All Rights Reserved.
465912
+ *
465913
+ * Use of this source code is governed by an MIT-style license that can be
465914
+ * found in the LICENSE file at https://angular.io/license
465915
+ *)
465916
+
465917
+ @angular-devkit/core/src/json/schema/registry.js:
465918
+ (**
465919
+ * @license
465920
+ * Copyright Google LLC All Rights Reserved.
465921
+ *
465922
+ * Use of this source code is governed by an MIT-style license that can be
465923
+ * found in the LICENSE file at https://angular.io/license
465924
+ *)
465925
+
465926
+ @angular-devkit/core/src/json/schema/schema.js:
465927
+ (**
465928
+ * @license
465929
+ * Copyright Google LLC All Rights Reserved.
465930
+ *
465931
+ * Use of this source code is governed by an MIT-style license that can be
465932
+ * found in the LICENSE file at https://angular.io/license
465933
+ *)
465934
+
465935
+ @angular-devkit/core/src/json/schema/index.js:
465936
+ (**
465937
+ * @license
465938
+ * Copyright Google LLC All Rights Reserved.
465939
+ *
465940
+ * Use of this source code is governed by an MIT-style license that can be
465941
+ * found in the LICENSE file at https://angular.io/license
465942
+ *)
465943
+
465944
+ @angular-devkit/core/src/json/index.js:
465945
+ (**
465946
+ * @license
465947
+ * Copyright Google LLC All Rights Reserved.
465948
+ *
465949
+ * Use of this source code is governed by an MIT-style license that can be
465950
+ * found in the LICENSE file at https://angular.io/license
465951
+ *)
465952
+
465953
+ @angular-devkit/core/src/logger/logger.js:
465954
+ (**
465955
+ * @license
465956
+ * Copyright Google LLC All Rights Reserved.
465957
+ *
465958
+ * Use of this source code is governed by an MIT-style license that can be
465959
+ * found in the LICENSE file at https://angular.io/license
465960
+ *)
465961
+
465962
+ @angular-devkit/core/src/logger/indent.js:
465963
+ (**
465964
+ * @license
465965
+ * Copyright Google LLC All Rights Reserved.
465966
+ *
465967
+ * Use of this source code is governed by an MIT-style license that can be
465968
+ * found in the LICENSE file at https://angular.io/license
465969
+ *)
465970
+
465971
+ @angular-devkit/core/src/logger/level.js:
465972
+ (**
465973
+ * @license
465974
+ * Copyright Google LLC All Rights Reserved.
465975
+ *
465976
+ * Use of this source code is governed by an MIT-style license that can be
465977
+ * found in the LICENSE file at https://angular.io/license
465978
+ *)
465979
+
465980
+ @angular-devkit/core/src/logger/null-logger.js:
465981
+ (**
465982
+ * @license
465983
+ * Copyright Google LLC All Rights Reserved.
465984
+ *
465985
+ * Use of this source code is governed by an MIT-style license that can be
465986
+ * found in the LICENSE file at https://angular.io/license
465987
+ *)
465988
+
465989
+ @angular-devkit/core/src/logger/transform-logger.js:
465990
+ (**
465991
+ * @license
465992
+ * Copyright Google LLC All Rights Reserved.
465993
+ *
465994
+ * Use of this source code is governed by an MIT-style license that can be
465995
+ * found in the LICENSE file at https://angular.io/license
465996
+ *)
465997
+
465998
+ @angular-devkit/core/src/logger/index.js:
465999
+ (**
466000
+ * @license
466001
+ * Copyright Google LLC All Rights Reserved.
466002
+ *
466003
+ * Use of this source code is governed by an MIT-style license that can be
466004
+ * found in the LICENSE file at https://angular.io/license
466005
+ *)
466006
+
466007
+ @angular-devkit/core/src/workspace/definitions.js:
466008
+ (**
466009
+ * @license
466010
+ * Copyright Google LLC All Rights Reserved.
466011
+ *
466012
+ * Use of this source code is governed by an MIT-style license that can be
466013
+ * found in the LICENSE file at https://angular.io/license
466014
+ *)
466015
+
466016
+ @angular-devkit/core/src/virtual-fs/path.js:
466017
+ (**
466018
+ * @license
466019
+ * Copyright Google LLC All Rights Reserved.
466020
+ *
466021
+ * Use of this source code is governed by an MIT-style license that can be
466022
+ * found in the LICENSE file at https://angular.io/license
466023
+ *)
466024
+
466025
+ @angular-devkit/core/src/virtual-fs/host/buffer.js:
466026
+ (**
466027
+ * @license
466028
+ * Copyright Google LLC All Rights Reserved.
466029
+ *
466030
+ * Use of this source code is governed by an MIT-style license that can be
466031
+ * found in the LICENSE file at https://angular.io/license
466032
+ *)
466033
+
466034
+ @angular-devkit/core/src/virtual-fs/host/interface.js:
466035
+ (**
466036
+ * @license
466037
+ * Copyright Google LLC All Rights Reserved.
466038
+ *
466039
+ * Use of this source code is governed by an MIT-style license that can be
466040
+ * found in the LICENSE file at https://angular.io/license
466041
+ *)
466042
+
466043
+ @angular-devkit/core/src/virtual-fs/host/memory.js:
466044
+ (**
466045
+ * @license
466046
+ * Copyright Google LLC All Rights Reserved.
466047
+ *
466048
+ * Use of this source code is governed by an MIT-style license that can be
466049
+ * found in the LICENSE file at https://angular.io/license
466050
+ *)
466051
+
466052
+ @angular-devkit/core/src/virtual-fs/host/sync.js:
466053
+ (**
466054
+ * @license
466055
+ * Copyright Google LLC All Rights Reserved.
466056
+ *
466057
+ * Use of this source code is governed by an MIT-style license that can be
466058
+ * found in the LICENSE file at https://angular.io/license
466059
+ *)
466060
+
466061
+ @angular-devkit/core/src/virtual-fs/host/test.js:
466062
+ (**
466063
+ * @license
466064
+ * Copyright Google LLC All Rights Reserved.
466065
+ *
466066
+ * Use of this source code is governed by an MIT-style license that can be
466067
+ * found in the LICENSE file at https://angular.io/license
466068
+ *)
466069
+
466070
+ @angular-devkit/core/src/virtual-fs/host/resolver.js:
466071
+ (**
466072
+ * @license
466073
+ * Copyright Google LLC All Rights Reserved.
466074
+ *
466075
+ * Use of this source code is governed by an MIT-style license that can be
466076
+ * found in the LICENSE file at https://angular.io/license
466077
+ *)
466078
+
466079
+ @angular-devkit/core/src/virtual-fs/host/alias.js:
466080
+ (**
466081
+ * @license
466082
+ * Copyright Google LLC All Rights Reserved.
466083
+ *
466084
+ * Use of this source code is governed by an MIT-style license that can be
466085
+ * found in the LICENSE file at https://angular.io/license
466086
+ *)
466087
+
466088
+ @angular-devkit/core/src/virtual-fs/host/create.js:
466089
+ (**
466090
+ * @license
466091
+ * Copyright Google LLC All Rights Reserved.
466092
+ *
466093
+ * Use of this source code is governed by an MIT-style license that can be
466094
+ * found in the LICENSE file at https://angular.io/license
466095
+ *)
466096
+
466097
+ @angular-devkit/core/src/virtual-fs/host/empty.js:
466098
+ (**
466099
+ * @license
466100
+ * Copyright Google LLC All Rights Reserved.
466101
+ *
466102
+ * Use of this source code is governed by an MIT-style license that can be
466103
+ * found in the LICENSE file at https://angular.io/license
466104
+ *)
466105
+
466106
+ @angular-devkit/core/src/virtual-fs/host/pattern.js:
466107
+ (**
466108
+ * @license
466109
+ * Copyright Google LLC All Rights Reserved.
466110
+ *
466111
+ * Use of this source code is governed by an MIT-style license that can be
466112
+ * found in the LICENSE file at https://angular.io/license
466113
+ *)
466114
+
466115
+ @angular-devkit/core/src/virtual-fs/host/record.js:
466116
+ (**
466117
+ * @license
466118
+ * Copyright Google LLC All Rights Reserved.
466119
+ *
466120
+ * Use of this source code is governed by an MIT-style license that can be
466121
+ * found in the LICENSE file at https://angular.io/license
466122
+ *)
466123
+
466124
+ @angular-devkit/core/src/virtual-fs/host/safe.js:
466125
+ (**
466126
+ * @license
466127
+ * Copyright Google LLC All Rights Reserved.
466128
+ *
466129
+ * Use of this source code is governed by an MIT-style license that can be
466130
+ * found in the LICENSE file at https://angular.io/license
466131
+ *)
466132
+
466133
+ @angular-devkit/core/src/virtual-fs/host/scoped.js:
466134
+ (**
466135
+ * @license
466136
+ * Copyright Google LLC All Rights Reserved.
466137
+ *
466138
+ * Use of this source code is governed by an MIT-style license that can be
466139
+ * found in the LICENSE file at https://angular.io/license
466140
+ *)
466141
+
466142
+ @angular-devkit/core/src/virtual-fs/host/index.js:
466143
+ (**
466144
+ * @license
466145
+ * Copyright Google LLC All Rights Reserved.
466146
+ *
466147
+ * Use of this source code is governed by an MIT-style license that can be
466148
+ * found in the LICENSE file at https://angular.io/license
466149
+ *)
466150
+
466151
+ @angular-devkit/core/src/virtual-fs/index.js:
466152
+ (**
466153
+ * @license
466154
+ * Copyright Google LLC All Rights Reserved.
466155
+ *
466156
+ * Use of this source code is governed by an MIT-style license that can be
466157
+ * found in the LICENSE file at https://angular.io/license
466158
+ *)
466159
+
466160
+ @angular-devkit/core/src/workspace/host.js:
466161
+ (**
466162
+ * @license
466163
+ * Copyright Google LLC All Rights Reserved.
466164
+ *
466165
+ * Use of this source code is governed by an MIT-style license that can be
466166
+ * found in the LICENSE file at https://angular.io/license
466167
+ *)
466168
+
466169
+ @angular-devkit/core/src/workspace/json/metadata.js:
466170
+ (**
466171
+ * @license
466172
+ * Copyright Google LLC All Rights Reserved.
466173
+ *
466174
+ * Use of this source code is governed by an MIT-style license that can be
466175
+ * found in the LICENSE file at https://angular.io/license
466176
+ *)
466177
+
466178
+ @angular-devkit/core/src/workspace/json/utilities.js:
466179
+ (**
466180
+ * @license
466181
+ * Copyright Google LLC All Rights Reserved.
466182
+ *
466183
+ * Use of this source code is governed by an MIT-style license that can be
466184
+ * found in the LICENSE file at https://angular.io/license
466185
+ *)
466186
+
466187
+ @angular-devkit/core/src/workspace/json/reader.js:
466188
+ (**
466189
+ * @license
466190
+ * Copyright Google LLC All Rights Reserved.
466191
+ *
466192
+ * Use of this source code is governed by an MIT-style license that can be
466193
+ * found in the LICENSE file at https://angular.io/license
466194
+ *)
466195
+
466196
+ @angular-devkit/core/src/workspace/json/writer.js:
466197
+ (**
466198
+ * @license
466199
+ * Copyright Google LLC All Rights Reserved.
466200
+ *
466201
+ * Use of this source code is governed by an MIT-style license that can be
466202
+ * found in the LICENSE file at https://angular.io/license
466203
+ *)
466204
+
466205
+ @angular-devkit/core/src/workspace/core.js:
466206
+ (**
466207
+ * @license
466208
+ * Copyright Google LLC All Rights Reserved.
466209
+ *
466210
+ * Use of this source code is governed by an MIT-style license that can be
466211
+ * found in the LICENSE file at https://angular.io/license
466212
+ *)
466213
+
466214
+ @angular-devkit/core/src/workspace/index.js:
466215
+ (**
466216
+ * @license
466217
+ * Copyright Google LLC All Rights Reserved.
466218
+ *
466219
+ * Use of this source code is governed by an MIT-style license that can be
466220
+ * found in the LICENSE file at https://angular.io/license
466221
+ *)
466222
+
466223
+ @angular-devkit/core/src/index.js:
466224
+ (**
466225
+ * @license
466226
+ * Copyright Google LLC All Rights Reserved.
466227
+ *
466228
+ * Use of this source code is governed by an MIT-style license that can be
466229
+ * found in the LICENSE file at https://angular.io/license
466230
+ *)
466231
+
466232
+ @angular-devkit/schematics/src/formats/html-selector.js:
466233
+ (**
466234
+ * @license
466235
+ * Copyright Google LLC All Rights Reserved.
466236
+ *
466237
+ * Use of this source code is governed by an MIT-style license that can be
466238
+ * found in the LICENSE file at https://angular.io/license
466239
+ *)
466240
+
466241
+ @angular-devkit/schematics/src/formats/path.js:
466242
+ (**
466243
+ * @license
466244
+ * Copyright Google LLC All Rights Reserved.
466245
+ *
466246
+ * Use of this source code is governed by an MIT-style license that can be
466247
+ * found in the LICENSE file at https://angular.io/license
466248
+ *)
466249
+
466250
+ @angular-devkit/schematics/src/formats/index.js:
466251
+ (**
466252
+ * @license
466253
+ * Copyright Google LLC All Rights Reserved.
466254
+ *
466255
+ * Use of this source code is governed by an MIT-style license that can be
466256
+ * found in the LICENSE file at https://angular.io/license
466257
+ *)
466258
+
466259
+ @angular-devkit/schematics/src/tree/interface.js:
466260
+ (**
466261
+ * @license
466262
+ * Copyright Google LLC All Rights Reserved.
466263
+ *
466264
+ * Use of this source code is governed by an MIT-style license that can be
466265
+ * found in the LICENSE file at https://angular.io/license
466266
+ *)
466267
+
466268
+ @angular-devkit/schematics/src/exception/exception.js:
466269
+ (**
466270
+ * @license
466271
+ * Copyright Google LLC All Rights Reserved.
466272
+ *
466273
+ * Use of this source code is governed by an MIT-style license that can be
466274
+ * found in the LICENSE file at https://angular.io/license
466275
+ *)
466276
+
466277
+ @angular-devkit/schematics/src/tree/delegate.js:
466278
+ (**
466279
+ * @license
466280
+ * Copyright Google LLC All Rights Reserved.
466281
+ *
466282
+ * Use of this source code is governed by an MIT-style license that can be
466283
+ * found in the LICENSE file at https://angular.io/license
466284
+ *)
466285
+
466286
+ @angular-devkit/schematics/src/tree/entry.js:
466287
+ (**
466288
+ * @license
466289
+ * Copyright Google LLC All Rights Reserved.
466290
+ *
466291
+ * Use of this source code is governed by an MIT-style license that can be
466292
+ * found in the LICENSE file at https://angular.io/license
466293
+ *)
466294
+
466295
+ @angular-devkit/schematics/src/utility/update-buffer.js:
466296
+ (**
466297
+ * @license
466298
+ * Copyright Google LLC All Rights Reserved.
466299
+ *
466300
+ * Use of this source code is governed by an MIT-style license that can be
466301
+ * found in the LICENSE file at https://angular.io/license
466302
+ *)
466303
+
466304
+ @angular-devkit/schematics/src/tree/recorder.js:
466305
+ (**
466306
+ * @license
466307
+ * Copyright Google LLC All Rights Reserved.
466308
+ *
466309
+ * Use of this source code is governed by an MIT-style license that can be
466310
+ * found in the LICENSE file at https://angular.io/license
466311
+ *)
466312
+
466313
+ @angular-devkit/schematics/src/tree/scoped.js:
466314
+ (**
466315
+ * @license
466316
+ * Copyright Google LLC All Rights Reserved.
466317
+ *
466318
+ * Use of this source code is governed by an MIT-style license that can be
466319
+ * found in the LICENSE file at https://angular.io/license
466320
+ *)
466321
+
466322
+ @angular-devkit/schematics/src/tree/host-tree.js:
466323
+ (**
466324
+ * @license
466325
+ * Copyright Google LLC All Rights Reserved.
466326
+ *
466327
+ * Use of this source code is governed by an MIT-style license that can be
466328
+ * found in the LICENSE file at https://angular.io/license
466329
+ *)
466330
+
466331
+ @angular-devkit/schematics/src/tree/static.js:
466332
+ (**
466333
+ * @license
466334
+ * Copyright Google LLC All Rights Reserved.
466335
+ *
466336
+ * Use of this source code is governed by an MIT-style license that can be
466337
+ * found in the LICENSE file at https://angular.io/license
466338
+ *)
466339
+
466340
+ @angular-devkit/schematics/src/tree/null.js:
466341
+ (**
466342
+ * @license
466343
+ * Copyright Google LLC All Rights Reserved.
466344
+ *
466345
+ * Use of this source code is governed by an MIT-style license that can be
466346
+ * found in the LICENSE file at https://angular.io/license
466347
+ *)
466348
+
466349
+ @angular-devkit/schematics/src/rules/call.js:
466350
+ (**
466351
+ * @license
466352
+ * Copyright Google LLC All Rights Reserved.
466353
+ *
466354
+ * Use of this source code is governed by an MIT-style license that can be
466355
+ * found in the LICENSE file at https://angular.io/license
466356
+ *)
466357
+
466358
+ @angular-devkit/schematics/src/engine/schematic.js:
466359
+ (**
466360
+ * @license
466361
+ * Copyright Google LLC All Rights Reserved.
466362
+ *
466363
+ * Use of this source code is governed by an MIT-style license that can be
466364
+ * found in the LICENSE file at https://angular.io/license
466365
+ *)
466366
+
466367
+ @angular-devkit/schematics/src/engine/engine.js:
466368
+ (**
466369
+ * @license
466370
+ * Copyright Google LLC All Rights Reserved.
466371
+ *
466372
+ * Use of this source code is governed by an MIT-style license that can be
466373
+ * found in the LICENSE file at https://angular.io/license
466374
+ *)
466375
+
466376
+ @angular-devkit/schematics/src/engine/interface.js:
466377
+ (**
466378
+ * @license
466379
+ * Copyright Google LLC All Rights Reserved.
466380
+ *
466381
+ * Use of this source code is governed by an MIT-style license that can be
466382
+ * found in the LICENSE file at https://angular.io/license
466383
+ *)
466384
+
466385
+ @angular-devkit/schematics/src/engine/index.js:
466386
+ (**
466387
+ * @license
466388
+ * Copyright Google LLC All Rights Reserved.
466389
+ *
466390
+ * Use of this source code is governed by an MIT-style license that can be
466391
+ * found in the LICENSE file at https://angular.io/license
466392
+ *)
466393
+
466394
+ @angular-devkit/core/node/cli-logger.js:
466395
+ (**
466396
+ * @license
466397
+ * Copyright Google LLC All Rights Reserved.
466398
+ *
466399
+ * Use of this source code is governed by an MIT-style license that can be
466400
+ * found in the LICENSE file at https://angular.io/license
466401
+ *)
466402
+
466403
+ normalize-path/index.js:
466404
+ (*!
466405
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
466406
+ *
466407
+ * Copyright (c) 2014-2018, Jon Schlinkert.
466408
+ * Released under the MIT License.
466409
+ *)
466410
+
466411
+ is-extglob/index.js:
466412
+ (*!
466413
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
466414
+ *
466415
+ * Copyright (c) 2014-2016, Jon Schlinkert.
466416
+ * Licensed under the MIT License.
466417
+ *)
466418
+
466419
+ is-glob/index.js:
466420
+ (*!
466421
+ * is-glob <https://github.com/jonschlinkert/is-glob>
466422
+ *
466423
+ * Copyright (c) 2014-2017, Jon Schlinkert.
466424
+ * Released under the MIT License.
466425
+ *)
466426
+
466427
+ is-number/index.js:
466428
+ (*!
466429
+ * is-number <https://github.com/jonschlinkert/is-number>
466430
+ *
466431
+ * Copyright (c) 2014-present, Jon Schlinkert.
466432
+ * Released under the MIT License.
466433
+ *)
466434
+
466435
+ to-regex-range/index.js:
466436
+ (*!
466437
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
466438
+ *
466439
+ * Copyright (c) 2015-present, Jon Schlinkert.
466440
+ * Released under the MIT License.
466441
+ *)
466442
+
466443
+ fill-range/index.js:
466444
+ (*!
466445
+ * fill-range <https://github.com/jonschlinkert/fill-range>
466446
+ *
466447
+ * Copyright (c) 2014-present, Jon Schlinkert.
466448
+ * Licensed under the MIT License.
466449
+ *)
466450
+
466451
+ @angular-devkit/core/node/host.js:
466452
+ (**
466453
+ * @license
466454
+ * Copyright Google LLC All Rights Reserved.
466455
+ *
466456
+ * Use of this source code is governed by an MIT-style license that can be
466457
+ * found in the LICENSE file at https://angular.io/license
466458
+ *)
466459
+
466460
+ @angular-devkit/core/node/index.js:
466461
+ (**
466462
+ * @license
466463
+ * Copyright Google LLC All Rights Reserved.
466464
+ *
466465
+ * Use of this source code is governed by an MIT-style license that can be
466466
+ * found in the LICENSE file at https://angular.io/license
466467
+ *)
466468
+
466469
+ @angular-devkit/schematics/src/tree/action.js:
466470
+ (**
466471
+ * @license
466472
+ * Copyright Google LLC All Rights Reserved.
466473
+ *
466474
+ * Use of this source code is governed by an MIT-style license that can be
466475
+ * found in the LICENSE file at https://angular.io/license
466476
+ *)
466477
+
466478
+ @angular-devkit/schematics/src/sink/sink.js:
466479
+ (**
466480
+ * @license
466481
+ * Copyright Google LLC All Rights Reserved.
466482
+ *
466483
+ * Use of this source code is governed by an MIT-style license that can be
466484
+ * found in the LICENSE file at https://angular.io/license
466485
+ *)
466486
+
466487
+ @angular-devkit/schematics/src/sink/host.js:
466488
+ (**
466489
+ * @license
466490
+ * Copyright Google LLC All Rights Reserved.
466491
+ *
466492
+ * Use of this source code is governed by an MIT-style license that can be
466493
+ * found in the LICENSE file at https://angular.io/license
466494
+ *)
466495
+
466496
+ @angular-devkit/schematics/src/sink/dryrun.js:
466497
+ (**
466498
+ * @license
466499
+ * Copyright Google LLC All Rights Reserved.
466500
+ *
466501
+ * Use of this source code is governed by an MIT-style license that can be
466502
+ * found in the LICENSE file at https://angular.io/license
466503
+ *)
466504
+
466505
+ @angular-devkit/schematics/src/workflow/base.js:
466506
+ (**
466507
+ * @license
466508
+ * Copyright Google LLC All Rights Reserved.
466509
+ *
466510
+ * Use of this source code is governed by an MIT-style license that can be
466511
+ * found in the LICENSE file at https://angular.io/license
466512
+ *)
466513
+
466514
+ @angular-devkit/schematics/src/workflow/interface.js:
466515
+ (**
466516
+ * @license
466517
+ * Copyright Google LLC All Rights Reserved.
466518
+ *
466519
+ * Use of this source code is governed by an MIT-style license that can be
466520
+ * found in the LICENSE file at https://angular.io/license
466521
+ *)
466522
+
466523
+ @angular-devkit/schematics/src/workflow/index.js:
466524
+ (**
466525
+ * @license
466526
+ * Copyright Google LLC All Rights Reserved.
466527
+ *
466528
+ * Use of this source code is governed by an MIT-style license that can be
466529
+ * found in the LICENSE file at https://angular.io/license
466530
+ *)
466531
+
466532
+ @angular-devkit/schematics/src/rules/base.js:
466533
+ (**
466534
+ * @license
466535
+ * Copyright Google LLC All Rights Reserved.
466536
+ *
466537
+ * Use of this source code is governed by an MIT-style license that can be
466538
+ * found in the LICENSE file at https://angular.io/license
466539
+ *)
466540
+
466541
+ @angular-devkit/schematics/src/rules/move.js:
466542
+ (**
466543
+ * @license
466544
+ * Copyright Google LLC All Rights Reserved.
466545
+ *
466546
+ * Use of this source code is governed by an MIT-style license that can be
466547
+ * found in the LICENSE file at https://angular.io/license
466548
+ *)
466549
+
466550
+ @angular-devkit/schematics/src/rules/random.js:
466551
+ (**
466552
+ * @license
466553
+ * Copyright Google LLC All Rights Reserved.
466554
+ *
466555
+ * Use of this source code is governed by an MIT-style license that can be
466556
+ * found in the LICENSE file at https://angular.io/license
466557
+ *)
466558
+
466559
+ @angular-devkit/schematics/src/rules/schematic.js:
466560
+ (**
466561
+ * @license
466562
+ * Copyright Google LLC All Rights Reserved.
466563
+ *
466564
+ * Use of this source code is governed by an MIT-style license that can be
466565
+ * found in the LICENSE file at https://angular.io/license
466566
+ *)
466567
+
466568
+ @angular-devkit/schematics/src/rules/template.js:
466569
+ (**
466570
+ * @license
466571
+ * Copyright Google LLC All Rights Reserved.
466572
+ *
466573
+ * Use of this source code is governed by an MIT-style license that can be
466574
+ * found in the LICENSE file at https://angular.io/license
466575
+ *)
466576
+
466577
+ @angular-devkit/schematics/src/rules/url.js:
466578
+ (**
466579
+ * @license
466580
+ * Copyright Google LLC All Rights Reserved.
466581
+ *
466582
+ * Use of this source code is governed by an MIT-style license that can be
466583
+ * found in the LICENSE file at https://angular.io/license
466584
+ *)
466585
+
466586
+ @angular-devkit/schematics/src/tree/empty.js:
466587
+ (**
466588
+ * @license
466589
+ * Copyright Google LLC All Rights Reserved.
466590
+ *
466591
+ * Use of this source code is governed by an MIT-style license that can be
466592
+ * found in the LICENSE file at https://angular.io/license
466593
+ *)
466594
+
466595
+ @angular-devkit/schematics/src/index.js:
466596
+ (**
466597
+ * @license
466598
+ * Copyright Google LLC All Rights Reserved.
466599
+ *
466600
+ * Use of this source code is governed by an MIT-style license that can be
466601
+ * found in the LICENSE file at https://angular.io/license
466602
+ *)
466603
+
466604
+ @angular-devkit/schematics/tasks/package-manager/options.js:
466605
+ (**
466606
+ * @license
466607
+ * Copyright Google LLC All Rights Reserved.
466608
+ *
466609
+ * Use of this source code is governed by an MIT-style license that can be
466610
+ * found in the LICENSE file at https://angular.io/license
466611
+ *)
466612
+
466613
+ @angular-devkit/schematics/tasks/repo-init/options.js:
466614
+ (**
466615
+ * @license
466616
+ * Copyright Google LLC All Rights Reserved.
466617
+ *
466618
+ * Use of this source code is governed by an MIT-style license that can be
466619
+ * found in the LICENSE file at https://angular.io/license
466620
+ *)
466621
+
466622
+ @angular-devkit/schematics/tasks/run-schematic/options.js:
466623
+ (**
466624
+ * @license
466625
+ * Copyright Google LLC All Rights Reserved.
466626
+ *
466627
+ * Use of this source code is governed by an MIT-style license that can be
466628
+ * found in the LICENSE file at https://angular.io/license
466629
+ *)
466630
+
466631
+ safe-buffer/index.js:
466632
+ (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466633
+
466634
+ @angular-devkit/schematics/tasks/package-manager/executor.js:
466635
+ (**
466636
+ * @license
466637
+ * Copyright Google LLC All Rights Reserved.
466638
+ *
466639
+ * Use of this source code is governed by an MIT-style license that can be
466640
+ * found in the LICENSE file at https://angular.io/license
466641
+ *)
466642
+
466643
+ @angular-devkit/schematics/tasks/repo-init/executor.js:
466644
+ (**
466645
+ * @license
466646
+ * Copyright Google LLC All Rights Reserved.
466647
+ *
466648
+ * Use of this source code is governed by an MIT-style license that can be
466649
+ * found in the LICENSE file at https://angular.io/license
466650
+ *)
466651
+
466652
+ @angular-devkit/schematics/tasks/run-schematic/executor.js:
466653
+ (**
466654
+ * @license
466655
+ * Copyright Google LLC All Rights Reserved.
466656
+ *
466657
+ * Use of this source code is governed by an MIT-style license that can be
466658
+ * found in the LICENSE file at https://angular.io/license
466659
+ *)
466660
+
466661
+ @angular-devkit/schematics/tasks/node/index.js:
466662
+ (**
466663
+ * @license
466664
+ * Copyright Google LLC All Rights Reserved.
466665
+ *
466666
+ * Use of this source code is governed by an MIT-style license that can be
466667
+ * found in the LICENSE file at https://angular.io/license
466668
+ *)
466669
+
466670
+ @angular-devkit/schematics/tools/description.js:
466671
+ (**
466672
+ * @license
466673
+ * Copyright Google LLC All Rights Reserved.
466674
+ *
466675
+ * Use of this source code is governed by an MIT-style license that can be
466676
+ * found in the LICENSE file at https://angular.io/license
466677
+ *)
466678
+
466679
+ @angular-devkit/schematics/tools/export-ref.js:
466680
+ (**
466681
+ * @license
466682
+ * Copyright Google LLC All Rights Reserved.
466683
+ *
466684
+ * Use of this source code is governed by an MIT-style license that can be
466685
+ * found in the LICENSE file at https://angular.io/license
466686
+ *)
466687
+
466688
+ @angular-devkit/schematics/tools/file-system-utility.js:
466689
+ (**
466690
+ * @license
466691
+ * Copyright Google LLC All Rights Reserved.
466692
+ *
466693
+ * Use of this source code is governed by an MIT-style license that can be
466694
+ * found in the LICENSE file at https://angular.io/license
466695
+ *)
466696
+
466697
+ @angular-devkit/schematics/tools/file-system-engine-host-base.js:
466698
+ (**
466699
+ * @license
466700
+ * Copyright Google LLC All Rights Reserved.
466701
+ *
466702
+ * Use of this source code is governed by an MIT-style license that can be
466703
+ * found in the LICENSE file at https://angular.io/license
466704
+ *)
466705
+
466706
+ @angular-devkit/schematics/tools/node-module-engine-host.js:
466707
+ (**
466708
+ * @license
466709
+ * Copyright Google LLC All Rights Reserved.
466710
+ *
466711
+ * Use of this source code is governed by an MIT-style license that can be
466712
+ * found in the LICENSE file at https://angular.io/license
466713
+ *)
466714
+
466715
+ @angular-devkit/schematics/tools/schema-option-transform.js:
466716
+ (**
466717
+ * @license
466718
+ * Copyright Google LLC All Rights Reserved.
466719
+ *
466720
+ * Use of this source code is governed by an MIT-style license that can be
466721
+ * found in the LICENSE file at https://angular.io/license
466722
+ *)
466723
+
466724
+ @angular-devkit/schematics/tools/workflow/node-workflow.js:
466725
+ (**
466726
+ * @license
466727
+ * Copyright Google LLC All Rights Reserved.
466728
+ *
466729
+ * Use of this source code is governed by an MIT-style license that can be
466730
+ * found in the LICENSE file at https://angular.io/license
466731
+ *)
466732
+
466733
+ @angular-devkit/schematics/tools/file-system-engine-host.js:
466734
+ (**
466735
+ * @license
466736
+ * Copyright Google LLC All Rights Reserved.
466737
+ *
466738
+ * Use of this source code is governed by an MIT-style license that can be
466739
+ * found in the LICENSE file at https://angular.io/license
466740
+ *)
466741
+
466742
+ @angular-devkit/schematics/tools/node-modules-test-engine-host.js:
466743
+ (**
466744
+ * @license
466745
+ * Copyright Google LLC All Rights Reserved.
466746
+ *
466747
+ * Use of this source code is governed by an MIT-style license that can be
466748
+ * found in the LICENSE file at https://angular.io/license
466749
+ *)
466750
+
466751
+ @angular-devkit/schematics/tools/index.js:
466752
+ (**
466753
+ * @license
466754
+ * Copyright Google LLC All Rights Reserved.
466755
+ *
466756
+ * Use of this source code is governed by an MIT-style license that can be
466757
+ * found in the LICENSE file at https://angular.io/license
466758
+ *)
466759
+
466760
+ @angular-devkit/schematics/testing/schematic-test-runner.js:
466761
+ (**
466762
+ * @license
466763
+ * Copyright Google LLC All Rights Reserved.
466764
+ *
466765
+ * Use of this source code is governed by an MIT-style license that can be
466766
+ * found in the LICENSE file at https://angular.io/license
466767
+ *)
466768
+
466769
+ @angular-devkit/schematics/testing/index.js:
466770
+ (**
466771
+ * @license
466772
+ * Copyright Google LLC All Rights Reserved.
466773
+ *
466774
+ * Use of this source code is governed by an MIT-style license that can be
466775
+ * found in the LICENSE file at https://angular.io/license
466776
+ *)
466777
+
466778
+ @angular-devkit/architect/src/jobs/api.js:
466779
+ (**
466780
+ * @license
466781
+ * Copyright Google LLC All Rights Reserved.
466782
+ *
466783
+ * Use of this source code is governed by an MIT-style license that can be
466784
+ * found in the LICENSE file at https://angular.io/license
466785
+ *)
466786
+
466787
+ @angular-devkit/architect/src/jobs/strategy.js:
466788
+ (**
466789
+ * @license
466790
+ * Copyright Google LLC All Rights Reserved.
466791
+ *
466792
+ * Use of this source code is governed by an MIT-style license that can be
466793
+ * found in the LICENSE file at https://angular.io/license
466794
+ *)
466795
+
466796
+ @angular-devkit/architect/src/jobs/create-job-handler.js:
466797
+ (**
466798
+ * @license
466799
+ * Copyright Google LLC All Rights Reserved.
466800
+ *
466801
+ * Use of this source code is governed by an MIT-style license that can be
466802
+ * found in the LICENSE file at https://angular.io/license
466803
+ *)
466804
+
466805
+ @angular-devkit/architect/src/jobs/exception.js:
466806
+ (**
466807
+ * @license
466808
+ * Copyright Google LLC All Rights Reserved.
466809
+ *
466810
+ * Use of this source code is governed by an MIT-style license that can be
466811
+ * found in the LICENSE file at https://angular.io/license
466812
+ *)
466813
+
466814
+ @angular-devkit/architect/src/jobs/dispatcher.js:
466815
+ (**
466816
+ * @license
466817
+ * Copyright Google LLC All Rights Reserved.
466818
+ *
466819
+ * Use of this source code is governed by an MIT-style license that can be
466820
+ * found in the LICENSE file at https://angular.io/license
466821
+ *)
466822
+
466823
+ @angular-devkit/architect/src/jobs/fallback-registry.js:
466824
+ (**
466825
+ * @license
466826
+ * Copyright Google LLC All Rights Reserved.
466827
+ *
466828
+ * Use of this source code is governed by an MIT-style license that can be
466829
+ * found in the LICENSE file at https://angular.io/license
466830
+ *)
466831
+
466832
+ @angular-devkit/architect/src/jobs/simple-registry.js:
466833
+ (**
466834
+ * @license
466835
+ * Copyright Google LLC All Rights Reserved.
466836
+ *
466837
+ * Use of this source code is governed by an MIT-style license that can be
466838
+ * found in the LICENSE file at https://angular.io/license
466839
+ *)
466840
+
466841
+ @angular-devkit/architect/src/jobs/simple-scheduler.js:
466842
+ (**
466843
+ * @license
466844
+ * Copyright Google LLC All Rights Reserved.
466845
+ *
466846
+ * Use of this source code is governed by an MIT-style license that can be
466847
+ * found in the LICENSE file at https://angular.io/license
466848
+ *)
466849
+
466850
+ @angular-devkit/architect/src/jobs/index.js:
466851
+ (**
466852
+ * @license
466853
+ * Copyright Google LLC All Rights Reserved.
466854
+ *
466855
+ * Use of this source code is governed by an MIT-style license that can be
466856
+ * found in the LICENSE file at https://angular.io/license
466857
+ *)
466858
+
466859
+ @angular-devkit/architect/src/api.js:
466860
+ (**
466861
+ * @license
466862
+ * Copyright Google LLC All Rights Reserved.
466863
+ *
466864
+ * Use of this source code is governed by an MIT-style license that can be
466865
+ * found in the LICENSE file at https://angular.io/license
466866
+ *)
466867
+
466868
+ @angular-devkit/architect/src/schedule-by-name.js:
466869
+ (**
466870
+ * @license
466871
+ * Copyright Google LLC All Rights Reserved.
466872
+ *
466873
+ * Use of this source code is governed by an MIT-style license that can be
466874
+ * found in the LICENSE file at https://angular.io/license
466875
+ *)
466876
+
466877
+ @angular-devkit/architect/src/architect.js:
466878
+ (**
466879
+ * @license
466880
+ * Copyright Google LLC All Rights Reserved.
466881
+ *
466882
+ * Use of this source code is governed by an MIT-style license that can be
466883
+ * found in the LICENSE file at https://angular.io/license
466884
+ *)
466885
+
466886
+ @angular-devkit/architect/src/internal.js:
466887
+ (**
466888
+ * @license
466889
+ * Copyright Google LLC All Rights Reserved.
466890
+ *
466891
+ * Use of this source code is governed by an MIT-style license that can be
466892
+ * found in the LICENSE file at https://angular.io/license
466893
+ *)
466894
+
466895
+ @angular-devkit/architect/src/create-builder.js:
466896
+ (**
466897
+ * @license
466898
+ * Copyright Google LLC All Rights Reserved.
466899
+ *
466900
+ * Use of this source code is governed by an MIT-style license that can be
466901
+ * found in the LICENSE file at https://angular.io/license
466902
+ *)
466903
+
466904
+ @angular-devkit/architect/src/index.js:
466905
+ (**
466906
+ * @license
466907
+ * Copyright Google LLC All Rights Reserved.
466908
+ *
466909
+ * Use of this source code is governed by an MIT-style license that can be
466910
+ * found in the LICENSE file at https://angular.io/license
466911
+ *)
466912
+
466913
+ queue-microtask/index.js:
466914
+ (*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466915
+
466916
+ run-parallel/index.js:
466917
+ (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466918
+
466919
+ rollup/dist/shared/parseAst.js:
466920
+ (*
466921
+ @license
466922
+ Rollup.js v4.10.0
466923
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466924
+
466925
+ https://github.com/rollup/rollup
466926
+
466927
+ Released under the MIT License.
466928
+ *)
466929
+
466930
+ rollup/dist/shared/rollup.js:
466931
+ (*
466932
+ @license
466933
+ Rollup.js v4.10.0
466934
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466935
+
466936
+ https://github.com/rollup/rollup
466937
+
466938
+ Released under the MIT License.
466939
+ *)
466940
+
466941
+ rollup/dist/shared/fsevents-importer.js:
466942
+ (*
466943
+ @license
466944
+ Rollup.js v4.10.0
466945
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466946
+
466947
+ https://github.com/rollup/rollup
466948
+
466949
+ Released under the MIT License.
466950
+ *)
466951
+
466952
+ rollup/dist/shared/index.js:
466953
+ (*
466954
+ @license
466955
+ Rollup.js v4.10.0
466956
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466957
+
466958
+ https://github.com/rollup/rollup
466959
+
466960
+ Released under the MIT License.
466961
+ *)
466962
+ (*!
466963
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
466964
+ *
466965
+ * Copyright (c) 2014-2018, Jon Schlinkert.
466966
+ * Released under the MIT License.
466967
+ *)
466968
+ (*!
466969
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
466970
+ *
466971
+ * Copyright (c) 2014-2016, Jon Schlinkert.
466972
+ * Licensed under the MIT License.
466973
+ *)
466974
+ (*!
466975
+ * is-glob <https://github.com/jonschlinkert/is-glob>
466976
+ *
466977
+ * Copyright (c) 2014-2017, Jon Schlinkert.
466978
+ * Released under the MIT License.
466979
+ *)
466980
+ (*!
466981
+ * is-number <https://github.com/jonschlinkert/is-number>
466982
+ *
466983
+ * Copyright (c) 2014-present, Jon Schlinkert.
466984
+ * Released under the MIT License.
466985
+ *)
466986
+ (*!
466987
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
466988
+ *
466989
+ * Copyright (c) 2015-present, Jon Schlinkert.
466990
+ * Released under the MIT License.
466991
+ *)
466992
+ (*!
466993
+ * fill-range <https://github.com/jonschlinkert/fill-range>
466994
+ *
466995
+ * Copyright (c) 2014-present, Jon Schlinkert.
466996
+ * Licensed under the MIT License.
466997
+ *)
466998
+
466999
+ rollup/dist/shared/watch.js:
467000
+ (*
467001
+ @license
467002
+ Rollup.js v4.10.0
467003
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467004
+
467005
+ https://github.com/rollup/rollup
467006
+
467007
+ Released under the MIT License.
467008
+ *)
467009
+
467010
+ rollup/dist/rollup.js:
467011
+ (*
467012
+ @license
467013
+ Rollup.js v4.10.0
467014
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467015
+
467016
+ https://github.com/rollup/rollup
467017
+
467018
+ Released under the MIT License.
467019
+ *)
467020
+ */