@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();
@@ -465754,1297 +466764,3 @@ var executor_default2 = withRunExecutor(
465754
466764
  0 && (module.exports = {
465755
466765
  tsupNodeBuildExecutorFn
465756
466766
  });
465757
- /*! Bundled license information:
465758
-
465759
- typescript/lib/typescript.js:
465760
- (*! *****************************************************************************
465761
- Copyright (c) Microsoft Corporation. All rights reserved.
465762
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
465763
- this file except in compliance with the License. You may obtain a copy of the
465764
- License at http://www.apache.org/licenses/LICENSE-2.0
465765
-
465766
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
465767
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
465768
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
465769
- MERCHANTABLITY OR NON-INFRINGEMENT.
465770
-
465771
- See the Apache Version 2.0 License for specific language governing permissions
465772
- and limitations under the License.
465773
- ***************************************************************************** *)
465774
-
465775
- cosmiconfig/dist/loaders.js:
465776
- (* istanbul ignore next -- @preserve *)
465777
-
465778
- cosmiconfig/dist/util.js:
465779
- (* istanbul ignore next -- @preserve *)
465780
-
465781
- cosmiconfig/dist/ExplorerBase.js:
465782
- (* istanbul ignore if -- @preserve *)
465783
- (* istanbul ignore next -- @preserve *)
465784
-
465785
- cosmiconfig/dist/Explorer.js:
465786
- (* istanbul ignore if -- @preserve *)
465787
-
465788
- cosmiconfig/dist/ExplorerSync.js:
465789
- (* istanbul ignore if -- @preserve *)
465790
-
465791
- ejs/lib/ejs.js:
465792
- (**
465793
- * @file Embedded JavaScript templating engine. {@link http://ejs.co}
465794
- * @author Matthew Eernisse <mde@fleegix.org>
465795
- * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
465796
- * @project EJS
465797
- * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
465798
- *)
465799
-
465800
- tmp/lib/tmp.js:
465801
- (*!
465802
- * Tmp
465803
- *
465804
- * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
465805
- *
465806
- * MIT Licensed
465807
- *)
465808
-
465809
- @angular-devkit/core/src/json/utils.js:
465810
- (**
465811
- * @license
465812
- * Copyright Google LLC All Rights Reserved.
465813
- *
465814
- * Use of this source code is governed by an MIT-style license that can be
465815
- * found in the LICENSE file at https://angular.io/license
465816
- *)
465817
-
465818
- @angular-devkit/core/src/json/schema/utility.js:
465819
- (**
465820
- * @license
465821
- * Copyright Google LLC All Rights Reserved.
465822
- *
465823
- * Use of this source code is governed by an MIT-style license that can be
465824
- * found in the LICENSE file at https://angular.io/license
465825
- *)
465826
-
465827
- @angular-devkit/core/src/json/schema/transforms.js:
465828
- (**
465829
- * @license
465830
- * Copyright Google LLC All Rights Reserved.
465831
- *
465832
- * Use of this source code is governed by an MIT-style license that can be
465833
- * found in the LICENSE file at https://angular.io/license
465834
- *)
465835
-
465836
- @angular-devkit/core/src/json/schema/interface.js:
465837
- (**
465838
- * @license
465839
- * Copyright Google LLC All Rights Reserved.
465840
- *
465841
- * Use of this source code is governed by an MIT-style license that can be
465842
- * found in the LICENSE file at https://angular.io/license
465843
- *)
465844
-
465845
- @angular-devkit/core/src/json/schema/pointer.js:
465846
- (**
465847
- * @license
465848
- * Copyright Google LLC All Rights Reserved.
465849
- *
465850
- * Use of this source code is governed by an MIT-style license that can be
465851
- * found in the LICENSE file at https://angular.io/license
465852
- *)
465853
-
465854
- uri-js/dist/es5/uri.all.js:
465855
- (** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js *)
465856
-
465857
- @angular-devkit/core/src/exception.js:
465858
- (**
465859
- * @license
465860
- * Copyright Google LLC All Rights Reserved.
465861
- *
465862
- * Use of this source code is governed by an MIT-style license that can be
465863
- * found in the LICENSE file at https://angular.io/license
465864
- *)
465865
-
465866
- @angular-devkit/core/src/utils/literals.js:
465867
- (**
465868
- * @license
465869
- * Copyright Google LLC All Rights Reserved.
465870
- *
465871
- * Use of this source code is governed by an MIT-style license that can be
465872
- * found in the LICENSE file at https://angular.io/license
465873
- *)
465874
-
465875
- @angular-devkit/core/src/utils/strings.js:
465876
- (**
465877
- * @license
465878
- * Copyright Google LLC All Rights Reserved.
465879
- *
465880
- * Use of this source code is governed by an MIT-style license that can be
465881
- * found in the LICENSE file at https://angular.io/license
465882
- *)
465883
-
465884
- @angular-devkit/core/src/utils/object.js:
465885
- (**
465886
- * @license
465887
- * Copyright Google LLC All Rights Reserved.
465888
- *
465889
- * Use of this source code is governed by an MIT-style license that can be
465890
- * found in the LICENSE file at https://angular.io/license
465891
- *)
465892
-
465893
- @angular-devkit/core/src/utils/template.js:
465894
- (**
465895
- * @license
465896
- * Copyright Google LLC All Rights Reserved.
465897
- *
465898
- * Use of this source code is governed by an MIT-style license that can be
465899
- * found in the LICENSE file at https://angular.io/license
465900
- *)
465901
-
465902
- @angular-devkit/core/src/utils/partially-ordered-set.js:
465903
- (**
465904
- * @license
465905
- * Copyright Google LLC All Rights Reserved.
465906
- *
465907
- * Use of this source code is governed by an MIT-style license that can be
465908
- * found in the LICENSE file at https://angular.io/license
465909
- *)
465910
-
465911
- @angular-devkit/core/src/utils/priority-queue.js:
465912
- (**
465913
- * @license
465914
- * Copyright Google LLC All Rights Reserved.
465915
- *
465916
- * Use of this source code is governed by an MIT-style license that can be
465917
- * found in the LICENSE file at https://angular.io/license
465918
- *)
465919
-
465920
- @angular-devkit/core/src/utils/lang.js:
465921
- (**
465922
- * @license
465923
- * Copyright Google LLC All Rights Reserved.
465924
- *
465925
- * Use of this source code is governed by an MIT-style license that can be
465926
- * found in the LICENSE file at https://angular.io/license
465927
- *)
465928
-
465929
- @angular-devkit/core/src/utils/index.js:
465930
- (**
465931
- * @license
465932
- * Copyright Google LLC All Rights Reserved.
465933
- *
465934
- * Use of this source code is governed by an MIT-style license that can be
465935
- * found in the LICENSE file at https://angular.io/license
465936
- *)
465937
-
465938
- @angular-devkit/core/src/json/schema/visitor.js:
465939
- (**
465940
- * @license
465941
- * Copyright Google LLC All Rights Reserved.
465942
- *
465943
- * Use of this source code is governed by an MIT-style license that can be
465944
- * found in the LICENSE file at https://angular.io/license
465945
- *)
465946
-
465947
- @angular-devkit/core/src/json/schema/registry.js:
465948
- (**
465949
- * @license
465950
- * Copyright Google LLC All Rights Reserved.
465951
- *
465952
- * Use of this source code is governed by an MIT-style license that can be
465953
- * found in the LICENSE file at https://angular.io/license
465954
- *)
465955
-
465956
- @angular-devkit/core/src/json/schema/schema.js:
465957
- (**
465958
- * @license
465959
- * Copyright Google LLC All Rights Reserved.
465960
- *
465961
- * Use of this source code is governed by an MIT-style license that can be
465962
- * found in the LICENSE file at https://angular.io/license
465963
- *)
465964
-
465965
- @angular-devkit/core/src/json/schema/index.js:
465966
- (**
465967
- * @license
465968
- * Copyright Google LLC All Rights Reserved.
465969
- *
465970
- * Use of this source code is governed by an MIT-style license that can be
465971
- * found in the LICENSE file at https://angular.io/license
465972
- *)
465973
-
465974
- @angular-devkit/core/src/json/index.js:
465975
- (**
465976
- * @license
465977
- * Copyright Google LLC All Rights Reserved.
465978
- *
465979
- * Use of this source code is governed by an MIT-style license that can be
465980
- * found in the LICENSE file at https://angular.io/license
465981
- *)
465982
-
465983
- @angular-devkit/core/src/logger/logger.js:
465984
- (**
465985
- * @license
465986
- * Copyright Google LLC All Rights Reserved.
465987
- *
465988
- * Use of this source code is governed by an MIT-style license that can be
465989
- * found in the LICENSE file at https://angular.io/license
465990
- *)
465991
-
465992
- @angular-devkit/core/src/logger/indent.js:
465993
- (**
465994
- * @license
465995
- * Copyright Google LLC All Rights Reserved.
465996
- *
465997
- * Use of this source code is governed by an MIT-style license that can be
465998
- * found in the LICENSE file at https://angular.io/license
465999
- *)
466000
-
466001
- @angular-devkit/core/src/logger/level.js:
466002
- (**
466003
- * @license
466004
- * Copyright Google LLC All Rights Reserved.
466005
- *
466006
- * Use of this source code is governed by an MIT-style license that can be
466007
- * found in the LICENSE file at https://angular.io/license
466008
- *)
466009
-
466010
- @angular-devkit/core/src/logger/null-logger.js:
466011
- (**
466012
- * @license
466013
- * Copyright Google LLC All Rights Reserved.
466014
- *
466015
- * Use of this source code is governed by an MIT-style license that can be
466016
- * found in the LICENSE file at https://angular.io/license
466017
- *)
466018
-
466019
- @angular-devkit/core/src/logger/transform-logger.js:
466020
- (**
466021
- * @license
466022
- * Copyright Google LLC All Rights Reserved.
466023
- *
466024
- * Use of this source code is governed by an MIT-style license that can be
466025
- * found in the LICENSE file at https://angular.io/license
466026
- *)
466027
-
466028
- @angular-devkit/core/src/logger/index.js:
466029
- (**
466030
- * @license
466031
- * Copyright Google LLC All Rights Reserved.
466032
- *
466033
- * Use of this source code is governed by an MIT-style license that can be
466034
- * found in the LICENSE file at https://angular.io/license
466035
- *)
466036
-
466037
- @angular-devkit/core/src/workspace/definitions.js:
466038
- (**
466039
- * @license
466040
- * Copyright Google LLC All Rights Reserved.
466041
- *
466042
- * Use of this source code is governed by an MIT-style license that can be
466043
- * found in the LICENSE file at https://angular.io/license
466044
- *)
466045
-
466046
- @angular-devkit/core/src/virtual-fs/path.js:
466047
- (**
466048
- * @license
466049
- * Copyright Google LLC All Rights Reserved.
466050
- *
466051
- * Use of this source code is governed by an MIT-style license that can be
466052
- * found in the LICENSE file at https://angular.io/license
466053
- *)
466054
-
466055
- @angular-devkit/core/src/virtual-fs/host/buffer.js:
466056
- (**
466057
- * @license
466058
- * Copyright Google LLC All Rights Reserved.
466059
- *
466060
- * Use of this source code is governed by an MIT-style license that can be
466061
- * found in the LICENSE file at https://angular.io/license
466062
- *)
466063
-
466064
- @angular-devkit/core/src/virtual-fs/host/interface.js:
466065
- (**
466066
- * @license
466067
- * Copyright Google LLC All Rights Reserved.
466068
- *
466069
- * Use of this source code is governed by an MIT-style license that can be
466070
- * found in the LICENSE file at https://angular.io/license
466071
- *)
466072
-
466073
- @angular-devkit/core/src/virtual-fs/host/memory.js:
466074
- (**
466075
- * @license
466076
- * Copyright Google LLC All Rights Reserved.
466077
- *
466078
- * Use of this source code is governed by an MIT-style license that can be
466079
- * found in the LICENSE file at https://angular.io/license
466080
- *)
466081
-
466082
- @angular-devkit/core/src/virtual-fs/host/sync.js:
466083
- (**
466084
- * @license
466085
- * Copyright Google LLC All Rights Reserved.
466086
- *
466087
- * Use of this source code is governed by an MIT-style license that can be
466088
- * found in the LICENSE file at https://angular.io/license
466089
- *)
466090
-
466091
- @angular-devkit/core/src/virtual-fs/host/test.js:
466092
- (**
466093
- * @license
466094
- * Copyright Google LLC All Rights Reserved.
466095
- *
466096
- * Use of this source code is governed by an MIT-style license that can be
466097
- * found in the LICENSE file at https://angular.io/license
466098
- *)
466099
-
466100
- @angular-devkit/core/src/virtual-fs/host/resolver.js:
466101
- (**
466102
- * @license
466103
- * Copyright Google LLC All Rights Reserved.
466104
- *
466105
- * Use of this source code is governed by an MIT-style license that can be
466106
- * found in the LICENSE file at https://angular.io/license
466107
- *)
466108
-
466109
- @angular-devkit/core/src/virtual-fs/host/alias.js:
466110
- (**
466111
- * @license
466112
- * Copyright Google LLC All Rights Reserved.
466113
- *
466114
- * Use of this source code is governed by an MIT-style license that can be
466115
- * found in the LICENSE file at https://angular.io/license
466116
- *)
466117
-
466118
- @angular-devkit/core/src/virtual-fs/host/create.js:
466119
- (**
466120
- * @license
466121
- * Copyright Google LLC All Rights Reserved.
466122
- *
466123
- * Use of this source code is governed by an MIT-style license that can be
466124
- * found in the LICENSE file at https://angular.io/license
466125
- *)
466126
-
466127
- @angular-devkit/core/src/virtual-fs/host/empty.js:
466128
- (**
466129
- * @license
466130
- * Copyright Google LLC All Rights Reserved.
466131
- *
466132
- * Use of this source code is governed by an MIT-style license that can be
466133
- * found in the LICENSE file at https://angular.io/license
466134
- *)
466135
-
466136
- @angular-devkit/core/src/virtual-fs/host/pattern.js:
466137
- (**
466138
- * @license
466139
- * Copyright Google LLC All Rights Reserved.
466140
- *
466141
- * Use of this source code is governed by an MIT-style license that can be
466142
- * found in the LICENSE file at https://angular.io/license
466143
- *)
466144
-
466145
- @angular-devkit/core/src/virtual-fs/host/record.js:
466146
- (**
466147
- * @license
466148
- * Copyright Google LLC All Rights Reserved.
466149
- *
466150
- * Use of this source code is governed by an MIT-style license that can be
466151
- * found in the LICENSE file at https://angular.io/license
466152
- *)
466153
-
466154
- @angular-devkit/core/src/virtual-fs/host/safe.js:
466155
- (**
466156
- * @license
466157
- * Copyright Google LLC All Rights Reserved.
466158
- *
466159
- * Use of this source code is governed by an MIT-style license that can be
466160
- * found in the LICENSE file at https://angular.io/license
466161
- *)
466162
-
466163
- @angular-devkit/core/src/virtual-fs/host/scoped.js:
466164
- (**
466165
- * @license
466166
- * Copyright Google LLC All Rights Reserved.
466167
- *
466168
- * Use of this source code is governed by an MIT-style license that can be
466169
- * found in the LICENSE file at https://angular.io/license
466170
- *)
466171
-
466172
- @angular-devkit/core/src/virtual-fs/host/index.js:
466173
- (**
466174
- * @license
466175
- * Copyright Google LLC All Rights Reserved.
466176
- *
466177
- * Use of this source code is governed by an MIT-style license that can be
466178
- * found in the LICENSE file at https://angular.io/license
466179
- *)
466180
-
466181
- @angular-devkit/core/src/virtual-fs/index.js:
466182
- (**
466183
- * @license
466184
- * Copyright Google LLC All Rights Reserved.
466185
- *
466186
- * Use of this source code is governed by an MIT-style license that can be
466187
- * found in the LICENSE file at https://angular.io/license
466188
- *)
466189
-
466190
- @angular-devkit/core/src/workspace/host.js:
466191
- (**
466192
- * @license
466193
- * Copyright Google LLC All Rights Reserved.
466194
- *
466195
- * Use of this source code is governed by an MIT-style license that can be
466196
- * found in the LICENSE file at https://angular.io/license
466197
- *)
466198
-
466199
- @angular-devkit/core/src/workspace/json/metadata.js:
466200
- (**
466201
- * @license
466202
- * Copyright Google LLC All Rights Reserved.
466203
- *
466204
- * Use of this source code is governed by an MIT-style license that can be
466205
- * found in the LICENSE file at https://angular.io/license
466206
- *)
466207
-
466208
- @angular-devkit/core/src/workspace/json/utilities.js:
466209
- (**
466210
- * @license
466211
- * Copyright Google LLC All Rights Reserved.
466212
- *
466213
- * Use of this source code is governed by an MIT-style license that can be
466214
- * found in the LICENSE file at https://angular.io/license
466215
- *)
466216
-
466217
- @angular-devkit/core/src/workspace/json/reader.js:
466218
- (**
466219
- * @license
466220
- * Copyright Google LLC All Rights Reserved.
466221
- *
466222
- * Use of this source code is governed by an MIT-style license that can be
466223
- * found in the LICENSE file at https://angular.io/license
466224
- *)
466225
-
466226
- @angular-devkit/core/src/workspace/json/writer.js:
466227
- (**
466228
- * @license
466229
- * Copyright Google LLC All Rights Reserved.
466230
- *
466231
- * Use of this source code is governed by an MIT-style license that can be
466232
- * found in the LICENSE file at https://angular.io/license
466233
- *)
466234
-
466235
- @angular-devkit/core/src/workspace/core.js:
466236
- (**
466237
- * @license
466238
- * Copyright Google LLC All Rights Reserved.
466239
- *
466240
- * Use of this source code is governed by an MIT-style license that can be
466241
- * found in the LICENSE file at https://angular.io/license
466242
- *)
466243
-
466244
- @angular-devkit/core/src/workspace/index.js:
466245
- (**
466246
- * @license
466247
- * Copyright Google LLC All Rights Reserved.
466248
- *
466249
- * Use of this source code is governed by an MIT-style license that can be
466250
- * found in the LICENSE file at https://angular.io/license
466251
- *)
466252
-
466253
- @angular-devkit/core/src/index.js:
466254
- (**
466255
- * @license
466256
- * Copyright Google LLC All Rights Reserved.
466257
- *
466258
- * Use of this source code is governed by an MIT-style license that can be
466259
- * found in the LICENSE file at https://angular.io/license
466260
- *)
466261
-
466262
- @angular-devkit/schematics/src/formats/html-selector.js:
466263
- (**
466264
- * @license
466265
- * Copyright Google LLC All Rights Reserved.
466266
- *
466267
- * Use of this source code is governed by an MIT-style license that can be
466268
- * found in the LICENSE file at https://angular.io/license
466269
- *)
466270
-
466271
- @angular-devkit/schematics/src/formats/path.js:
466272
- (**
466273
- * @license
466274
- * Copyright Google LLC All Rights Reserved.
466275
- *
466276
- * Use of this source code is governed by an MIT-style license that can be
466277
- * found in the LICENSE file at https://angular.io/license
466278
- *)
466279
-
466280
- @angular-devkit/schematics/src/formats/index.js:
466281
- (**
466282
- * @license
466283
- * Copyright Google LLC All Rights Reserved.
466284
- *
466285
- * Use of this source code is governed by an MIT-style license that can be
466286
- * found in the LICENSE file at https://angular.io/license
466287
- *)
466288
-
466289
- @angular-devkit/schematics/src/tree/interface.js:
466290
- (**
466291
- * @license
466292
- * Copyright Google LLC All Rights Reserved.
466293
- *
466294
- * Use of this source code is governed by an MIT-style license that can be
466295
- * found in the LICENSE file at https://angular.io/license
466296
- *)
466297
-
466298
- @angular-devkit/schematics/src/exception/exception.js:
466299
- (**
466300
- * @license
466301
- * Copyright Google LLC All Rights Reserved.
466302
- *
466303
- * Use of this source code is governed by an MIT-style license that can be
466304
- * found in the LICENSE file at https://angular.io/license
466305
- *)
466306
-
466307
- @angular-devkit/schematics/src/tree/delegate.js:
466308
- (**
466309
- * @license
466310
- * Copyright Google LLC All Rights Reserved.
466311
- *
466312
- * Use of this source code is governed by an MIT-style license that can be
466313
- * found in the LICENSE file at https://angular.io/license
466314
- *)
466315
-
466316
- @angular-devkit/schematics/src/tree/entry.js:
466317
- (**
466318
- * @license
466319
- * Copyright Google LLC All Rights Reserved.
466320
- *
466321
- * Use of this source code is governed by an MIT-style license that can be
466322
- * found in the LICENSE file at https://angular.io/license
466323
- *)
466324
-
466325
- @angular-devkit/schematics/src/utility/update-buffer.js:
466326
- (**
466327
- * @license
466328
- * Copyright Google LLC All Rights Reserved.
466329
- *
466330
- * Use of this source code is governed by an MIT-style license that can be
466331
- * found in the LICENSE file at https://angular.io/license
466332
- *)
466333
-
466334
- @angular-devkit/schematics/src/tree/recorder.js:
466335
- (**
466336
- * @license
466337
- * Copyright Google LLC All Rights Reserved.
466338
- *
466339
- * Use of this source code is governed by an MIT-style license that can be
466340
- * found in the LICENSE file at https://angular.io/license
466341
- *)
466342
-
466343
- @angular-devkit/schematics/src/tree/scoped.js:
466344
- (**
466345
- * @license
466346
- * Copyright Google LLC All Rights Reserved.
466347
- *
466348
- * Use of this source code is governed by an MIT-style license that can be
466349
- * found in the LICENSE file at https://angular.io/license
466350
- *)
466351
-
466352
- @angular-devkit/schematics/src/tree/host-tree.js:
466353
- (**
466354
- * @license
466355
- * Copyright Google LLC All Rights Reserved.
466356
- *
466357
- * Use of this source code is governed by an MIT-style license that can be
466358
- * found in the LICENSE file at https://angular.io/license
466359
- *)
466360
-
466361
- @angular-devkit/schematics/src/tree/static.js:
466362
- (**
466363
- * @license
466364
- * Copyright Google LLC All Rights Reserved.
466365
- *
466366
- * Use of this source code is governed by an MIT-style license that can be
466367
- * found in the LICENSE file at https://angular.io/license
466368
- *)
466369
-
466370
- @angular-devkit/schematics/src/tree/null.js:
466371
- (**
466372
- * @license
466373
- * Copyright Google LLC All Rights Reserved.
466374
- *
466375
- * Use of this source code is governed by an MIT-style license that can be
466376
- * found in the LICENSE file at https://angular.io/license
466377
- *)
466378
-
466379
- @angular-devkit/schematics/src/rules/call.js:
466380
- (**
466381
- * @license
466382
- * Copyright Google LLC All Rights Reserved.
466383
- *
466384
- * Use of this source code is governed by an MIT-style license that can be
466385
- * found in the LICENSE file at https://angular.io/license
466386
- *)
466387
-
466388
- @angular-devkit/schematics/src/engine/schematic.js:
466389
- (**
466390
- * @license
466391
- * Copyright Google LLC All Rights Reserved.
466392
- *
466393
- * Use of this source code is governed by an MIT-style license that can be
466394
- * found in the LICENSE file at https://angular.io/license
466395
- *)
466396
-
466397
- @angular-devkit/schematics/src/engine/engine.js:
466398
- (**
466399
- * @license
466400
- * Copyright Google LLC All Rights Reserved.
466401
- *
466402
- * Use of this source code is governed by an MIT-style license that can be
466403
- * found in the LICENSE file at https://angular.io/license
466404
- *)
466405
-
466406
- @angular-devkit/schematics/src/engine/interface.js:
466407
- (**
466408
- * @license
466409
- * Copyright Google LLC All Rights Reserved.
466410
- *
466411
- * Use of this source code is governed by an MIT-style license that can be
466412
- * found in the LICENSE file at https://angular.io/license
466413
- *)
466414
-
466415
- @angular-devkit/schematics/src/engine/index.js:
466416
- (**
466417
- * @license
466418
- * Copyright Google LLC All Rights Reserved.
466419
- *
466420
- * Use of this source code is governed by an MIT-style license that can be
466421
- * found in the LICENSE file at https://angular.io/license
466422
- *)
466423
-
466424
- @angular-devkit/core/node/cli-logger.js:
466425
- (**
466426
- * @license
466427
- * Copyright Google LLC All Rights Reserved.
466428
- *
466429
- * Use of this source code is governed by an MIT-style license that can be
466430
- * found in the LICENSE file at https://angular.io/license
466431
- *)
466432
-
466433
- normalize-path/index.js:
466434
- (*!
466435
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
466436
- *
466437
- * Copyright (c) 2014-2018, Jon Schlinkert.
466438
- * Released under the MIT License.
466439
- *)
466440
-
466441
- is-extglob/index.js:
466442
- (*!
466443
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
466444
- *
466445
- * Copyright (c) 2014-2016, Jon Schlinkert.
466446
- * Licensed under the MIT License.
466447
- *)
466448
-
466449
- is-glob/index.js:
466450
- (*!
466451
- * is-glob <https://github.com/jonschlinkert/is-glob>
466452
- *
466453
- * Copyright (c) 2014-2017, Jon Schlinkert.
466454
- * Released under the MIT License.
466455
- *)
466456
-
466457
- is-number/index.js:
466458
- (*!
466459
- * is-number <https://github.com/jonschlinkert/is-number>
466460
- *
466461
- * Copyright (c) 2014-present, Jon Schlinkert.
466462
- * Released under the MIT License.
466463
- *)
466464
-
466465
- to-regex-range/index.js:
466466
- (*!
466467
- * to-regex-range <https://github.com/micromatch/to-regex-range>
466468
- *
466469
- * Copyright (c) 2015-present, Jon Schlinkert.
466470
- * Released under the MIT License.
466471
- *)
466472
-
466473
- fill-range/index.js:
466474
- (*!
466475
- * fill-range <https://github.com/jonschlinkert/fill-range>
466476
- *
466477
- * Copyright (c) 2014-present, Jon Schlinkert.
466478
- * Licensed under the MIT License.
466479
- *)
466480
-
466481
- @angular-devkit/core/node/host.js:
466482
- (**
466483
- * @license
466484
- * Copyright Google LLC All Rights Reserved.
466485
- *
466486
- * Use of this source code is governed by an MIT-style license that can be
466487
- * found in the LICENSE file at https://angular.io/license
466488
- *)
466489
-
466490
- @angular-devkit/core/node/index.js:
466491
- (**
466492
- * @license
466493
- * Copyright Google LLC All Rights Reserved.
466494
- *
466495
- * Use of this source code is governed by an MIT-style license that can be
466496
- * found in the LICENSE file at https://angular.io/license
466497
- *)
466498
-
466499
- @angular-devkit/schematics/src/tree/action.js:
466500
- (**
466501
- * @license
466502
- * Copyright Google LLC All Rights Reserved.
466503
- *
466504
- * Use of this source code is governed by an MIT-style license that can be
466505
- * found in the LICENSE file at https://angular.io/license
466506
- *)
466507
-
466508
- @angular-devkit/schematics/src/sink/sink.js:
466509
- (**
466510
- * @license
466511
- * Copyright Google LLC All Rights Reserved.
466512
- *
466513
- * Use of this source code is governed by an MIT-style license that can be
466514
- * found in the LICENSE file at https://angular.io/license
466515
- *)
466516
-
466517
- @angular-devkit/schematics/src/sink/host.js:
466518
- (**
466519
- * @license
466520
- * Copyright Google LLC All Rights Reserved.
466521
- *
466522
- * Use of this source code is governed by an MIT-style license that can be
466523
- * found in the LICENSE file at https://angular.io/license
466524
- *)
466525
-
466526
- @angular-devkit/schematics/src/sink/dryrun.js:
466527
- (**
466528
- * @license
466529
- * Copyright Google LLC All Rights Reserved.
466530
- *
466531
- * Use of this source code is governed by an MIT-style license that can be
466532
- * found in the LICENSE file at https://angular.io/license
466533
- *)
466534
-
466535
- @angular-devkit/schematics/src/workflow/base.js:
466536
- (**
466537
- * @license
466538
- * Copyright Google LLC All Rights Reserved.
466539
- *
466540
- * Use of this source code is governed by an MIT-style license that can be
466541
- * found in the LICENSE file at https://angular.io/license
466542
- *)
466543
-
466544
- @angular-devkit/schematics/src/workflow/interface.js:
466545
- (**
466546
- * @license
466547
- * Copyright Google LLC All Rights Reserved.
466548
- *
466549
- * Use of this source code is governed by an MIT-style license that can be
466550
- * found in the LICENSE file at https://angular.io/license
466551
- *)
466552
-
466553
- @angular-devkit/schematics/src/workflow/index.js:
466554
- (**
466555
- * @license
466556
- * Copyright Google LLC All Rights Reserved.
466557
- *
466558
- * Use of this source code is governed by an MIT-style license that can be
466559
- * found in the LICENSE file at https://angular.io/license
466560
- *)
466561
-
466562
- @angular-devkit/schematics/src/rules/base.js:
466563
- (**
466564
- * @license
466565
- * Copyright Google LLC All Rights Reserved.
466566
- *
466567
- * Use of this source code is governed by an MIT-style license that can be
466568
- * found in the LICENSE file at https://angular.io/license
466569
- *)
466570
-
466571
- @angular-devkit/schematics/src/rules/move.js:
466572
- (**
466573
- * @license
466574
- * Copyright Google LLC All Rights Reserved.
466575
- *
466576
- * Use of this source code is governed by an MIT-style license that can be
466577
- * found in the LICENSE file at https://angular.io/license
466578
- *)
466579
-
466580
- @angular-devkit/schematics/src/rules/random.js:
466581
- (**
466582
- * @license
466583
- * Copyright Google LLC All Rights Reserved.
466584
- *
466585
- * Use of this source code is governed by an MIT-style license that can be
466586
- * found in the LICENSE file at https://angular.io/license
466587
- *)
466588
-
466589
- @angular-devkit/schematics/src/rules/schematic.js:
466590
- (**
466591
- * @license
466592
- * Copyright Google LLC All Rights Reserved.
466593
- *
466594
- * Use of this source code is governed by an MIT-style license that can be
466595
- * found in the LICENSE file at https://angular.io/license
466596
- *)
466597
-
466598
- @angular-devkit/schematics/src/rules/template.js:
466599
- (**
466600
- * @license
466601
- * Copyright Google LLC All Rights Reserved.
466602
- *
466603
- * Use of this source code is governed by an MIT-style license that can be
466604
- * found in the LICENSE file at https://angular.io/license
466605
- *)
466606
-
466607
- @angular-devkit/schematics/src/rules/url.js:
466608
- (**
466609
- * @license
466610
- * Copyright Google LLC All Rights Reserved.
466611
- *
466612
- * Use of this source code is governed by an MIT-style license that can be
466613
- * found in the LICENSE file at https://angular.io/license
466614
- *)
466615
-
466616
- @angular-devkit/schematics/src/tree/empty.js:
466617
- (**
466618
- * @license
466619
- * Copyright Google LLC All Rights Reserved.
466620
- *
466621
- * Use of this source code is governed by an MIT-style license that can be
466622
- * found in the LICENSE file at https://angular.io/license
466623
- *)
466624
-
466625
- @angular-devkit/schematics/src/index.js:
466626
- (**
466627
- * @license
466628
- * Copyright Google LLC All Rights Reserved.
466629
- *
466630
- * Use of this source code is governed by an MIT-style license that can be
466631
- * found in the LICENSE file at https://angular.io/license
466632
- *)
466633
-
466634
- @angular-devkit/schematics/tasks/package-manager/options.js:
466635
- (**
466636
- * @license
466637
- * Copyright Google LLC All Rights Reserved.
466638
- *
466639
- * Use of this source code is governed by an MIT-style license that can be
466640
- * found in the LICENSE file at https://angular.io/license
466641
- *)
466642
-
466643
- @angular-devkit/schematics/tasks/repo-init/options.js:
466644
- (**
466645
- * @license
466646
- * Copyright Google LLC All Rights Reserved.
466647
- *
466648
- * Use of this source code is governed by an MIT-style license that can be
466649
- * found in the LICENSE file at https://angular.io/license
466650
- *)
466651
-
466652
- @angular-devkit/schematics/tasks/run-schematic/options.js:
466653
- (**
466654
- * @license
466655
- * Copyright Google LLC All Rights Reserved.
466656
- *
466657
- * Use of this source code is governed by an MIT-style license that can be
466658
- * found in the LICENSE file at https://angular.io/license
466659
- *)
466660
-
466661
- safe-buffer/index.js:
466662
- (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466663
-
466664
- @angular-devkit/schematics/tasks/package-manager/executor.js:
466665
- (**
466666
- * @license
466667
- * Copyright Google LLC All Rights Reserved.
466668
- *
466669
- * Use of this source code is governed by an MIT-style license that can be
466670
- * found in the LICENSE file at https://angular.io/license
466671
- *)
466672
-
466673
- @angular-devkit/schematics/tasks/repo-init/executor.js:
466674
- (**
466675
- * @license
466676
- * Copyright Google LLC All Rights Reserved.
466677
- *
466678
- * Use of this source code is governed by an MIT-style license that can be
466679
- * found in the LICENSE file at https://angular.io/license
466680
- *)
466681
-
466682
- @angular-devkit/schematics/tasks/run-schematic/executor.js:
466683
- (**
466684
- * @license
466685
- * Copyright Google LLC All Rights Reserved.
466686
- *
466687
- * Use of this source code is governed by an MIT-style license that can be
466688
- * found in the LICENSE file at https://angular.io/license
466689
- *)
466690
-
466691
- @angular-devkit/schematics/tasks/node/index.js:
466692
- (**
466693
- * @license
466694
- * Copyright Google LLC All Rights Reserved.
466695
- *
466696
- * Use of this source code is governed by an MIT-style license that can be
466697
- * found in the LICENSE file at https://angular.io/license
466698
- *)
466699
-
466700
- @angular-devkit/schematics/tools/description.js:
466701
- (**
466702
- * @license
466703
- * Copyright Google LLC All Rights Reserved.
466704
- *
466705
- * Use of this source code is governed by an MIT-style license that can be
466706
- * found in the LICENSE file at https://angular.io/license
466707
- *)
466708
-
466709
- @angular-devkit/schematics/tools/export-ref.js:
466710
- (**
466711
- * @license
466712
- * Copyright Google LLC All Rights Reserved.
466713
- *
466714
- * Use of this source code is governed by an MIT-style license that can be
466715
- * found in the LICENSE file at https://angular.io/license
466716
- *)
466717
-
466718
- @angular-devkit/schematics/tools/file-system-utility.js:
466719
- (**
466720
- * @license
466721
- * Copyright Google LLC All Rights Reserved.
466722
- *
466723
- * Use of this source code is governed by an MIT-style license that can be
466724
- * found in the LICENSE file at https://angular.io/license
466725
- *)
466726
-
466727
- @angular-devkit/schematics/tools/file-system-engine-host-base.js:
466728
- (**
466729
- * @license
466730
- * Copyright Google LLC All Rights Reserved.
466731
- *
466732
- * Use of this source code is governed by an MIT-style license that can be
466733
- * found in the LICENSE file at https://angular.io/license
466734
- *)
466735
-
466736
- @angular-devkit/schematics/tools/node-module-engine-host.js:
466737
- (**
466738
- * @license
466739
- * Copyright Google LLC All Rights Reserved.
466740
- *
466741
- * Use of this source code is governed by an MIT-style license that can be
466742
- * found in the LICENSE file at https://angular.io/license
466743
- *)
466744
-
466745
- @angular-devkit/schematics/tools/schema-option-transform.js:
466746
- (**
466747
- * @license
466748
- * Copyright Google LLC All Rights Reserved.
466749
- *
466750
- * Use of this source code is governed by an MIT-style license that can be
466751
- * found in the LICENSE file at https://angular.io/license
466752
- *)
466753
-
466754
- @angular-devkit/schematics/tools/workflow/node-workflow.js:
466755
- (**
466756
- * @license
466757
- * Copyright Google LLC All Rights Reserved.
466758
- *
466759
- * Use of this source code is governed by an MIT-style license that can be
466760
- * found in the LICENSE file at https://angular.io/license
466761
- *)
466762
-
466763
- @angular-devkit/schematics/tools/file-system-engine-host.js:
466764
- (**
466765
- * @license
466766
- * Copyright Google LLC All Rights Reserved.
466767
- *
466768
- * Use of this source code is governed by an MIT-style license that can be
466769
- * found in the LICENSE file at https://angular.io/license
466770
- *)
466771
-
466772
- @angular-devkit/schematics/tools/node-modules-test-engine-host.js:
466773
- (**
466774
- * @license
466775
- * Copyright Google LLC All Rights Reserved.
466776
- *
466777
- * Use of this source code is governed by an MIT-style license that can be
466778
- * found in the LICENSE file at https://angular.io/license
466779
- *)
466780
-
466781
- @angular-devkit/schematics/tools/index.js:
466782
- (**
466783
- * @license
466784
- * Copyright Google LLC All Rights Reserved.
466785
- *
466786
- * Use of this source code is governed by an MIT-style license that can be
466787
- * found in the LICENSE file at https://angular.io/license
466788
- *)
466789
-
466790
- @angular-devkit/schematics/testing/schematic-test-runner.js:
466791
- (**
466792
- * @license
466793
- * Copyright Google LLC All Rights Reserved.
466794
- *
466795
- * Use of this source code is governed by an MIT-style license that can be
466796
- * found in the LICENSE file at https://angular.io/license
466797
- *)
466798
-
466799
- @angular-devkit/schematics/testing/index.js:
466800
- (**
466801
- * @license
466802
- * Copyright Google LLC All Rights Reserved.
466803
- *
466804
- * Use of this source code is governed by an MIT-style license that can be
466805
- * found in the LICENSE file at https://angular.io/license
466806
- *)
466807
-
466808
- @angular-devkit/architect/src/jobs/api.js:
466809
- (**
466810
- * @license
466811
- * Copyright Google LLC All Rights Reserved.
466812
- *
466813
- * Use of this source code is governed by an MIT-style license that can be
466814
- * found in the LICENSE file at https://angular.io/license
466815
- *)
466816
-
466817
- @angular-devkit/architect/src/jobs/strategy.js:
466818
- (**
466819
- * @license
466820
- * Copyright Google LLC All Rights Reserved.
466821
- *
466822
- * Use of this source code is governed by an MIT-style license that can be
466823
- * found in the LICENSE file at https://angular.io/license
466824
- *)
466825
-
466826
- @angular-devkit/architect/src/jobs/create-job-handler.js:
466827
- (**
466828
- * @license
466829
- * Copyright Google LLC All Rights Reserved.
466830
- *
466831
- * Use of this source code is governed by an MIT-style license that can be
466832
- * found in the LICENSE file at https://angular.io/license
466833
- *)
466834
-
466835
- @angular-devkit/architect/src/jobs/exception.js:
466836
- (**
466837
- * @license
466838
- * Copyright Google LLC All Rights Reserved.
466839
- *
466840
- * Use of this source code is governed by an MIT-style license that can be
466841
- * found in the LICENSE file at https://angular.io/license
466842
- *)
466843
-
466844
- @angular-devkit/architect/src/jobs/dispatcher.js:
466845
- (**
466846
- * @license
466847
- * Copyright Google LLC All Rights Reserved.
466848
- *
466849
- * Use of this source code is governed by an MIT-style license that can be
466850
- * found in the LICENSE file at https://angular.io/license
466851
- *)
466852
-
466853
- @angular-devkit/architect/src/jobs/fallback-registry.js:
466854
- (**
466855
- * @license
466856
- * Copyright Google LLC All Rights Reserved.
466857
- *
466858
- * Use of this source code is governed by an MIT-style license that can be
466859
- * found in the LICENSE file at https://angular.io/license
466860
- *)
466861
-
466862
- @angular-devkit/architect/src/jobs/simple-registry.js:
466863
- (**
466864
- * @license
466865
- * Copyright Google LLC All Rights Reserved.
466866
- *
466867
- * Use of this source code is governed by an MIT-style license that can be
466868
- * found in the LICENSE file at https://angular.io/license
466869
- *)
466870
-
466871
- @angular-devkit/architect/src/jobs/simple-scheduler.js:
466872
- (**
466873
- * @license
466874
- * Copyright Google LLC All Rights Reserved.
466875
- *
466876
- * Use of this source code is governed by an MIT-style license that can be
466877
- * found in the LICENSE file at https://angular.io/license
466878
- *)
466879
-
466880
- @angular-devkit/architect/src/jobs/index.js:
466881
- (**
466882
- * @license
466883
- * Copyright Google LLC All Rights Reserved.
466884
- *
466885
- * Use of this source code is governed by an MIT-style license that can be
466886
- * found in the LICENSE file at https://angular.io/license
466887
- *)
466888
-
466889
- @angular-devkit/architect/src/api.js:
466890
- (**
466891
- * @license
466892
- * Copyright Google LLC All Rights Reserved.
466893
- *
466894
- * Use of this source code is governed by an MIT-style license that can be
466895
- * found in the LICENSE file at https://angular.io/license
466896
- *)
466897
-
466898
- @angular-devkit/architect/src/schedule-by-name.js:
466899
- (**
466900
- * @license
466901
- * Copyright Google LLC All Rights Reserved.
466902
- *
466903
- * Use of this source code is governed by an MIT-style license that can be
466904
- * found in the LICENSE file at https://angular.io/license
466905
- *)
466906
-
466907
- @angular-devkit/architect/src/architect.js:
466908
- (**
466909
- * @license
466910
- * Copyright Google LLC All Rights Reserved.
466911
- *
466912
- * Use of this source code is governed by an MIT-style license that can be
466913
- * found in the LICENSE file at https://angular.io/license
466914
- *)
466915
-
466916
- @angular-devkit/architect/src/internal.js:
466917
- (**
466918
- * @license
466919
- * Copyright Google LLC All Rights Reserved.
466920
- *
466921
- * Use of this source code is governed by an MIT-style license that can be
466922
- * found in the LICENSE file at https://angular.io/license
466923
- *)
466924
-
466925
- @angular-devkit/architect/src/create-builder.js:
466926
- (**
466927
- * @license
466928
- * Copyright Google LLC All Rights Reserved.
466929
- *
466930
- * Use of this source code is governed by an MIT-style license that can be
466931
- * found in the LICENSE file at https://angular.io/license
466932
- *)
466933
-
466934
- @angular-devkit/architect/src/index.js:
466935
- (**
466936
- * @license
466937
- * Copyright Google LLC All Rights Reserved.
466938
- *
466939
- * Use of this source code is governed by an MIT-style license that can be
466940
- * found in the LICENSE file at https://angular.io/license
466941
- *)
466942
-
466943
- queue-microtask/index.js:
466944
- (*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466945
-
466946
- run-parallel/index.js:
466947
- (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
466948
-
466949
- rollup/dist/shared/parseAst.js:
466950
- (*
466951
- @license
466952
- Rollup.js v4.10.0
466953
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466954
-
466955
- https://github.com/rollup/rollup
466956
-
466957
- Released under the MIT License.
466958
- *)
466959
-
466960
- rollup/dist/shared/rollup.js:
466961
- (*
466962
- @license
466963
- Rollup.js v4.10.0
466964
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466965
-
466966
- https://github.com/rollup/rollup
466967
-
466968
- Released under the MIT License.
466969
- *)
466970
-
466971
- rollup/dist/shared/fsevents-importer.js:
466972
- (*
466973
- @license
466974
- Rollup.js v4.10.0
466975
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466976
-
466977
- https://github.com/rollup/rollup
466978
-
466979
- Released under the MIT License.
466980
- *)
466981
-
466982
- rollup/dist/shared/index.js:
466983
- (*
466984
- @license
466985
- Rollup.js v4.10.0
466986
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
466987
-
466988
- https://github.com/rollup/rollup
466989
-
466990
- Released under the MIT License.
466991
- *)
466992
- (*!
466993
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
466994
- *
466995
- * Copyright (c) 2014-2018, Jon Schlinkert.
466996
- * Released under the MIT License.
466997
- *)
466998
- (*!
466999
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
467000
- *
467001
- * Copyright (c) 2014-2016, Jon Schlinkert.
467002
- * Licensed under the MIT License.
467003
- *)
467004
- (*!
467005
- * is-glob <https://github.com/jonschlinkert/is-glob>
467006
- *
467007
- * Copyright (c) 2014-2017, Jon Schlinkert.
467008
- * Released under the MIT License.
467009
- *)
467010
- (*!
467011
- * is-number <https://github.com/jonschlinkert/is-number>
467012
- *
467013
- * Copyright (c) 2014-present, Jon Schlinkert.
467014
- * Released under the MIT License.
467015
- *)
467016
- (*!
467017
- * to-regex-range <https://github.com/micromatch/to-regex-range>
467018
- *
467019
- * Copyright (c) 2015-present, Jon Schlinkert.
467020
- * Released under the MIT License.
467021
- *)
467022
- (*!
467023
- * fill-range <https://github.com/jonschlinkert/fill-range>
467024
- *
467025
- * Copyright (c) 2014-present, Jon Schlinkert.
467026
- * Licensed under the MIT License.
467027
- *)
467028
-
467029
- rollup/dist/shared/watch.js:
467030
- (*
467031
- @license
467032
- Rollup.js v4.10.0
467033
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467034
-
467035
- https://github.com/rollup/rollup
467036
-
467037
- Released under the MIT License.
467038
- *)
467039
-
467040
- rollup/dist/rollup.js:
467041
- (*
467042
- @license
467043
- Rollup.js v4.10.0
467044
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
467045
-
467046
- https://github.com/rollup/rollup
467047
-
467048
- Released under the MIT License.
467049
- *)
467050
- */