@storm-software/workspace-tools 1.60.6 → 1.60.8

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,3 +1,4 @@
1
+ const require = (await import('node:module')).createRequire(import.meta.url);
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -9965,6 +9966,20 @@ var require_source_map_support = __commonJS({
9965
9966
  var require_typescript = __commonJS({
9966
9967
  "node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
9967
9968
  "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
+ ***************************************************************************** */
9968
9983
  var ts9 = (() => {
9969
9984
  var __defProp4 = Object.defineProperty;
9970
9985
  var __getOwnPropNames3 = Object.getOwnPropertyNames;
@@ -210451,6 +210466,7 @@ ${error.message}`;
210451
210466
  exports2.loadYaml = loadYaml2;
210452
210467
  var typescript;
210453
210468
  var loadTsSync = function loadTsSync2(filepath, content) {
210469
+ /* istanbul ignore next -- @preserve */
210454
210470
  if (typescript === void 0) {
210455
210471
  typescript = require_typescript();
210456
210472
  }
@@ -210762,6 +210778,7 @@ var require_util3 = __commonJS({
210762
210778
  return Object.fromEntries(Object.entries(options8).filter(([, value]) => value !== void 0));
210763
210779
  }
210764
210780
  exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
210781
+ /* istanbul ignore next -- @preserve */
210765
210782
  async function isDirectory2(path14) {
210766
210783
  try {
210767
210784
  const stat2 = await fs_1.promises.stat(path14);
@@ -210774,6 +210791,7 @@ var require_util3 = __commonJS({
210774
210791
  }
210775
210792
  }
210776
210793
  exports2.isDirectory = isDirectory2;
210794
+ /* istanbul ignore next -- @preserve */
210777
210795
  function isDirectorySync(path14) {
210778
210796
  try {
210779
210797
  const stat2 = fs_1.default.statSync(path14);
@@ -210890,6 +210908,7 @@ ${[...importStack, fullPath].map((path14, i3) => `${i3 + 1}. ${path14}`).join("\
210890
210908
  let currentDir = startDir;
210891
210909
  while (currentDir !== stopDir) {
210892
210910
  const parentDir = path_1.default.dirname(currentDir);
210911
+ /* istanbul ignore if -- @preserve */
210893
210912
  if (parentDir === currentDir) {
210894
210913
  break;
210895
210914
  }
@@ -210901,6 +210920,7 @@ ${[...importStack, fullPath].map((path14, i3) => `${i3 + 1}. ${path14}`).join("\
210901
210920
  };
210902
210921
  exports2.ExplorerBase = ExplorerBase;
210903
210922
  function getExtensionDescription(extension) {
210923
+ /* istanbul ignore next -- @preserve */
210904
210924
  return extension ? `extension "${extension}"` : "files without extensions";
210905
210925
  }
210906
210926
  exports2.getExtensionDescription = getExtensionDescription;
@@ -210981,11 +211001,13 @@ var require_Explorer = __commonJS({
210981
211001
  from = path_1.default.resolve(from);
210982
211002
  const dirs = this.#getDirs(from);
210983
211003
  const firstDirIter = await dirs.next();
211004
+ /* istanbul ignore if -- @preserve */
210984
211005
  if (firstDirIter.done) {
210985
211006
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
210986
211007
  }
210987
211008
  let currentDir = firstDirIter.value;
210988
211009
  const search = async () => {
211010
+ /* istanbul ignore if -- @preserve */
210989
211011
  if (await (0, util_js_1.isDirectory)(currentDir.path)) {
210990
211012
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
210991
211013
  try {
@@ -211084,6 +211106,7 @@ var require_Explorer = __commonJS({
211084
211106
  }
211085
211107
  }
211086
211108
  const parentDir = path_1.default.dirname(currentDir);
211109
+ /* istanbul ignore if -- @preserve */
211087
211110
  if (parentDir === currentDir) {
211088
211111
  break;
211089
211112
  }
@@ -211139,11 +211162,13 @@ var require_ExplorerSync = __commonJS({
211139
211162
  from = path_1.default.resolve(from);
211140
211163
  const dirs = this.#getDirs(from);
211141
211164
  const firstDirIter = dirs.next();
211165
+ /* istanbul ignore if -- @preserve */
211142
211166
  if (firstDirIter.done) {
211143
211167
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211144
211168
  }
211145
211169
  let currentDir = firstDirIter.value;
211146
211170
  const search = () => {
211171
+ /* istanbul ignore if -- @preserve */
211147
211172
  if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
211148
211173
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
211149
211174
  try {
@@ -211242,6 +211267,7 @@ var require_ExplorerSync = __commonJS({
211242
211267
  }
211243
211268
  }
211244
211269
  const parentDir = path_1.default.dirname(currentDir);
211270
+ /* istanbul ignore if -- @preserve */
211245
211271
  if (parentDir === currentDir) {
211246
211272
  break;
211247
211273
  }
@@ -335344,6 +335370,13 @@ var require_package2 = __commonJS({
335344
335370
  var require_ejs = __commonJS({
335345
335371
  "node_modules/.pnpm/ejs@3.1.9/node_modules/ejs/lib/ejs.js"(exports2) {
335346
335372
  "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
+ */
335347
335380
  var fs7 = require("fs");
335348
335381
  var path14 = require("path");
335349
335382
  var utils2 = require_utils5();
@@ -341093,6 +341126,13 @@ var require_rimraf = __commonJS({
341093
341126
  // node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js
341094
341127
  var require_tmp = __commonJS({
341095
341128
  "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
+ */
341096
341136
  var fs7 = require("fs");
341097
341137
  var os6 = require("os");
341098
341138
  var path14 = require("path");
@@ -342483,6 +342523,13 @@ var require_offset_from_root = __commonJS({
342483
342523
  var require_utils6 = __commonJS({
342484
342524
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/utils.js"(exports2) {
342485
342525
  "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
+ */
342486
342533
  Object.defineProperty(exports2, "__esModule", { value: true });
342487
342534
  exports2.isJsonArray = exports2.isJsonObject = void 0;
342488
342535
  function isJsonObject(value) {
@@ -342500,6 +342547,13 @@ var require_utils6 = __commonJS({
342500
342547
  var require_utility = __commonJS({
342501
342548
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/utility.js"(exports2) {
342502
342549
  "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
+ */
342503
342557
  Object.defineProperty(exports2, "__esModule", { value: true });
342504
342558
  exports2.getTypesOfSchema = void 0;
342505
342559
  var utils_1 = require_utils6();
@@ -342580,6 +342634,13 @@ var require_utility = __commonJS({
342580
342634
  var require_transforms = __commonJS({
342581
342635
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/transforms.js"(exports2) {
342582
342636
  "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
+ */
342583
342644
  Object.defineProperty(exports2, "__esModule", { value: true });
342584
342645
  exports2.addUndefinedDefaults = void 0;
342585
342646
  var utils_1 = require_utils6();
@@ -342658,6 +342719,13 @@ var require_transforms = __commonJS({
342658
342719
  var require_interface = __commonJS({
342659
342720
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/interface.js"(exports2) {
342660
342721
  "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
+ */
342661
342729
  Object.defineProperty(exports2, "__esModule", { value: true });
342662
342730
  }
342663
342731
  });
@@ -342666,6 +342734,13 @@ var require_interface = __commonJS({
342666
342734
  var require_pointer = __commonJS({
342667
342735
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/pointer.js"(exports2) {
342668
342736
  "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
+ */
342669
342744
  Object.defineProperty(exports2, "__esModule", { value: true });
342670
342745
  exports2.parseJsonPointer = exports2.joinJsonPointer = exports2.buildJsonPointer = void 0;
342671
342746
  function buildJsonPointer(fragments) {
@@ -345769,6 +345844,7 @@ var require_data = __commonJS({
345769
345844
  // node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js
345770
345845
  var require_uri_all = __commonJS({
345771
345846
  "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 */
345772
345848
  (function(global2, factory) {
345773
345849
  typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : factory(global2.URI = global2.URI || {});
345774
345850
  })(exports2, function(exports3) {
@@ -359334,6 +359410,13 @@ var require_cjs = __commonJS({
359334
359410
  var require_exception2 = __commonJS({
359335
359411
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/exception.js"(exports2) {
359336
359412
  "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
+ */
359337
359420
  Object.defineProperty(exports2, "__esModule", { value: true });
359338
359421
  exports2.PathIsFileException = exports2.PathIsDirectoryException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.UnknownException = exports2.BaseException = void 0;
359339
359422
  var BaseException = class extends Error {
@@ -359379,6 +359462,13 @@ var require_exception2 = __commonJS({
359379
359462
  var require_literals = __commonJS({
359380
359463
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/literals.js"(exports2) {
359381
359464
  "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
+ */
359382
359472
  Object.defineProperty(exports2, "__esModule", { value: true });
359383
359473
  exports2.trimNewlines = exports2.stripIndents = exports2.stripIndent = exports2.indentBy = exports2.oneLine = void 0;
359384
359474
  function oneLine(strings, ...values) {
@@ -359423,6 +359513,13 @@ var require_literals = __commonJS({
359423
359513
  var require_strings = __commonJS({
359424
359514
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/strings.js"(exports2) {
359425
359515
  "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
+ */
359426
359523
  Object.defineProperty(exports2, "__esModule", { value: true });
359427
359524
  exports2.levenshtein = exports2.capitalize = exports2.underscore = exports2.classify = exports2.camelize = exports2.dasherize = exports2.decamelize = void 0;
359428
359525
  var STRING_DASHERIZE_REGEXP = /[ _]/g;
@@ -359495,6 +359592,13 @@ var require_strings = __commonJS({
359495
359592
  var require_object = __commonJS({
359496
359593
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/object.js"(exports2) {
359497
359594
  "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
+ */
359498
359602
  Object.defineProperty(exports2, "__esModule", { value: true });
359499
359603
  exports2.deepCopy = void 0;
359500
359604
  var copySymbol = Symbol();
@@ -361846,6 +361950,13 @@ var require_source_map2 = __commonJS({
361846
361950
  var require_template = __commonJS({
361847
361951
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/template.js"(exports2) {
361848
361952
  "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
+ */
361849
361960
  Object.defineProperty(exports2, "__esModule", { value: true });
361850
361961
  exports2.template = exports2.templateParser = void 0;
361851
361962
  var source_map_1 = require_source_map2();
@@ -362060,6 +362171,13 @@ var require_template = __commonJS({
362060
362171
  var require_partially_ordered_set = __commonJS({
362061
362172
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/partially-ordered-set.js"(exports2) {
362062
362173
  "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
+ */
362063
362181
  Object.defineProperty(exports2, "__esModule", { value: true });
362064
362182
  exports2.PartiallyOrderedSet = exports2.CircularDependencyFoundException = exports2.DependencyNotFoundException = void 0;
362065
362183
  var exception_1 = require_exception2();
@@ -362194,6 +362312,13 @@ var require_partially_ordered_set = __commonJS({
362194
362312
  var require_priority_queue = __commonJS({
362195
362313
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/priority-queue.js"(exports2) {
362196
362314
  "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
+ */
362197
362322
  Object.defineProperty(exports2, "__esModule", { value: true });
362198
362323
  exports2.PriorityQueue = void 0;
362199
362324
  var PriorityQueue = class {
@@ -362240,6 +362365,13 @@ var require_priority_queue = __commonJS({
362240
362365
  var require_lang = __commonJS({
362241
362366
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/lang.js"(exports2) {
362242
362367
  "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
+ */
362243
362375
  Object.defineProperty(exports2, "__esModule", { value: true });
362244
362376
  exports2.isPromise = void 0;
362245
362377
  function isPromise(obj) {
@@ -362253,6 +362385,13 @@ var require_lang = __commonJS({
362253
362385
  var require_utils7 = __commonJS({
362254
362386
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/index.js"(exports2) {
362255
362387
  "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
+ */
362256
362395
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362257
362396
  if (k23 === void 0)
362258
362397
  k23 = k6;
@@ -362308,6 +362447,13 @@ var require_utils7 = __commonJS({
362308
362447
  var require_visitor = __commonJS({
362309
362448
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/visitor.js"(exports2) {
362310
362449
  "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
+ */
362311
362457
  Object.defineProperty(exports2, "__esModule", { value: true });
362312
362458
  exports2.visitJsonSchema = exports2.visitJson = void 0;
362313
362459
  var rxjs_1 = require_cjs();
@@ -362428,6 +362574,13 @@ var require_visitor = __commonJS({
362428
362574
  var require_registry = __commonJS({
362429
362575
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/registry.js"(exports2) {
362430
362576
  "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
+ */
362431
362584
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362432
362585
  if (k23 === void 0)
362433
362586
  k23 = k6;
@@ -362934,6 +363087,13 @@ var require_registry = __commonJS({
362934
363087
  var require_schema2 = __commonJS({
362935
363088
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/schema.js"(exports2) {
362936
363089
  "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
+ */
362937
363097
  Object.defineProperty(exports2, "__esModule", { value: true });
362938
363098
  exports2.mergeSchemas = exports2.isJsonSchema = void 0;
362939
363099
  var utils_1 = require_utils6();
@@ -362973,6 +363133,13 @@ var require_schema2 = __commonJS({
362973
363133
  var require_schema3 = __commonJS({
362974
363134
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/index.js"(exports2) {
362975
363135
  "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
+ */
362976
363143
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362977
363144
  if (k23 === void 0)
362978
363145
  k23 = k6;
@@ -363027,6 +363194,13 @@ var require_schema3 = __commonJS({
363027
363194
  var require_json3 = __commonJS({
363028
363195
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/index.js"(exports2) {
363029
363196
  "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
+ */
363030
363204
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363031
363205
  if (k23 === void 0)
363032
363206
  k23 = k6;
@@ -363076,6 +363250,13 @@ var require_json3 = __commonJS({
363076
363250
  var require_logger = __commonJS({
363077
363251
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/logger.js"(exports2) {
363078
363252
  "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
+ */
363079
363260
  Object.defineProperty(exports2, "__esModule", { value: true });
363080
363261
  exports2.Logger = void 0;
363081
363262
  var rxjs_1 = require_cjs();
@@ -363197,6 +363378,13 @@ var require_logger = __commonJS({
363197
363378
  var require_indent = __commonJS({
363198
363379
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/indent.js"(exports2) {
363199
363380
  "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
+ */
363200
363388
  Object.defineProperty(exports2, "__esModule", { value: true });
363201
363389
  exports2.IndentLogger = void 0;
363202
363390
  var rxjs_1 = require_cjs();
@@ -363229,6 +363417,13 @@ var require_indent = __commonJS({
363229
363417
  var require_level = __commonJS({
363230
363418
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/level.js"(exports2) {
363231
363419
  "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
+ */
363232
363427
  Object.defineProperty(exports2, "__esModule", { value: true });
363233
363428
  exports2.LevelCapLogger = exports2.LevelTransformLogger = void 0;
363234
363429
  var logger_1 = require_logger();
@@ -363278,6 +363473,13 @@ var require_level = __commonJS({
363278
363473
  var require_null_logger = __commonJS({
363279
363474
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/null-logger.js"(exports2) {
363280
363475
  "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
+ */
363281
363483
  Object.defineProperty(exports2, "__esModule", { value: true });
363282
363484
  exports2.NullLogger = void 0;
363283
363485
  var rxjs_1 = require_cjs();
@@ -363313,6 +363515,13 @@ var require_null_logger = __commonJS({
363313
363515
  var require_transform_logger = __commonJS({
363314
363516
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/transform-logger.js"(exports2) {
363315
363517
  "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
+ */
363316
363525
  Object.defineProperty(exports2, "__esModule", { value: true });
363317
363526
  exports2.TransformLogger = void 0;
363318
363527
  var logger_1 = require_logger();
@@ -363330,6 +363539,13 @@ var require_transform_logger = __commonJS({
363330
363539
  var require_logger2 = __commonJS({
363331
363540
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/index.js"(exports2) {
363332
363541
  "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
+ */
363333
363549
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363334
363550
  if (k23 === void 0)
363335
363551
  k23 = k6;
@@ -363363,6 +363579,13 @@ var require_logger2 = __commonJS({
363363
363579
  var require_definitions = __commonJS({
363364
363580
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/definitions.js"(exports2) {
363365
363581
  "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
+ */
363366
363589
  Object.defineProperty(exports2, "__esModule", { value: true });
363367
363590
  exports2.TargetDefinitionCollection = exports2.ProjectDefinitionCollection = void 0;
363368
363591
  var DefinitionCollection = class {
@@ -363529,6 +363752,13 @@ var require_definitions = __commonJS({
363529
363752
  var require_path2 = __commonJS({
363530
363753
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/path.js"(exports2) {
363531
363754
  "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
+ */
363532
363762
  Object.defineProperty(exports2, "__esModule", { value: true });
363533
363763
  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;
363534
363764
  var exception_1 = require_exception2();
@@ -363732,6 +363962,13 @@ var require_path2 = __commonJS({
363732
363962
  var require_buffer2 = __commonJS({
363733
363963
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/buffer.js"(exports2) {
363734
363964
  "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
+ */
363735
363972
  Object.defineProperty(exports2, "__esModule", { value: true });
363736
363973
  exports2.fileBuffer = exports2.fileBufferToString = exports2.stringToFileBuffer = void 0;
363737
363974
  var node_util_1 = require("node:util");
@@ -363757,6 +363994,13 @@ var require_buffer2 = __commonJS({
363757
363994
  var require_interface2 = __commonJS({
363758
363995
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/interface.js"(exports2) {
363759
363996
  "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
+ */
363760
364004
  Object.defineProperty(exports2, "__esModule", { value: true });
363761
364005
  exports2.HostWatchEventType = void 0;
363762
364006
  var HostWatchEventType;
@@ -363773,6 +364017,13 @@ var require_interface2 = __commonJS({
363773
364017
  var require_memory = __commonJS({
363774
364018
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/memory.js"(exports2) {
363775
364019
  "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
+ */
363776
364027
  Object.defineProperty(exports2, "__esModule", { value: true });
363777
364028
  exports2.SimpleMemoryHost = void 0;
363778
364029
  var rxjs_1 = require_cjs();
@@ -364089,6 +364340,13 @@ var require_memory = __commonJS({
364089
364340
  var require_sync8 = __commonJS({
364090
364341
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/sync.js"(exports2) {
364091
364342
  "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
+ */
364092
364350
  Object.defineProperty(exports2, "__esModule", { value: true });
364093
364351
  exports2.SyncDelegateHost = exports2.SynchronousDelegateExpectedException = void 0;
364094
364352
  var exception_1 = require_exception2();
@@ -364170,6 +364428,13 @@ var require_sync8 = __commonJS({
364170
364428
  var require_test = __commonJS({
364171
364429
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/test.js"(exports2) {
364172
364430
  "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
+ */
364173
364438
  Object.defineProperty(exports2, "__esModule", { value: true });
364174
364439
  exports2.TestHost = void 0;
364175
364440
  var path_1 = require_path2();
@@ -364283,6 +364548,13 @@ var require_test = __commonJS({
364283
364548
  var require_resolver = __commonJS({
364284
364549
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/resolver.js"(exports2) {
364285
364550
  "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
+ */
364286
364558
  Object.defineProperty(exports2, "__esModule", { value: true });
364287
364559
  exports2.ResolverHost = void 0;
364288
364560
  var ResolverHost = class {
@@ -364334,6 +364606,13 @@ var require_resolver = __commonJS({
364334
364606
  var require_alias = __commonJS({
364335
364607
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/alias.js"(exports2) {
364336
364608
  "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
+ */
364337
364616
  Object.defineProperty(exports2, "__esModule", { value: true });
364338
364617
  exports2.AliasHost = void 0;
364339
364618
  var path_1 = require_path2();
@@ -364366,6 +364645,13 @@ var require_alias = __commonJS({
364366
364645
  var require_create = __commonJS({
364367
364646
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/create.js"(exports2) {
364368
364647
  "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
+ */
364369
364655
  Object.defineProperty(exports2, "__esModule", { value: true });
364370
364656
  exports2.createSyncHost = void 0;
364371
364657
  var rxjs_1 = require_cjs();
@@ -364420,6 +364706,13 @@ var require_create = __commonJS({
364420
364706
  var require_empty3 = __commonJS({
364421
364707
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/empty.js"(exports2) {
364422
364708
  "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
+ */
364423
364716
  Object.defineProperty(exports2, "__esModule", { value: true });
364424
364717
  exports2.Empty = void 0;
364425
364718
  var rxjs_1 = require_cjs();
@@ -365987,6 +366280,13 @@ var require_picomatch4 = __commonJS({
365987
366280
  var require_pattern3 = __commonJS({
365988
366281
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/pattern.js"(exports2) {
365989
366282
  "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
+ */
365990
366290
  Object.defineProperty(exports2, "__esModule", { value: true });
365991
366291
  exports2.PatternMatchingHost = void 0;
365992
366292
  var picomatch_1 = require_picomatch4();
@@ -366018,6 +366318,13 @@ var require_pattern3 = __commonJS({
366018
366318
  var require_record = __commonJS({
366019
366319
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/record.js"(exports2) {
366020
366320
  "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
+ */
366021
366328
  Object.defineProperty(exports2, "__esModule", { value: true });
366022
366329
  exports2.CordHost = void 0;
366023
366330
  var rxjs_1 = require_cjs();
@@ -366287,6 +366594,13 @@ var require_record = __commonJS({
366287
366594
  var require_safe = __commonJS({
366288
366595
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/safe.js"(exports2) {
366289
366596
  "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
+ */
366290
366604
  Object.defineProperty(exports2, "__esModule", { value: true });
366291
366605
  exports2.SafeReadonlyHost = void 0;
366292
366606
  var rxjs_1 = require_cjs();
@@ -366327,6 +366641,13 @@ var require_safe = __commonJS({
366327
366641
  var require_scoped = __commonJS({
366328
366642
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/scoped.js"(exports2) {
366329
366643
  "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
+ */
366330
366651
  Object.defineProperty(exports2, "__esModule", { value: true });
366331
366652
  exports2.ScopedHost = void 0;
366332
366653
  var path_1 = require_path2();
@@ -366349,6 +366670,13 @@ var require_scoped = __commonJS({
366349
366670
  var require_host = __commonJS({
366350
366671
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/index.js"(exports2) {
366351
366672
  "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
+ */
366352
366680
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366353
366681
  if (k23 === void 0)
366354
366682
  k23 = k6;
@@ -366409,6 +366737,13 @@ var require_host = __commonJS({
366409
366737
  var require_virtual_fs = __commonJS({
366410
366738
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/index.js"(exports2) {
366411
366739
  "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
+ */
366412
366747
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366413
366748
  if (k23 === void 0)
366414
366749
  k23 = k6;
@@ -366458,6 +366793,13 @@ var require_virtual_fs = __commonJS({
366458
366793
  var require_host2 = __commonJS({
366459
366794
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/host.js"(exports2) {
366460
366795
  "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
+ */
366461
366803
  Object.defineProperty(exports2, "__esModule", { value: true });
366462
366804
  exports2.createWorkspaceHost = void 0;
366463
366805
  var rxjs_1 = require_cjs();
@@ -366645,6 +366987,13 @@ var require_main = __commonJS({
366645
366987
  var require_metadata2 = __commonJS({
366646
366988
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/metadata.js"(exports2) {
366647
366989
  "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
+ */
366648
366997
  Object.defineProperty(exports2, "__esModule", { value: true });
366649
366998
  exports2.JsonWorkspaceMetadata = exports2.JsonWorkspaceSymbol = void 0;
366650
366999
  var jsonc_parser_1 = require_main();
@@ -366701,6 +367050,13 @@ var require_metadata2 = __commonJS({
366701
367050
  var require_utilities = __commonJS({
366702
367051
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/utilities.js"(exports2) {
366703
367052
  "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
+ */
366704
367060
  Object.defineProperty(exports2, "__esModule", { value: true });
366705
367061
  exports2.createVirtualAstObject = void 0;
366706
367062
  var json_1 = require_json3();
@@ -366807,6 +367163,13 @@ var require_utilities = __commonJS({
366807
367163
  var require_reader3 = __commonJS({
366808
367164
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/reader.js"(exports2) {
366809
367165
  "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
+ */
366810
367173
  Object.defineProperty(exports2, "__esModule", { value: true });
366811
367174
  exports2.readJsonWorkspace = void 0;
366812
367175
  var jsonc_parser_1 = require_main();
@@ -367021,6 +367384,13 @@ var require_reader3 = __commonJS({
367021
367384
  var require_writer = __commonJS({
367022
367385
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/writer.js"(exports2) {
367023
367386
  "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
+ */
367024
367394
  Object.defineProperty(exports2, "__esModule", { value: true });
367025
367395
  exports2.writeJsonWorkspace = void 0;
367026
367396
  var jsonc_parser_1 = require_main();
@@ -367150,6 +367520,13 @@ var require_writer = __commonJS({
367150
367520
  var require_core4 = __commonJS({
367151
367521
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/core.js"(exports2) {
367152
367522
  "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
+ */
367153
367530
  Object.defineProperty(exports2, "__esModule", { value: true });
367154
367531
  exports2.writeWorkspace = exports2.readWorkspace = exports2._test_removeWorkspaceFile = exports2._test_addWorkspaceFile = exports2.WorkspaceFormat = void 0;
367155
367532
  var virtual_fs_1 = require_virtual_fs();
@@ -367234,6 +367611,13 @@ var require_core4 = __commonJS({
367234
367611
  var require_workspace = __commonJS({
367235
367612
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/index.js"(exports2) {
367236
367613
  "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
+ */
367237
367621
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367238
367622
  if (k23 === void 0)
367239
367623
  k23 = k6;
@@ -367278,6 +367662,13 @@ var require_workspace = __commonJS({
367278
367662
  var require_src3 = __commonJS({
367279
367663
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/index.js"(exports2) {
367280
367664
  "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
+ */
367281
367672
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367282
367673
  if (k23 === void 0)
367283
367674
  k23 = k6;
@@ -367334,6 +367725,13 @@ var require_src3 = __commonJS({
367334
367725
  var require_html_selector = __commonJS({
367335
367726
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/html-selector.js"(exports2) {
367336
367727
  "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
+ */
367337
367735
  Object.defineProperty(exports2, "__esModule", { value: true });
367338
367736
  exports2.htmlSelectorFormat = void 0;
367339
367737
  var unicodeRanges = [
@@ -367373,6 +367771,13 @@ var require_html_selector = __commonJS({
367373
367771
  var require_path3 = __commonJS({
367374
367772
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/path.js"(exports2) {
367375
367773
  "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
+ */
367376
367781
  Object.defineProperty(exports2, "__esModule", { value: true });
367377
367782
  exports2.pathFormat = void 0;
367378
367783
  var core_1 = require_src3();
@@ -367392,6 +367797,13 @@ var require_path3 = __commonJS({
367392
367797
  var require_formats2 = __commonJS({
367393
367798
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/index.js"(exports2) {
367394
367799
  "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
+ */
367395
367807
  Object.defineProperty(exports2, "__esModule", { value: true });
367396
367808
  exports2.standardFormats = exports2.pathFormat = exports2.htmlSelectorFormat = void 0;
367397
367809
  var html_selector_1 = require_html_selector();
@@ -367412,6 +367824,13 @@ var require_formats2 = __commonJS({
367412
367824
  var require_interface3 = __commonJS({
367413
367825
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/interface.js"(exports2) {
367414
367826
  "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
+ */
367415
367834
  Object.defineProperty(exports2, "__esModule", { value: true });
367416
367835
  exports2.Tree = exports2.TreeSymbol = exports2.FileVisitorCancelToken = exports2.MergeStrategy = void 0;
367417
367836
  var MergeStrategy;
@@ -367447,6 +367866,13 @@ var require_interface3 = __commonJS({
367447
367866
  var require_exception3 = __commonJS({
367448
367867
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/exception/exception.js"(exports2) {
367449
367868
  "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
+ */
367450
367876
  Object.defineProperty(exports2, "__esModule", { value: true });
367451
367877
  exports2.UnimplementedException = exports2.UnsuccessfulWorkflowExecution = exports2.MergeConflictException = exports2.InvalidUpdateRecordException = exports2.ContentHasMutatedException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.SchematicsException = void 0;
367452
367878
  var core_1 = require_src3();
@@ -367502,6 +367928,13 @@ var require_exception3 = __commonJS({
367502
367928
  var require_delegate = __commonJS({
367503
367929
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/delegate.js"(exports2) {
367504
367930
  "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
+ */
367505
367938
  Object.defineProperty(exports2, "__esModule", { value: true });
367506
367939
  exports2.DelegateTree = void 0;
367507
367940
  var interface_1 = require_interface3();
@@ -367579,6 +368012,13 @@ var require_delegate = __commonJS({
367579
368012
  var require_entry3 = __commonJS({
367580
368013
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/entry.js"(exports2) {
367581
368014
  "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
+ */
367582
368022
  Object.defineProperty(exports2, "__esModule", { value: true });
367583
368023
  exports2.LazyFileEntry = exports2.SimpleFileEntry = void 0;
367584
368024
  var SimpleFileEntry = class {
@@ -369042,6 +369482,13 @@ var require_magic_string_cjs = __commonJS({
369042
369482
  var require_update_buffer = __commonJS({
369043
369483
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/utility/update-buffer.js"(exports2) {
369044
369484
  "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
+ */
369045
369492
  var __importDefault2 = exports2 && exports2.__importDefault || function(mod) {
369046
369493
  return mod && mod.__esModule ? mod : { "default": mod };
369047
369494
  };
@@ -369121,6 +369568,13 @@ var require_update_buffer = __commonJS({
369121
369568
  var require_recorder = __commonJS({
369122
369569
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/recorder.js"(exports2) {
369123
369570
  "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
+ */
369124
369578
  Object.defineProperty(exports2, "__esModule", { value: true });
369125
369579
  exports2.UpdateRecorderBom = exports2.UpdateRecorderBase = void 0;
369126
369580
  var exception_1 = require_exception3();
@@ -369195,6 +369649,13 @@ var require_recorder = __commonJS({
369195
369649
  var require_scoped2 = __commonJS({
369196
369650
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/scoped.js"(exports2) {
369197
369651
  "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
+ */
369198
369659
  Object.defineProperty(exports2, "__esModule", { value: true });
369199
369660
  exports2.ScopedTree = void 0;
369200
369661
  var core_1 = require_src3();
@@ -369372,6 +369833,13 @@ var require_scoped2 = __commonJS({
369372
369833
  var require_host_tree = __commonJS({
369373
369834
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/host-tree.js"(exports2) {
369374
369835
  "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
+ */
369375
369843
  Object.defineProperty(exports2, "__esModule", { value: true });
369376
369844
  exports2.FilterHostTree = exports2.HostCreateTree = exports2.HostTree = exports2.HostDirEntry = void 0;
369377
369845
  var core_1 = require_src3();
@@ -369787,6 +370255,13 @@ var require_host_tree = __commonJS({
369787
370255
  var require_static = __commonJS({
369788
370256
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/static.js"(exports2) {
369789
370257
  "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
+ */
369790
370265
  Object.defineProperty(exports2, "__esModule", { value: true });
369791
370266
  exports2.partition = exports2.merge = exports2.branch = exports2.empty = void 0;
369792
370267
  var exception_1 = require_exception3();
@@ -369823,6 +370298,13 @@ var require_static = __commonJS({
369823
370298
  var require_null2 = __commonJS({
369824
370299
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/null.js"(exports2) {
369825
370300
  "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
+ */
369826
370308
  Object.defineProperty(exports2, "__esModule", { value: true });
369827
370309
  exports2.NullTree = exports2.NullTreeDirEntry = exports2.CannotCreateFileException = void 0;
369828
370310
  var core_1 = require_src3();
@@ -369923,6 +370405,13 @@ var require_null2 = __commonJS({
369923
370405
  var require_call = __commonJS({
369924
370406
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/call.js"(exports2) {
369925
370407
  "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
+ */
369926
370415
  Object.defineProperty(exports2, "__esModule", { value: true });
369927
370416
  exports2.callRule = exports2.callSource = exports2.InvalidSourceResultException = exports2.InvalidRuleResultException = void 0;
369928
370417
  var core_1 = require_src3();
@@ -370003,6 +370492,13 @@ var require_call = __commonJS({
370003
370492
  var require_schematic = __commonJS({
370004
370493
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/schematic.js"(exports2) {
370005
370494
  "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
+ */
370006
370502
  Object.defineProperty(exports2, "__esModule", { value: true });
370007
370503
  exports2.SchematicImpl = exports2.InvalidSchematicsNameException = void 0;
370008
370504
  var core_1 = require_src3();
@@ -370067,6 +370563,13 @@ var require_schematic = __commonJS({
370067
370563
  var require_engine = __commonJS({
370068
370564
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/engine.js"(exports2) {
370069
370565
  "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
+ */
370070
370573
  Object.defineProperty(exports2, "__esModule", { value: true });
370071
370574
  exports2.SchematicEngine = exports2.TaskScheduler = exports2.CollectionImpl = exports2.UnknownTaskDependencyException = exports2.UnregisteredTaskException = exports2.SchematicEngineConflictingException = exports2.PrivateSchematicException = exports2.UnknownSchematicException = exports2.CircularCollectionException = exports2.UnknownCollectionException = exports2.UnknownUrlSourceProtocol = void 0;
370072
370575
  var core_1 = require_src3();
@@ -370361,6 +370864,13 @@ var require_engine = __commonJS({
370361
370864
  var require_interface4 = __commonJS({
370362
370865
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/interface.js"(exports2) {
370363
370866
  "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
+ */
370364
370874
  Object.defineProperty(exports2, "__esModule", { value: true });
370365
370875
  }
370366
370876
  });
@@ -370369,6 +370879,13 @@ var require_interface4 = __commonJS({
370369
370879
  var require_engine2 = __commonJS({
370370
370880
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/index.js"(exports2) {
370371
370881
  "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
+ */
370372
370889
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
370373
370890
  if (k23 === void 0)
370374
370891
  k23 = k6;
@@ -370400,6 +370917,13 @@ var require_engine2 = __commonJS({
370400
370917
  var require_cli_logger = __commonJS({
370401
370918
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/cli-logger.js"(exports2) {
370402
370919
  "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
+ */
370403
370927
  Object.defineProperty(exports2, "__esModule", { value: true });
370404
370928
  exports2.createConsoleLogger = void 0;
370405
370929
  var rxjs_1 = require_cjs();
@@ -372197,6 +372721,12 @@ var require_readdirp = __commonJS({
372197
372721
  // node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js
372198
372722
  var require_normalize_path = __commonJS({
372199
372723
  "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
+ */
372200
372730
  module2.exports = function(path14, stripTrailing) {
372201
372731
  if (typeof path14 !== "string") {
372202
372732
  throw new TypeError("expected path to be a string");
@@ -372293,6 +372823,12 @@ var require_anymatch = __commonJS({
372293
372823
  // node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
372294
372824
  var require_is_extglob2 = __commonJS({
372295
372825
  "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
+ */
372296
372832
  module2.exports = function isExtglob(str2) {
372297
372833
  if (typeof str2 !== "string" || str2 === "") {
372298
372834
  return false;
@@ -372311,6 +372847,12 @@ var require_is_extglob2 = __commonJS({
372311
372847
  // node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
372312
372848
  var require_is_glob2 = __commonJS({
372313
372849
  "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
+ */
372314
372856
  var isExtglob = require_is_extglob2();
372315
372857
  var chars = { "{": "}", "(": ")", "[": "]" };
372316
372858
  var strictCheck = function(str2) {
@@ -372587,6 +373129,12 @@ var require_stringify2 = __commonJS({
372587
373129
  var require_is_number2 = __commonJS({
372588
373130
  "node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports2, module2) {
372589
373131
  "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
+ */
372590
373138
  module2.exports = function(num) {
372591
373139
  if (typeof num === "number") {
372592
373140
  return num - num === 0;
@@ -372603,6 +373151,12 @@ var require_is_number2 = __commonJS({
372603
373151
  var require_to_regex_range2 = __commonJS({
372604
373152
  "node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports2, module2) {
372605
373153
  "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
+ */
372606
373160
  var isNumber = require_is_number2();
372607
373161
  var toRegexRange = (min, max, options8) => {
372608
373162
  if (isNumber(min) === false) {
@@ -372815,6 +373369,12 @@ var require_to_regex_range2 = __commonJS({
372815
373369
  var require_fill_range2 = __commonJS({
372816
373370
  "node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports2, module2) {
372817
373371
  "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
+ */
372818
373378
  var util3 = require("util");
372819
373379
  var toRegexRange = require_to_regex_range2();
372820
373380
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -375657,6 +376217,13 @@ var require_chokidar = __commonJS({
375657
376217
  var require_host3 = __commonJS({
375658
376218
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/host.js"(exports2) {
375659
376219
  "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
+ */
375660
376227
  Object.defineProperty(exports2, "__esModule", { value: true });
375661
376228
  exports2.NodeJsSyncHost = exports2.NodeJsAsyncHost = void 0;
375662
376229
  var node_fs_1 = require("node:fs");
@@ -375847,6 +376414,13 @@ var require_host3 = __commonJS({
375847
376414
  var require_node = __commonJS({
375848
376415
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/index.js"(exports2) {
375849
376416
  "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
+ */
375850
376424
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
375851
376425
  if (k23 === void 0)
375852
376426
  k23 = k6;
@@ -375877,6 +376451,13 @@ var require_node = __commonJS({
375877
376451
  var require_action = __commonJS({
375878
376452
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/action.js"(exports2) {
375879
376453
  "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
+ */
375880
376461
  Object.defineProperty(exports2, "__esModule", { value: true });
375881
376462
  exports2.isContentAction = exports2.ActionList = exports2.UnknownActionException = void 0;
375882
376463
  var core_1 = require_src3();
@@ -376012,6 +376593,13 @@ var require_action = __commonJS({
376012
376593
  var require_sink = __commonJS({
376013
376594
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/sink.js"(exports2) {
376014
376595
  "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
+ */
376015
376603
  Object.defineProperty(exports2, "__esModule", { value: true });
376016
376604
  exports2.SimpleSinkBase = void 0;
376017
376605
  var rxjs_1 = require_cjs();
@@ -376124,6 +376712,13 @@ var require_sink = __commonJS({
376124
376712
  var require_host4 = __commonJS({
376125
376713
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/host.js"(exports2) {
376126
376714
  "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
+ */
376127
376722
  Object.defineProperty(exports2, "__esModule", { value: true });
376128
376723
  exports2.HostSink = void 0;
376129
376724
  var rxjs_1 = require_cjs();
@@ -376194,6 +376789,13 @@ var require_host4 = __commonJS({
376194
376789
  var require_dryrun = __commonJS({
376195
376790
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/dryrun.js"(exports2) {
376196
376791
  "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
+ */
376197
376799
  Object.defineProperty(exports2, "__esModule", { value: true });
376198
376800
  exports2.DryRunSink = void 0;
376199
376801
  var core_1 = require_src3();
@@ -376266,6 +376868,13 @@ var require_dryrun = __commonJS({
376266
376868
  var require_base2 = __commonJS({
376267
376869
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/base.js"(exports2) {
376268
376870
  "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
+ */
376269
376878
  Object.defineProperty(exports2, "__esModule", { value: true });
376270
376879
  exports2.BaseWorkflow = void 0;
376271
376880
  var core_1 = require_src3();
@@ -376389,6 +376998,13 @@ var require_base2 = __commonJS({
376389
376998
  var require_interface5 = __commonJS({
376390
376999
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/interface.js"(exports2) {
376391
377000
  "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
+ */
376392
377008
  Object.defineProperty(exports2, "__esModule", { value: true });
376393
377009
  }
376394
377010
  });
@@ -376397,6 +377013,13 @@ var require_interface5 = __commonJS({
376397
377013
  var require_workflow = __commonJS({
376398
377014
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/index.js"(exports2) {
376399
377015
  "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
+ */
376400
377023
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376401
377024
  if (k23 === void 0)
376402
377025
  k23 = k6;
@@ -376427,6 +377050,13 @@ var require_workflow = __commonJS({
376427
377050
  var require_base3 = __commonJS({
376428
377051
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/base.js"(exports2) {
376429
377052
  "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
+ */
376430
377060
  Object.defineProperty(exports2, "__esModule", { value: true });
376431
377061
  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;
376432
377062
  var rxjs_1 = require_cjs();
@@ -376566,6 +377196,13 @@ var require_base3 = __commonJS({
376566
377196
  var require_move3 = __commonJS({
376567
377197
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/move.js"(exports2) {
376568
377198
  "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
+ */
376569
377206
  Object.defineProperty(exports2, "__esModule", { value: true });
376570
377207
  exports2.move = void 0;
376571
377208
  var core_1 = require_src3();
@@ -376599,6 +377236,13 @@ var require_move3 = __commonJS({
376599
377236
  var require_random = __commonJS({
376600
377237
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/random.js"(exports2) {
376601
377238
  "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
+ */
376602
377246
  Object.defineProperty(exports2, "__esModule", { value: true });
376603
377247
  var host_tree_1 = require_host_tree();
376604
377248
  function generateStringOfLength(l) {
@@ -376631,6 +377275,13 @@ var require_random = __commonJS({
376631
377275
  var require_schematic2 = __commonJS({
376632
377276
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/schematic.js"(exports2) {
376633
377277
  "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
+ */
376634
377285
  Object.defineProperty(exports2, "__esModule", { value: true });
376635
377286
  exports2.schematic = exports2.externalSchematic = void 0;
376636
377287
  var rxjs_1 = require_cjs();
@@ -376665,6 +377316,13 @@ var require_schematic2 = __commonJS({
376665
377316
  var require_template2 = __commonJS({
376666
377317
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/template.js"(exports2) {
376667
377318
  "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
+ */
376668
377326
  Object.defineProperty(exports2, "__esModule", { value: true });
376669
377327
  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;
376670
377328
  var core_1 = require_src3();
@@ -376815,6 +377473,13 @@ var require_template2 = __commonJS({
376815
377473
  var require_url = __commonJS({
376816
377474
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/url.js"(exports2) {
376817
377475
  "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
+ */
376818
377483
  Object.defineProperty(exports2, "__esModule", { value: true });
376819
377484
  exports2.url = void 0;
376820
377485
  var url_1 = require("url");
@@ -376830,6 +377495,13 @@ var require_url = __commonJS({
376830
377495
  var require_empty4 = __commonJS({
376831
377496
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/empty.js"(exports2) {
376832
377497
  "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
+ */
376833
377505
  Object.defineProperty(exports2, "__esModule", { value: true });
376834
377506
  exports2.EmptyTree = void 0;
376835
377507
  var host_tree_1 = require_host_tree();
@@ -376846,6 +377518,13 @@ var require_empty4 = __commonJS({
376846
377518
  var require_src4 = __commonJS({
376847
377519
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/index.js"(exports2) {
376848
377520
  "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
+ */
376849
377528
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376850
377529
  if (k23 === void 0)
376851
377530
  k23 = k6;
@@ -376941,6 +377620,13 @@ var require_src4 = __commonJS({
376941
377620
  var require_options = __commonJS({
376942
377621
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/options.js"(exports2) {
376943
377622
  "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
+ */
376944
377630
  Object.defineProperty(exports2, "__esModule", { value: true });
376945
377631
  exports2.NodePackageName = void 0;
376946
377632
  exports2.NodePackageName = "node-package";
@@ -376951,6 +377637,13 @@ var require_options = __commonJS({
376951
377637
  var require_options2 = __commonJS({
376952
377638
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/options.js"(exports2) {
376953
377639
  "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
+ */
376954
377647
  Object.defineProperty(exports2, "__esModule", { value: true });
376955
377648
  exports2.RepositoryInitializerName = void 0;
376956
377649
  exports2.RepositoryInitializerName = "repo-init";
@@ -376961,6 +377654,13 @@ var require_options2 = __commonJS({
376961
377654
  var require_options3 = __commonJS({
376962
377655
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/options.js"(exports2) {
376963
377656
  "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
+ */
376964
377664
  Object.defineProperty(exports2, "__esModule", { value: true });
376965
377665
  exports2.RunSchematicName = void 0;
376966
377666
  exports2.RunSchematicName = "run-schematic";
@@ -380434,6 +381134,7 @@ var require_stream_duplex = __commonJS({
380434
381134
  // node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js
380435
381135
  var require_safe_buffer = __commonJS({
380436
381136
  "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> */
380437
381138
  var buffer2 = require("buffer");
380438
381139
  var Buffer2 = buffer2.Buffer;
380439
381140
  function copyProps(src, dst) {
@@ -382908,6 +383609,13 @@ var require_ora = __commonJS({
382908
383609
  var require_executor = __commonJS({
382909
383610
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/executor.js"(exports2) {
382910
383611
  "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
+ */
382911
383619
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382912
383620
  if (k23 === void 0)
382913
383621
  k23 = k6;
@@ -383079,6 +383787,13 @@ var require_executor = __commonJS({
383079
383787
  var require_executor2 = __commonJS({
383080
383788
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/executor.js"(exports2) {
383081
383789
  "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
+ */
383082
383797
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383083
383798
  if (k23 === void 0)
383084
383799
  k23 = k6;
@@ -383175,6 +383890,13 @@ var require_executor2 = __commonJS({
383175
383890
  var require_executor3 = __commonJS({
383176
383891
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/executor.js"(exports2) {
383177
383892
  "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
+ */
383178
383900
  Object.defineProperty(exports2, "__esModule", { value: true });
383179
383901
  function default_1() {
383180
383902
  return (options8, context) => {
@@ -383203,6 +383925,13 @@ var require_executor3 = __commonJS({
383203
383925
  var require_node3 = __commonJS({
383204
383926
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/node/index.js"(exports2) {
383205
383927
  "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
+ */
383206
383935
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383207
383936
  if (k23 === void 0)
383208
383937
  k23 = k6;
@@ -383262,6 +383991,13 @@ var require_node3 = __commonJS({
383262
383991
  var require_description = __commonJS({
383263
383992
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/description.js"(exports2) {
383264
383993
  "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
+ */
383265
384001
  Object.defineProperty(exports2, "__esModule", { value: true });
383266
384002
  }
383267
384003
  });
@@ -383270,6 +384006,13 @@ var require_description = __commonJS({
383270
384006
  var require_export_ref = __commonJS({
383271
384007
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/export-ref.js"(exports2) {
383272
384008
  "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
+ */
383273
384016
  Object.defineProperty(exports2, "__esModule", { value: true });
383274
384017
  exports2.ExportStringRef = void 0;
383275
384018
  var path_1 = require("path");
@@ -383306,6 +384049,13 @@ var require_export_ref = __commonJS({
383306
384049
  var require_file_system_utility = __commonJS({
383307
384050
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-utility.js"(exports2) {
383308
384051
  "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
+ */
383309
384059
  Object.defineProperty(exports2, "__esModule", { value: true });
383310
384060
  exports2.readJsonFile = void 0;
383311
384061
  var schematics_1 = require_src4();
@@ -383331,6 +384081,13 @@ var require_file_system_utility = __commonJS({
383331
384081
  var require_file_system_engine_host_base = __commonJS({
383332
384082
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js"(exports2) {
383333
384083
  "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
+ */
383334
384091
  Object.defineProperty(exports2, "__esModule", { value: true });
383335
384092
  exports2.FileSystemEngineHostBase = exports2.SchematicNameCollisionException = exports2.SchematicMissingDescriptionException = exports2.SchematicMissingFieldsException = exports2.CollectionMissingFieldsException = exports2.CollectionMissingSchematicsMapException = exports2.FactoryCannotBeResolvedException = exports2.SchematicMissingFactoryException = exports2.InvalidCollectionJsonException = exports2.CollectionCannotBeResolvedException = void 0;
383336
384093
  var core_1 = require_src3();
@@ -383565,6 +384322,13 @@ var require_file_system_engine_host_base = __commonJS({
383565
384322
  var require_node_module_engine_host = __commonJS({
383566
384323
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js"(exports2) {
383567
384324
  "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
+ */
383568
384332
  Object.defineProperty(exports2, "__esModule", { value: true });
383569
384333
  exports2.NodeModulesEngineHost = exports2.NodePackageDoesNotSupportSchematics = void 0;
383570
384334
  var core_1 = require_src3();
@@ -384193,6 +384957,13 @@ var require_operators = __commonJS({
384193
384957
  var require_schema_option_transform = __commonJS({
384194
384958
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/schema-option-transform.js"(exports2) {
384195
384959
  "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
+ */
384196
384967
  Object.defineProperty(exports2, "__esModule", { value: true });
384197
384968
  exports2.validateOptionsWithSchema = exports2.InvalidInputOptions = void 0;
384198
384969
  var core_1 = require_src3();
@@ -384229,6 +385000,13 @@ Errors:
384229
385000
  var require_node_workflow = __commonJS({
384230
385001
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js"(exports2) {
384231
385002
  "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
+ */
384232
385010
  Object.defineProperty(exports2, "__esModule", { value: true });
384233
385011
  exports2.NodeWorkflow = void 0;
384234
385012
  var core_1 = require_src3();
@@ -384292,6 +385070,13 @@ var require_node_workflow = __commonJS({
384292
385070
  var require_file_system_engine_host = __commonJS({
384293
385071
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host.js"(exports2) {
384294
385072
  "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
+ */
384295
385080
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384296
385081
  if (k23 === void 0)
384297
385082
  k23 = k6;
@@ -384409,6 +385194,13 @@ var require_file_system_engine_host = __commonJS({
384409
385194
  var require_node_modules_test_engine_host = __commonJS({
384410
385195
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-modules-test-engine-host.js"(exports2) {
384411
385196
  "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
+ */
384412
385204
  Object.defineProperty(exports2, "__esModule", { value: true });
384413
385205
  exports2.NodeModulesTestEngineHost = void 0;
384414
385206
  var node_module_engine_host_1 = require_node_module_engine_host();
@@ -384448,6 +385240,13 @@ var require_node_modules_test_engine_host = __commonJS({
384448
385240
  var require_tools = __commonJS({
384449
385241
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/index.js"(exports2) {
384450
385242
  "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
+ */
384451
385250
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384452
385251
  if (k23 === void 0)
384453
385252
  k23 = k6;
@@ -384500,6 +385299,13 @@ var require_tools = __commonJS({
384500
385299
  var require_schematic_test_runner = __commonJS({
384501
385300
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/schematic-test-runner.js"(exports2) {
384502
385301
  "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
+ */
384503
385309
  Object.defineProperty(exports2, "__esModule", { value: true });
384504
385310
  exports2.SchematicTestRunner = exports2.UnitTestTree = void 0;
384505
385311
  var core_1 = require_src3();
@@ -384581,6 +385387,13 @@ var require_schematic_test_runner = __commonJS({
384581
385387
  var require_testing = __commonJS({
384582
385388
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/index.js"(exports2) {
384583
385389
  "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
+ */
384584
385397
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384585
385398
  if (k23 === void 0)
384586
385399
  k23 = k6;
@@ -384764,6 +385577,13 @@ var require_invoke_nx_generator = __commonJS({
384764
385577
  var require_api = __commonJS({
384765
385578
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/api.js"(exports2) {
384766
385579
  "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
+ */
384767
385587
  Object.defineProperty(exports2, "__esModule", { value: true });
384768
385588
  exports2.isJobHandler = exports2.JobState = exports2.JobOutboundMessageKind = exports2.JobInboundMessageKind = void 0;
384769
385589
  var JobInboundMessageKind;
@@ -384804,6 +385624,13 @@ var require_api = __commonJS({
384804
385624
  var require_strategy = __commonJS({
384805
385625
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/strategy.js"(exports2) {
384806
385626
  "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
+ */
384807
385634
  Object.defineProperty(exports2, "__esModule", { value: true });
384808
385635
  exports2.memoize = exports2.reuse = exports2.serialize = void 0;
384809
385636
  var core_1 = require_src3();
@@ -384879,6 +385706,13 @@ var require_strategy = __commonJS({
384879
385706
  var require_create_job_handler = __commonJS({
384880
385707
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/create-job-handler.js"(exports2) {
384881
385708
  "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
+ */
384882
385716
  Object.defineProperty(exports2, "__esModule", { value: true });
384883
385717
  exports2.createLoggerJob = exports2.createJobFactory = exports2.createJobHandler = exports2.ChannelAlreadyExistException = void 0;
384884
385718
  var core_1 = require_src3();
@@ -384997,6 +385831,13 @@ var require_create_job_handler = __commonJS({
384997
385831
  var require_exception4 = __commonJS({
384998
385832
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/exception.js"(exports2) {
384999
385833
  "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
+ */
385000
385841
  Object.defineProperty(exports2, "__esModule", { value: true });
385001
385842
  exports2.JobDoesNotExistException = exports2.JobNameAlreadyRegisteredException = void 0;
385002
385843
  var core_1 = require_src3();
@@ -385019,6 +385860,13 @@ var require_exception4 = __commonJS({
385019
385860
  var require_dispatcher = __commonJS({
385020
385861
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/dispatcher.js"(exports2) {
385021
385862
  "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
+ */
385022
385870
  Object.defineProperty(exports2, "__esModule", { value: true });
385023
385871
  exports2.createDispatcher = void 0;
385024
385872
  var api_1 = require_api();
@@ -385062,6 +385910,13 @@ var require_dispatcher = __commonJS({
385062
385910
  var require_fallback_registry = __commonJS({
385063
385911
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/fallback-registry.js"(exports2) {
385064
385912
  "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
+ */
385065
385920
  Object.defineProperty(exports2, "__esModule", { value: true });
385066
385921
  exports2.FallbackRegistry = void 0;
385067
385922
  var rxjs_1 = require_cjs();
@@ -385085,6 +385940,13 @@ var require_fallback_registry = __commonJS({
385085
385940
  var require_simple_registry = __commonJS({
385086
385941
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-registry.js"(exports2) {
385087
385942
  "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
+ */
385088
385950
  Object.defineProperty(exports2, "__esModule", { value: true });
385089
385951
  exports2.SimpleJobRegistry = void 0;
385090
385952
  var core_1 = require_src3();
@@ -385148,6 +386010,13 @@ var require_simple_registry = __commonJS({
385148
386010
  var require_simple_scheduler = __commonJS({
385149
386011
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-scheduler.js"(exports2) {
385150
386012
  "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
+ */
385151
386020
  Object.defineProperty(exports2, "__esModule", { value: true });
385152
386021
  exports2.SimpleScheduler = exports2.JobOutputSchemaValidationError = exports2.JobInboundMessageSchemaValidationError = exports2.JobArgumentSchemaValidationError = void 0;
385153
386022
  var core_1 = require_src3();
@@ -385517,6 +386386,13 @@ var require_simple_scheduler = __commonJS({
385517
386386
  var require_jobs = __commonJS({
385518
386387
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/index.js"(exports2) {
385519
386388
  "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
+ */
385520
386396
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385521
386397
  if (k23 === void 0)
385522
386398
  k23 = k6;
@@ -385588,6 +386464,13 @@ var require_progress_schema = __commonJS({
385588
386464
  var require_api2 = __commonJS({
385589
386465
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/api.js"(exports2) {
385590
386466
  "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
+ */
385591
386474
  Object.defineProperty(exports2, "__esModule", { value: true });
385592
386475
  exports2.scheduleTargetAndForget = exports2.targetFromTargetString = exports2.targetStringFromTarget = exports2.fromAsyncIterable = exports2.isBuilderOutput = exports2.BuilderProgressState = void 0;
385593
386476
  var rxjs_1 = require_cjs();
@@ -385750,6 +386633,13 @@ var require_progress_schema2 = __commonJS({
385750
386633
  var require_schedule_by_name = __commonJS({
385751
386634
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/schedule-by-name.js"(exports2) {
385752
386635
  "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
+ */
385753
386643
  Object.defineProperty(exports2, "__esModule", { value: true });
385754
386644
  exports2.scheduleByTarget = exports2.scheduleByName = void 0;
385755
386645
  var rxjs_1 = require_cjs();
@@ -385931,6 +386821,13 @@ var require_output_schema = __commonJS({
385931
386821
  var require_architect = __commonJS({
385932
386822
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/architect.js"(exports2) {
385933
386823
  "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
+ */
385934
386831
  Object.defineProperty(exports2, "__esModule", { value: true });
385935
386832
  exports2.Architect = void 0;
385936
386833
  var core_1 = require_src3();
@@ -386197,6 +387094,13 @@ var require_architect = __commonJS({
386197
387094
  var require_internal = __commonJS({
386198
387095
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/internal.js"(exports2) {
386199
387096
  "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
+ */
386200
387104
  Object.defineProperty(exports2, "__esModule", { value: true });
386201
387105
  exports2.BuilderVersionSymbol = exports2.BuilderSymbol = void 0;
386202
387106
  exports2.BuilderSymbol = Symbol.for("@angular-devkit/architect:builder");
@@ -386249,6 +387153,13 @@ var require_package3 = __commonJS({
386249
387153
  var require_create_builder = __commonJS({
386250
387154
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/create-builder.js"(exports2) {
386251
387155
  "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
+ */
386252
387163
  Object.defineProperty(exports2, "__esModule", { value: true });
386253
387164
  exports2.createBuilder = void 0;
386254
387165
  var core_1 = require_src3();
@@ -386415,6 +387326,13 @@ var require_create_builder = __commonJS({
386415
387326
  var require_src5 = __commonJS({
386416
387327
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/index.js"(exports2) {
386417
387328
  "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
+ */
386418
387336
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
386419
387337
  if (k23 === void 0)
386420
387338
  k23 = k6;
@@ -387579,6 +388497,7 @@ var require_out5 = __commonJS({
387579
388497
  // node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
387580
388498
  var require_queue_microtask2 = __commonJS({
387581
388499
  "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> */
387582
388501
  var promise;
387583
388502
  module2.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
387584
388503
  throw err;
@@ -387589,6 +388508,7 @@ var require_queue_microtask2 = __commonJS({
387589
388508
  // node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
387590
388509
  var require_run_parallel2 = __commonJS({
387591
388510
  "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> */
387592
388512
  module2.exports = runParallel;
387593
388513
  var queueMicrotask2 = require_queue_microtask2();
387594
388514
  function runParallel(tasks, cb) {
@@ -421687,6 +422607,15 @@ If this is important to you, please consider supporting Rollup to make a native
421687
422607
  var require_parseAst = __commonJS({
421688
422608
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/parseAst.js"(exports2) {
421689
422609
  "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
+ */
421690
422619
  var native_js = require_native();
421691
422620
  var node_path = require("node:path");
421692
422621
  function rangeContains(range, index) {
@@ -424002,6 +424931,15 @@ ${smallChunks} are below minChunkSize.`
424002
424931
  var require_rollup = __commonJS({
424003
424932
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/rollup.js"(exports2) {
424004
424933
  "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
+ */
424005
424943
  var parseAst_js = require_parseAst();
424006
424944
  var process$1 = require("node:process");
424007
424945
  var tty2 = require("tty");
@@ -441701,6 +442639,15 @@ ${outro}`;
441701
442639
  var require_fsevents_importer = __commonJS({
441702
442640
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/fsevents-importer.js"(exports2) {
441703
442641
  "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
+ */
441704
442651
  var fsEvents;
441705
442652
  var fsEventsImportError;
441706
442653
  async function loadFsEvents() {
@@ -441729,6 +442676,15 @@ var require_fsevents_importer = __commonJS({
441729
442676
  var require_shared = __commonJS({
441730
442677
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/index.js"(exports2) {
441731
442678
  "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
+ */
441732
442688
  var rollup = require_rollup();
441733
442689
  var require$$0$1 = require("fs");
441734
442690
  var require$$2 = require("util");
@@ -441969,6 +442925,12 @@ var require_shared = __commonJS({
441969
442925
  readdirp$1.default = readdirp$1;
441970
442926
  var readdirp_1 = readdirp$1;
441971
442927
  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
+ */
441972
442934
  var normalizePath$2 = function(path15, stripTrailing) {
441973
442935
  if (typeof path15 !== "string") {
441974
442936
  throw new TypeError("expected path to be a string");
@@ -442054,6 +443016,12 @@ var require_shared = __commonJS({
442054
443016
  anymatch$1.default = anymatch$1;
442055
443017
  anymatch$2.exports = anymatch$1;
442056
443018
  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
+ */
442057
443025
  var isExtglob$1 = function isExtglob2(str2) {
442058
443026
  if (typeof str2 !== "string" || str2 === "") {
442059
443027
  return false;
@@ -442066,6 +443034,12 @@ var require_shared = __commonJS({
442066
443034
  }
442067
443035
  return false;
442068
443036
  };
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
+ */
442069
443043
  var isExtglob = isExtglob$1;
442070
443044
  var chars = { "{": "}", "(": ")", "[": "]" };
442071
443045
  var strictCheck = function(str2) {
@@ -442317,6 +443291,12 @@ var require_shared = __commonJS({
442317
443291
  };
442318
443292
  return stringify2(ast);
442319
443293
  };
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
+ */
442320
443300
  var isNumber$2 = function(num) {
442321
443301
  if (typeof num === "number") {
442322
443302
  return num - num === 0;
@@ -442326,6 +443306,12 @@ var require_shared = __commonJS({
442326
443306
  }
442327
443307
  return false;
442328
443308
  };
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
+ */
442329
443315
  var isNumber$1 = isNumber$2;
442330
443316
  var toRegexRange$1 = (min2, max, options8) => {
442331
443317
  if (isNumber$1(min2) === false) {
@@ -442531,6 +443517,12 @@ var require_shared = __commonJS({
442531
443517
  toRegexRange$1.cache = {};
442532
443518
  toRegexRange$1.clearCache = () => toRegexRange$1.cache = {};
442533
443519
  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
+ */
442534
443526
  var util3 = require$$2;
442535
443527
  var toRegexRange = toRegexRange_1;
442536
443528
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -445296,6 +446288,15 @@ var require_shared = __commonJS({
445296
446288
  var require_watch = __commonJS({
445297
446289
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/watch.js"(exports2) {
445298
446290
  "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
+ */
445299
446300
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
445300
446301
  var node_path = require("node:path");
445301
446302
  var process4 = require("node:process");
@@ -445595,6 +446596,15 @@ var require_watch = __commonJS({
445595
446596
  var require_rollup2 = __commonJS({
445596
446597
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/rollup.js"(exports2) {
445597
446598
  "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
+ */
445598
446608
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
445599
446609
  var rollup = require_rollup();
445600
446610
  var parseAst_js = require_parseAst();
@@ -465751,1297 +466761,3 @@ var executor_default2 = withRunExecutor(
465751
466761
  0 && (module.exports = {
465752
466762
  tsupBrowserBuildExecutorFn
465753
466763
  });
465754
- /*! Bundled license information:
465755
-
465756
- typescript/lib/typescript.js:
465757
- (*! *****************************************************************************
465758
- Copyright (c) Microsoft Corporation. All rights reserved.
465759
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
465760
- this file except in compliance with the License. You may obtain a copy of the
465761
- License at http://www.apache.org/licenses/LICENSE-2.0
465762
-
465763
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
465764
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
465765
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
465766
- MERCHANTABLITY OR NON-INFRINGEMENT.
465767
-
465768
- See the Apache Version 2.0 License for specific language governing permissions
465769
- and limitations under the License.
465770
- ***************************************************************************** *)
465771
-
465772
- cosmiconfig/dist/loaders.js:
465773
- (* istanbul ignore next -- @preserve *)
465774
-
465775
- cosmiconfig/dist/util.js:
465776
- (* istanbul ignore next -- @preserve *)
465777
-
465778
- cosmiconfig/dist/ExplorerBase.js:
465779
- (* istanbul ignore if -- @preserve *)
465780
- (* istanbul ignore next -- @preserve *)
465781
-
465782
- cosmiconfig/dist/Explorer.js:
465783
- (* istanbul ignore if -- @preserve *)
465784
-
465785
- cosmiconfig/dist/ExplorerSync.js:
465786
- (* istanbul ignore if -- @preserve *)
465787
-
465788
- ejs/lib/ejs.js:
465789
- (**
465790
- * @file Embedded JavaScript templating engine. {@link http://ejs.co}
465791
- * @author Matthew Eernisse <mde@fleegix.org>
465792
- * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
465793
- * @project EJS
465794
- * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
465795
- *)
465796
-
465797
- tmp/lib/tmp.js:
465798
- (*!
465799
- * Tmp
465800
- *
465801
- * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
465802
- *
465803
- * MIT Licensed
465804
- *)
465805
-
465806
- @angular-devkit/core/src/json/utils.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/utility.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
- @angular-devkit/core/src/json/schema/transforms.js:
465825
- (**
465826
- * @license
465827
- * Copyright Google LLC All Rights Reserved.
465828
- *
465829
- * Use of this source code is governed by an MIT-style license that can be
465830
- * found in the LICENSE file at https://angular.io/license
465831
- *)
465832
-
465833
- @angular-devkit/core/src/json/schema/interface.js:
465834
- (**
465835
- * @license
465836
- * Copyright Google LLC All Rights Reserved.
465837
- *
465838
- * Use of this source code is governed by an MIT-style license that can be
465839
- * found in the LICENSE file at https://angular.io/license
465840
- *)
465841
-
465842
- @angular-devkit/core/src/json/schema/pointer.js:
465843
- (**
465844
- * @license
465845
- * Copyright Google LLC All Rights Reserved.
465846
- *
465847
- * Use of this source code is governed by an MIT-style license that can be
465848
- * found in the LICENSE file at https://angular.io/license
465849
- *)
465850
-
465851
- uri-js/dist/es5/uri.all.js:
465852
- (** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js *)
465853
-
465854
- @angular-devkit/core/src/exception.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/literals.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/strings.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/object.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/template.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/partially-ordered-set.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/utils/priority-queue.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/utils/lang.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/utils/index.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/visitor.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/schema/registry.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/json/schema/schema.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/json/schema/index.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/json/index.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/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/indent.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/level.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/logger/null-logger.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/logger/transform-logger.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/logger/index.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/workspace/definitions.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/path.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/buffer.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/interface.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/memory.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/sync.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/test.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/resolver.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/alias.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/create.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/empty.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/pattern.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/record.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/host/safe.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/virtual-fs/host/scoped.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/virtual-fs/host/index.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/virtual-fs/index.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/host.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/metadata.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/json/utilities.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/json/reader.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/workspace/json/writer.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/core/src/workspace/core.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/core/src/workspace/index.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/core/src/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/formats/html-selector.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/formats/path.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/formats/index.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/interface.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/exception/exception.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/delegate.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/entry.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/utility/update-buffer.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/recorder.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/scoped.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/tree/host-tree.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/tree/static.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/tree/null.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/rules/call.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/schematic.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/schematics/src/engine/engine.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
- @angular-devkit/schematics/src/engine/interface.js:
466404
- (**
466405
- * @license
466406
- * Copyright Google LLC All Rights Reserved.
466407
- *
466408
- * Use of this source code is governed by an MIT-style license that can be
466409
- * found in the LICENSE file at https://angular.io/license
466410
- *)
466411
-
466412
- @angular-devkit/schematics/src/engine/index.js:
466413
- (**
466414
- * @license
466415
- * Copyright Google LLC All Rights Reserved.
466416
- *
466417
- * Use of this source code is governed by an MIT-style license that can be
466418
- * found in the LICENSE file at https://angular.io/license
466419
- *)
466420
-
466421
- @angular-devkit/core/node/cli-logger.js:
466422
- (**
466423
- * @license
466424
- * Copyright Google LLC All Rights Reserved.
466425
- *
466426
- * Use of this source code is governed by an MIT-style license that can be
466427
- * found in the LICENSE file at https://angular.io/license
466428
- *)
466429
-
466430
- normalize-path/index.js:
466431
- (*!
466432
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
466433
- *
466434
- * Copyright (c) 2014-2018, Jon Schlinkert.
466435
- * Released under the MIT License.
466436
- *)
466437
-
466438
- is-extglob/index.js:
466439
- (*!
466440
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
466441
- *
466442
- * Copyright (c) 2014-2016, Jon Schlinkert.
466443
- * Licensed under the MIT License.
466444
- *)
466445
-
466446
- is-glob/index.js:
466447
- (*!
466448
- * is-glob <https://github.com/jonschlinkert/is-glob>
466449
- *
466450
- * Copyright (c) 2014-2017, Jon Schlinkert.
466451
- * Released under the MIT License.
466452
- *)
466453
-
466454
- is-number/index.js:
466455
- (*!
466456
- * is-number <https://github.com/jonschlinkert/is-number>
466457
- *
466458
- * Copyright (c) 2014-present, Jon Schlinkert.
466459
- * Released under the MIT License.
466460
- *)
466461
-
466462
- to-regex-range/index.js:
466463
- (*!
466464
- * to-regex-range <https://github.com/micromatch/to-regex-range>
466465
- *
466466
- * Copyright (c) 2015-present, Jon Schlinkert.
466467
- * Released under the MIT License.
466468
- *)
466469
-
466470
- fill-range/index.js:
466471
- (*!
466472
- * fill-range <https://github.com/jonschlinkert/fill-range>
466473
- *
466474
- * Copyright (c) 2014-present, Jon Schlinkert.
466475
- * Licensed under the MIT License.
466476
- *)
466477
-
466478
- @angular-devkit/core/node/host.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/core/node/index.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/tree/action.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/sink/sink.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/sink/host.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/sink/dryrun.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/workflow/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/workflow/interface.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/workflow/index.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/base.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/move.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/random.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/rules/schematic.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/rules/template.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/src/rules/url.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/src/tree/empty.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/src/index.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
- @angular-devkit/schematics/tasks/package-manager/options.js:
466632
- (**
466633
- * @license
466634
- * Copyright Google LLC All Rights Reserved.
466635
- *
466636
- * Use of this source code is governed by an MIT-style license that can be
466637
- * found in the LICENSE file at https://angular.io/license
466638
- *)
466639
-
466640
- @angular-devkit/schematics/tasks/repo-init/options.js:
466641
- (**
466642
- * @license
466643
- * Copyright Google LLC All Rights Reserved.
466644
- *
466645
- * Use of this source code is governed by an MIT-style license that can be
466646
- * found in the LICENSE file at https://angular.io/license
466647
- *)
466648
-
466649
- @angular-devkit/schematics/tasks/run-schematic/options.js:
466650
- (**
466651
- * @license
466652
- * Copyright Google LLC All Rights Reserved.
466653
- *
466654
- * Use of this source code is governed by an MIT-style license that can be
466655
- * found in the LICENSE file at https://angular.io/license
466656
- *)
466657
-
466658
- safe-buffer/index.js:
466659
- (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466660
-
466661
- @angular-devkit/schematics/tasks/package-manager/executor.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/tasks/repo-init/executor.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/tasks/run-schematic/executor.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/tasks/node/index.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/description.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/export-ref.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/file-system-utility.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/file-system-engine-host-base.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/node-module-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/schema-option-transform.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/workflow/node-workflow.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/tools/file-system-engine-host.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/tools/node-modules-test-engine-host.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/schematics/tools/index.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/schematics/testing/schematic-test-runner.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/schematics/testing/index.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/api.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/strategy.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/create-job-handler.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/exception.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/dispatcher.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/fallback-registry.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/jobs/simple-registry.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/jobs/simple-scheduler.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/jobs/index.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/api.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/schedule-by-name.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/architect.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
- @angular-devkit/architect/src/internal.js:
466914
- (**
466915
- * @license
466916
- * Copyright Google LLC All Rights Reserved.
466917
- *
466918
- * Use of this source code is governed by an MIT-style license that can be
466919
- * found in the LICENSE file at https://angular.io/license
466920
- *)
466921
-
466922
- @angular-devkit/architect/src/create-builder.js:
466923
- (**
466924
- * @license
466925
- * Copyright Google LLC All Rights Reserved.
466926
- *
466927
- * Use of this source code is governed by an MIT-style license that can be
466928
- * found in the LICENSE file at https://angular.io/license
466929
- *)
466930
-
466931
- @angular-devkit/architect/src/index.js:
466932
- (**
466933
- * @license
466934
- * Copyright Google LLC All Rights Reserved.
466935
- *
466936
- * Use of this source code is governed by an MIT-style license that can be
466937
- * found in the LICENSE file at https://angular.io/license
466938
- *)
466939
-
466940
- queue-microtask/index.js:
466941
- (*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466942
-
466943
- run-parallel/index.js:
466944
- (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466945
-
466946
- rollup/dist/shared/parseAst.js:
466947
- (*
466948
- @license
466949
- Rollup.js v4.10.0
466950
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466951
-
466952
- https://github.com/rollup/rollup
466953
-
466954
- Released under the MIT License.
466955
- *)
466956
-
466957
- rollup/dist/shared/rollup.js:
466958
- (*
466959
- @license
466960
- Rollup.js v4.10.0
466961
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466962
-
466963
- https://github.com/rollup/rollup
466964
-
466965
- Released under the MIT License.
466966
- *)
466967
-
466968
- rollup/dist/shared/fsevents-importer.js:
466969
- (*
466970
- @license
466971
- Rollup.js v4.10.0
466972
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466973
-
466974
- https://github.com/rollup/rollup
466975
-
466976
- Released under the MIT License.
466977
- *)
466978
-
466979
- rollup/dist/shared/index.js:
466980
- (*
466981
- @license
466982
- Rollup.js v4.10.0
466983
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466984
-
466985
- https://github.com/rollup/rollup
466986
-
466987
- Released under the MIT License.
466988
- *)
466989
- (*!
466990
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
466991
- *
466992
- * Copyright (c) 2014-2018, Jon Schlinkert.
466993
- * Released under the MIT License.
466994
- *)
466995
- (*!
466996
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
466997
- *
466998
- * Copyright (c) 2014-2016, Jon Schlinkert.
466999
- * Licensed under the MIT License.
467000
- *)
467001
- (*!
467002
- * is-glob <https://github.com/jonschlinkert/is-glob>
467003
- *
467004
- * Copyright (c) 2014-2017, Jon Schlinkert.
467005
- * Released under the MIT License.
467006
- *)
467007
- (*!
467008
- * is-number <https://github.com/jonschlinkert/is-number>
467009
- *
467010
- * Copyright (c) 2014-present, Jon Schlinkert.
467011
- * Released under the MIT License.
467012
- *)
467013
- (*!
467014
- * to-regex-range <https://github.com/micromatch/to-regex-range>
467015
- *
467016
- * Copyright (c) 2015-present, Jon Schlinkert.
467017
- * Released under the MIT License.
467018
- *)
467019
- (*!
467020
- * fill-range <https://github.com/jonschlinkert/fill-range>
467021
- *
467022
- * Copyright (c) 2014-present, Jon Schlinkert.
467023
- * Licensed under the MIT License.
467024
- *)
467025
-
467026
- rollup/dist/shared/watch.js:
467027
- (*
467028
- @license
467029
- Rollup.js v4.10.0
467030
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467031
-
467032
- https://github.com/rollup/rollup
467033
-
467034
- Released under the MIT License.
467035
- *)
467036
-
467037
- rollup/dist/rollup.js:
467038
- (*
467039
- @license
467040
- Rollup.js v4.10.0
467041
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467042
-
467043
- https://github.com/rollup/rollup
467044
-
467045
- Released under the MIT License.
467046
- *)
467047
- */