@storm-software/workspace-tools 1.60.7 → 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(path15) {
210766
210783
  try {
210767
210784
  const stat2 = await fs_1.promises.stat(path15);
@@ -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(path15) {
210778
210796
  try {
210779
210797
  const stat2 = fs_1.default.statSync(path15);
@@ -210890,6 +210908,7 @@ ${[...importStack, fullPath].map((path15, i3) => `${i3 + 1}. ${path15}`).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((path15, i3) => `${i3 + 1}. ${path15}`).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
  }
@@ -335112,6 +335138,13 @@ var require_package2 = __commonJS({
335112
335138
  var require_ejs = __commonJS({
335113
335139
  "node_modules/.pnpm/ejs@3.1.9/node_modules/ejs/lib/ejs.js"(exports2) {
335114
335140
  "use strict";
335141
+ /**
335142
+ * @file Embedded JavaScript templating engine. {@link http://ejs.co}
335143
+ * @author Matthew Eernisse <mde@fleegix.org>
335144
+ * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
335145
+ * @project EJS
335146
+ * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
335147
+ */
335115
335148
  var fs7 = require("fs");
335116
335149
  var path15 = require("path");
335117
335150
  var utils2 = require_utils5();
@@ -340861,6 +340894,13 @@ var require_rimraf = __commonJS({
340861
340894
  // node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js
340862
340895
  var require_tmp = __commonJS({
340863
340896
  "node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js"(exports2, module2) {
340897
+ /*!
340898
+ * Tmp
340899
+ *
340900
+ * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
340901
+ *
340902
+ * MIT Licensed
340903
+ */
340864
340904
  var fs7 = require("fs");
340865
340905
  var os6 = require("os");
340866
340906
  var path15 = require("path");
@@ -342251,6 +342291,13 @@ var require_offset_from_root = __commonJS({
342251
342291
  var require_utils6 = __commonJS({
342252
342292
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/utils.js"(exports2) {
342253
342293
  "use strict";
342294
+ /**
342295
+ * @license
342296
+ * Copyright Google LLC All Rights Reserved.
342297
+ *
342298
+ * Use of this source code is governed by an MIT-style license that can be
342299
+ * found in the LICENSE file at https://angular.io/license
342300
+ */
342254
342301
  Object.defineProperty(exports2, "__esModule", { value: true });
342255
342302
  exports2.isJsonArray = exports2.isJsonObject = void 0;
342256
342303
  function isJsonObject(value) {
@@ -342268,6 +342315,13 @@ var require_utils6 = __commonJS({
342268
342315
  var require_utility = __commonJS({
342269
342316
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/utility.js"(exports2) {
342270
342317
  "use strict";
342318
+ /**
342319
+ * @license
342320
+ * Copyright Google LLC All Rights Reserved.
342321
+ *
342322
+ * Use of this source code is governed by an MIT-style license that can be
342323
+ * found in the LICENSE file at https://angular.io/license
342324
+ */
342271
342325
  Object.defineProperty(exports2, "__esModule", { value: true });
342272
342326
  exports2.getTypesOfSchema = void 0;
342273
342327
  var utils_1 = require_utils6();
@@ -342348,6 +342402,13 @@ var require_utility = __commonJS({
342348
342402
  var require_transforms = __commonJS({
342349
342403
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/transforms.js"(exports2) {
342350
342404
  "use strict";
342405
+ /**
342406
+ * @license
342407
+ * Copyright Google LLC All Rights Reserved.
342408
+ *
342409
+ * Use of this source code is governed by an MIT-style license that can be
342410
+ * found in the LICENSE file at https://angular.io/license
342411
+ */
342351
342412
  Object.defineProperty(exports2, "__esModule", { value: true });
342352
342413
  exports2.addUndefinedDefaults = void 0;
342353
342414
  var utils_1 = require_utils6();
@@ -342426,6 +342487,13 @@ var require_transforms = __commonJS({
342426
342487
  var require_interface = __commonJS({
342427
342488
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/interface.js"(exports2) {
342428
342489
  "use strict";
342490
+ /**
342491
+ * @license
342492
+ * Copyright Google LLC All Rights Reserved.
342493
+ *
342494
+ * Use of this source code is governed by an MIT-style license that can be
342495
+ * found in the LICENSE file at https://angular.io/license
342496
+ */
342429
342497
  Object.defineProperty(exports2, "__esModule", { value: true });
342430
342498
  }
342431
342499
  });
@@ -342434,6 +342502,13 @@ var require_interface = __commonJS({
342434
342502
  var require_pointer = __commonJS({
342435
342503
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/pointer.js"(exports2) {
342436
342504
  "use strict";
342505
+ /**
342506
+ * @license
342507
+ * Copyright Google LLC All Rights Reserved.
342508
+ *
342509
+ * Use of this source code is governed by an MIT-style license that can be
342510
+ * found in the LICENSE file at https://angular.io/license
342511
+ */
342437
342512
  Object.defineProperty(exports2, "__esModule", { value: true });
342438
342513
  exports2.parseJsonPointer = exports2.joinJsonPointer = exports2.buildJsonPointer = void 0;
342439
342514
  function buildJsonPointer(fragments) {
@@ -345537,6 +345612,7 @@ var require_data = __commonJS({
345537
345612
  // node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js
345538
345613
  var require_uri_all = __commonJS({
345539
345614
  "node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js"(exports2, module2) {
345615
+ /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
345540
345616
  (function(global2, factory) {
345541
345617
  typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : factory(global2.URI = global2.URI || {});
345542
345618
  })(exports2, function(exports3) {
@@ -359102,6 +359178,13 @@ var require_cjs = __commonJS({
359102
359178
  var require_exception2 = __commonJS({
359103
359179
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/exception.js"(exports2) {
359104
359180
  "use strict";
359181
+ /**
359182
+ * @license
359183
+ * Copyright Google LLC All Rights Reserved.
359184
+ *
359185
+ * Use of this source code is governed by an MIT-style license that can be
359186
+ * found in the LICENSE file at https://angular.io/license
359187
+ */
359105
359188
  Object.defineProperty(exports2, "__esModule", { value: true });
359106
359189
  exports2.PathIsFileException = exports2.PathIsDirectoryException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.UnknownException = exports2.BaseException = void 0;
359107
359190
  var BaseException = class extends Error {
@@ -359147,6 +359230,13 @@ var require_exception2 = __commonJS({
359147
359230
  var require_literals = __commonJS({
359148
359231
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/literals.js"(exports2) {
359149
359232
  "use strict";
359233
+ /**
359234
+ * @license
359235
+ * Copyright Google LLC All Rights Reserved.
359236
+ *
359237
+ * Use of this source code is governed by an MIT-style license that can be
359238
+ * found in the LICENSE file at https://angular.io/license
359239
+ */
359150
359240
  Object.defineProperty(exports2, "__esModule", { value: true });
359151
359241
  exports2.trimNewlines = exports2.stripIndents = exports2.stripIndent = exports2.indentBy = exports2.oneLine = void 0;
359152
359242
  function oneLine(strings, ...values) {
@@ -359191,6 +359281,13 @@ var require_literals = __commonJS({
359191
359281
  var require_strings = __commonJS({
359192
359282
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/strings.js"(exports2) {
359193
359283
  "use strict";
359284
+ /**
359285
+ * @license
359286
+ * Copyright Google LLC All Rights Reserved.
359287
+ *
359288
+ * Use of this source code is governed by an MIT-style license that can be
359289
+ * found in the LICENSE file at https://angular.io/license
359290
+ */
359194
359291
  Object.defineProperty(exports2, "__esModule", { value: true });
359195
359292
  exports2.levenshtein = exports2.capitalize = exports2.underscore = exports2.classify = exports2.camelize = exports2.dasherize = exports2.decamelize = void 0;
359196
359293
  var STRING_DASHERIZE_REGEXP = /[ _]/g;
@@ -359263,6 +359360,13 @@ var require_strings = __commonJS({
359263
359360
  var require_object = __commonJS({
359264
359361
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/object.js"(exports2) {
359265
359362
  "use strict";
359363
+ /**
359364
+ * @license
359365
+ * Copyright Google LLC All Rights Reserved.
359366
+ *
359367
+ * Use of this source code is governed by an MIT-style license that can be
359368
+ * found in the LICENSE file at https://angular.io/license
359369
+ */
359266
359370
  Object.defineProperty(exports2, "__esModule", { value: true });
359267
359371
  exports2.deepCopy = void 0;
359268
359372
  var copySymbol = Symbol();
@@ -361614,6 +361718,13 @@ var require_source_map2 = __commonJS({
361614
361718
  var require_template = __commonJS({
361615
361719
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/template.js"(exports2) {
361616
361720
  "use strict";
361721
+ /**
361722
+ * @license
361723
+ * Copyright Google LLC All Rights Reserved.
361724
+ *
361725
+ * Use of this source code is governed by an MIT-style license that can be
361726
+ * found in the LICENSE file at https://angular.io/license
361727
+ */
361617
361728
  Object.defineProperty(exports2, "__esModule", { value: true });
361618
361729
  exports2.template = exports2.templateParser = void 0;
361619
361730
  var source_map_1 = require_source_map2();
@@ -361828,6 +361939,13 @@ var require_template = __commonJS({
361828
361939
  var require_partially_ordered_set = __commonJS({
361829
361940
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/partially-ordered-set.js"(exports2) {
361830
361941
  "use strict";
361942
+ /**
361943
+ * @license
361944
+ * Copyright Google LLC All Rights Reserved.
361945
+ *
361946
+ * Use of this source code is governed by an MIT-style license that can be
361947
+ * found in the LICENSE file at https://angular.io/license
361948
+ */
361831
361949
  Object.defineProperty(exports2, "__esModule", { value: true });
361832
361950
  exports2.PartiallyOrderedSet = exports2.CircularDependencyFoundException = exports2.DependencyNotFoundException = void 0;
361833
361951
  var exception_1 = require_exception2();
@@ -361962,6 +362080,13 @@ var require_partially_ordered_set = __commonJS({
361962
362080
  var require_priority_queue = __commonJS({
361963
362081
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/priority-queue.js"(exports2) {
361964
362082
  "use strict";
362083
+ /**
362084
+ * @license
362085
+ * Copyright Google LLC All Rights Reserved.
362086
+ *
362087
+ * Use of this source code is governed by an MIT-style license that can be
362088
+ * found in the LICENSE file at https://angular.io/license
362089
+ */
361965
362090
  Object.defineProperty(exports2, "__esModule", { value: true });
361966
362091
  exports2.PriorityQueue = void 0;
361967
362092
  var PriorityQueue = class {
@@ -362008,6 +362133,13 @@ var require_priority_queue = __commonJS({
362008
362133
  var require_lang = __commonJS({
362009
362134
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/lang.js"(exports2) {
362010
362135
  "use strict";
362136
+ /**
362137
+ * @license
362138
+ * Copyright Google LLC All Rights Reserved.
362139
+ *
362140
+ * Use of this source code is governed by an MIT-style license that can be
362141
+ * found in the LICENSE file at https://angular.io/license
362142
+ */
362011
362143
  Object.defineProperty(exports2, "__esModule", { value: true });
362012
362144
  exports2.isPromise = void 0;
362013
362145
  function isPromise(obj) {
@@ -362021,6 +362153,13 @@ var require_lang = __commonJS({
362021
362153
  var require_utils7 = __commonJS({
362022
362154
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/index.js"(exports2) {
362023
362155
  "use strict";
362156
+ /**
362157
+ * @license
362158
+ * Copyright Google LLC All Rights Reserved.
362159
+ *
362160
+ * Use of this source code is governed by an MIT-style license that can be
362161
+ * found in the LICENSE file at https://angular.io/license
362162
+ */
362024
362163
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362025
362164
  if (k23 === void 0)
362026
362165
  k23 = k6;
@@ -362076,6 +362215,13 @@ var require_utils7 = __commonJS({
362076
362215
  var require_visitor = __commonJS({
362077
362216
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/visitor.js"(exports2) {
362078
362217
  "use strict";
362218
+ /**
362219
+ * @license
362220
+ * Copyright Google LLC All Rights Reserved.
362221
+ *
362222
+ * Use of this source code is governed by an MIT-style license that can be
362223
+ * found in the LICENSE file at https://angular.io/license
362224
+ */
362079
362225
  Object.defineProperty(exports2, "__esModule", { value: true });
362080
362226
  exports2.visitJsonSchema = exports2.visitJson = void 0;
362081
362227
  var rxjs_1 = require_cjs();
@@ -362196,6 +362342,13 @@ var require_visitor = __commonJS({
362196
362342
  var require_registry = __commonJS({
362197
362343
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/registry.js"(exports2) {
362198
362344
  "use strict";
362345
+ /**
362346
+ * @license
362347
+ * Copyright Google LLC All Rights Reserved.
362348
+ *
362349
+ * Use of this source code is governed by an MIT-style license that can be
362350
+ * found in the LICENSE file at https://angular.io/license
362351
+ */
362199
362352
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362200
362353
  if (k23 === void 0)
362201
362354
  k23 = k6;
@@ -362702,6 +362855,13 @@ var require_registry = __commonJS({
362702
362855
  var require_schema2 = __commonJS({
362703
362856
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/schema.js"(exports2) {
362704
362857
  "use strict";
362858
+ /**
362859
+ * @license
362860
+ * Copyright Google LLC All Rights Reserved.
362861
+ *
362862
+ * Use of this source code is governed by an MIT-style license that can be
362863
+ * found in the LICENSE file at https://angular.io/license
362864
+ */
362705
362865
  Object.defineProperty(exports2, "__esModule", { value: true });
362706
362866
  exports2.mergeSchemas = exports2.isJsonSchema = void 0;
362707
362867
  var utils_1 = require_utils6();
@@ -362741,6 +362901,13 @@ var require_schema2 = __commonJS({
362741
362901
  var require_schema3 = __commonJS({
362742
362902
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/index.js"(exports2) {
362743
362903
  "use strict";
362904
+ /**
362905
+ * @license
362906
+ * Copyright Google LLC All Rights Reserved.
362907
+ *
362908
+ * Use of this source code is governed by an MIT-style license that can be
362909
+ * found in the LICENSE file at https://angular.io/license
362910
+ */
362744
362911
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362745
362912
  if (k23 === void 0)
362746
362913
  k23 = k6;
@@ -362795,6 +362962,13 @@ var require_schema3 = __commonJS({
362795
362962
  var require_json3 = __commonJS({
362796
362963
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/index.js"(exports2) {
362797
362964
  "use strict";
362965
+ /**
362966
+ * @license
362967
+ * Copyright Google LLC All Rights Reserved.
362968
+ *
362969
+ * Use of this source code is governed by an MIT-style license that can be
362970
+ * found in the LICENSE file at https://angular.io/license
362971
+ */
362798
362972
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362799
362973
  if (k23 === void 0)
362800
362974
  k23 = k6;
@@ -362844,6 +363018,13 @@ var require_json3 = __commonJS({
362844
363018
  var require_logger = __commonJS({
362845
363019
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/logger.js"(exports2) {
362846
363020
  "use strict";
363021
+ /**
363022
+ * @license
363023
+ * Copyright Google LLC All Rights Reserved.
363024
+ *
363025
+ * Use of this source code is governed by an MIT-style license that can be
363026
+ * found in the LICENSE file at https://angular.io/license
363027
+ */
362847
363028
  Object.defineProperty(exports2, "__esModule", { value: true });
362848
363029
  exports2.Logger = void 0;
362849
363030
  var rxjs_1 = require_cjs();
@@ -362965,6 +363146,13 @@ var require_logger = __commonJS({
362965
363146
  var require_indent = __commonJS({
362966
363147
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/indent.js"(exports2) {
362967
363148
  "use strict";
363149
+ /**
363150
+ * @license
363151
+ * Copyright Google LLC All Rights Reserved.
363152
+ *
363153
+ * Use of this source code is governed by an MIT-style license that can be
363154
+ * found in the LICENSE file at https://angular.io/license
363155
+ */
362968
363156
  Object.defineProperty(exports2, "__esModule", { value: true });
362969
363157
  exports2.IndentLogger = void 0;
362970
363158
  var rxjs_1 = require_cjs();
@@ -362997,6 +363185,13 @@ var require_indent = __commonJS({
362997
363185
  var require_level = __commonJS({
362998
363186
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/level.js"(exports2) {
362999
363187
  "use strict";
363188
+ /**
363189
+ * @license
363190
+ * Copyright Google LLC All Rights Reserved.
363191
+ *
363192
+ * Use of this source code is governed by an MIT-style license that can be
363193
+ * found in the LICENSE file at https://angular.io/license
363194
+ */
363000
363195
  Object.defineProperty(exports2, "__esModule", { value: true });
363001
363196
  exports2.LevelCapLogger = exports2.LevelTransformLogger = void 0;
363002
363197
  var logger_1 = require_logger();
@@ -363046,6 +363241,13 @@ var require_level = __commonJS({
363046
363241
  var require_null_logger = __commonJS({
363047
363242
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/null-logger.js"(exports2) {
363048
363243
  "use strict";
363244
+ /**
363245
+ * @license
363246
+ * Copyright Google LLC All Rights Reserved.
363247
+ *
363248
+ * Use of this source code is governed by an MIT-style license that can be
363249
+ * found in the LICENSE file at https://angular.io/license
363250
+ */
363049
363251
  Object.defineProperty(exports2, "__esModule", { value: true });
363050
363252
  exports2.NullLogger = void 0;
363051
363253
  var rxjs_1 = require_cjs();
@@ -363081,6 +363283,13 @@ var require_null_logger = __commonJS({
363081
363283
  var require_transform_logger = __commonJS({
363082
363284
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/transform-logger.js"(exports2) {
363083
363285
  "use strict";
363286
+ /**
363287
+ * @license
363288
+ * Copyright Google LLC All Rights Reserved.
363289
+ *
363290
+ * Use of this source code is governed by an MIT-style license that can be
363291
+ * found in the LICENSE file at https://angular.io/license
363292
+ */
363084
363293
  Object.defineProperty(exports2, "__esModule", { value: true });
363085
363294
  exports2.TransformLogger = void 0;
363086
363295
  var logger_1 = require_logger();
@@ -363098,6 +363307,13 @@ var require_transform_logger = __commonJS({
363098
363307
  var require_logger2 = __commonJS({
363099
363308
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/index.js"(exports2) {
363100
363309
  "use strict";
363310
+ /**
363311
+ * @license
363312
+ * Copyright Google LLC All Rights Reserved.
363313
+ *
363314
+ * Use of this source code is governed by an MIT-style license that can be
363315
+ * found in the LICENSE file at https://angular.io/license
363316
+ */
363101
363317
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363102
363318
  if (k23 === void 0)
363103
363319
  k23 = k6;
@@ -363131,6 +363347,13 @@ var require_logger2 = __commonJS({
363131
363347
  var require_definitions = __commonJS({
363132
363348
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/definitions.js"(exports2) {
363133
363349
  "use strict";
363350
+ /**
363351
+ * @license
363352
+ * Copyright Google LLC All Rights Reserved.
363353
+ *
363354
+ * Use of this source code is governed by an MIT-style license that can be
363355
+ * found in the LICENSE file at https://angular.io/license
363356
+ */
363134
363357
  Object.defineProperty(exports2, "__esModule", { value: true });
363135
363358
  exports2.TargetDefinitionCollection = exports2.ProjectDefinitionCollection = void 0;
363136
363359
  var DefinitionCollection = class {
@@ -363297,6 +363520,13 @@ var require_definitions = __commonJS({
363297
363520
  var require_path2 = __commonJS({
363298
363521
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/path.js"(exports2) {
363299
363522
  "use strict";
363523
+ /**
363524
+ * @license
363525
+ * Copyright Google LLC All Rights Reserved.
363526
+ *
363527
+ * Use of this source code is governed by an MIT-style license that can be
363528
+ * found in the LICENSE file at https://angular.io/license
363529
+ */
363300
363530
  Object.defineProperty(exports2, "__esModule", { value: true });
363301
363531
  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;
363302
363532
  var exception_1 = require_exception2();
@@ -363500,6 +363730,13 @@ var require_path2 = __commonJS({
363500
363730
  var require_buffer2 = __commonJS({
363501
363731
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/buffer.js"(exports2) {
363502
363732
  "use strict";
363733
+ /**
363734
+ * @license
363735
+ * Copyright Google LLC All Rights Reserved.
363736
+ *
363737
+ * Use of this source code is governed by an MIT-style license that can be
363738
+ * found in the LICENSE file at https://angular.io/license
363739
+ */
363503
363740
  Object.defineProperty(exports2, "__esModule", { value: true });
363504
363741
  exports2.fileBuffer = exports2.fileBufferToString = exports2.stringToFileBuffer = void 0;
363505
363742
  var node_util_1 = require("node:util");
@@ -363525,6 +363762,13 @@ var require_buffer2 = __commonJS({
363525
363762
  var require_interface2 = __commonJS({
363526
363763
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/interface.js"(exports2) {
363527
363764
  "use strict";
363765
+ /**
363766
+ * @license
363767
+ * Copyright Google LLC All Rights Reserved.
363768
+ *
363769
+ * Use of this source code is governed by an MIT-style license that can be
363770
+ * found in the LICENSE file at https://angular.io/license
363771
+ */
363528
363772
  Object.defineProperty(exports2, "__esModule", { value: true });
363529
363773
  exports2.HostWatchEventType = void 0;
363530
363774
  var HostWatchEventType;
@@ -363541,6 +363785,13 @@ var require_interface2 = __commonJS({
363541
363785
  var require_memory = __commonJS({
363542
363786
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/memory.js"(exports2) {
363543
363787
  "use strict";
363788
+ /**
363789
+ * @license
363790
+ * Copyright Google LLC All Rights Reserved.
363791
+ *
363792
+ * Use of this source code is governed by an MIT-style license that can be
363793
+ * found in the LICENSE file at https://angular.io/license
363794
+ */
363544
363795
  Object.defineProperty(exports2, "__esModule", { value: true });
363545
363796
  exports2.SimpleMemoryHost = void 0;
363546
363797
  var rxjs_1 = require_cjs();
@@ -363857,6 +364108,13 @@ var require_memory = __commonJS({
363857
364108
  var require_sync8 = __commonJS({
363858
364109
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/sync.js"(exports2) {
363859
364110
  "use strict";
364111
+ /**
364112
+ * @license
364113
+ * Copyright Google LLC All Rights Reserved.
364114
+ *
364115
+ * Use of this source code is governed by an MIT-style license that can be
364116
+ * found in the LICENSE file at https://angular.io/license
364117
+ */
363860
364118
  Object.defineProperty(exports2, "__esModule", { value: true });
363861
364119
  exports2.SyncDelegateHost = exports2.SynchronousDelegateExpectedException = void 0;
363862
364120
  var exception_1 = require_exception2();
@@ -363938,6 +364196,13 @@ var require_sync8 = __commonJS({
363938
364196
  var require_test = __commonJS({
363939
364197
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/test.js"(exports2) {
363940
364198
  "use strict";
364199
+ /**
364200
+ * @license
364201
+ * Copyright Google LLC All Rights Reserved.
364202
+ *
364203
+ * Use of this source code is governed by an MIT-style license that can be
364204
+ * found in the LICENSE file at https://angular.io/license
364205
+ */
363941
364206
  Object.defineProperty(exports2, "__esModule", { value: true });
363942
364207
  exports2.TestHost = void 0;
363943
364208
  var path_1 = require_path2();
@@ -364051,6 +364316,13 @@ var require_test = __commonJS({
364051
364316
  var require_resolver = __commonJS({
364052
364317
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/resolver.js"(exports2) {
364053
364318
  "use strict";
364319
+ /**
364320
+ * @license
364321
+ * Copyright Google LLC All Rights Reserved.
364322
+ *
364323
+ * Use of this source code is governed by an MIT-style license that can be
364324
+ * found in the LICENSE file at https://angular.io/license
364325
+ */
364054
364326
  Object.defineProperty(exports2, "__esModule", { value: true });
364055
364327
  exports2.ResolverHost = void 0;
364056
364328
  var ResolverHost = class {
@@ -364102,6 +364374,13 @@ var require_resolver = __commonJS({
364102
364374
  var require_alias = __commonJS({
364103
364375
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/alias.js"(exports2) {
364104
364376
  "use strict";
364377
+ /**
364378
+ * @license
364379
+ * Copyright Google LLC All Rights Reserved.
364380
+ *
364381
+ * Use of this source code is governed by an MIT-style license that can be
364382
+ * found in the LICENSE file at https://angular.io/license
364383
+ */
364105
364384
  Object.defineProperty(exports2, "__esModule", { value: true });
364106
364385
  exports2.AliasHost = void 0;
364107
364386
  var path_1 = require_path2();
@@ -364134,6 +364413,13 @@ var require_alias = __commonJS({
364134
364413
  var require_create = __commonJS({
364135
364414
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/create.js"(exports2) {
364136
364415
  "use strict";
364416
+ /**
364417
+ * @license
364418
+ * Copyright Google LLC All Rights Reserved.
364419
+ *
364420
+ * Use of this source code is governed by an MIT-style license that can be
364421
+ * found in the LICENSE file at https://angular.io/license
364422
+ */
364137
364423
  Object.defineProperty(exports2, "__esModule", { value: true });
364138
364424
  exports2.createSyncHost = void 0;
364139
364425
  var rxjs_1 = require_cjs();
@@ -364188,6 +364474,13 @@ var require_create = __commonJS({
364188
364474
  var require_empty3 = __commonJS({
364189
364475
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/empty.js"(exports2) {
364190
364476
  "use strict";
364477
+ /**
364478
+ * @license
364479
+ * Copyright Google LLC All Rights Reserved.
364480
+ *
364481
+ * Use of this source code is governed by an MIT-style license that can be
364482
+ * found in the LICENSE file at https://angular.io/license
364483
+ */
364191
364484
  Object.defineProperty(exports2, "__esModule", { value: true });
364192
364485
  exports2.Empty = void 0;
364193
364486
  var rxjs_1 = require_cjs();
@@ -365755,6 +366048,13 @@ var require_picomatch4 = __commonJS({
365755
366048
  var require_pattern3 = __commonJS({
365756
366049
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/pattern.js"(exports2) {
365757
366050
  "use strict";
366051
+ /**
366052
+ * @license
366053
+ * Copyright Google LLC All Rights Reserved.
366054
+ *
366055
+ * Use of this source code is governed by an MIT-style license that can be
366056
+ * found in the LICENSE file at https://angular.io/license
366057
+ */
365758
366058
  Object.defineProperty(exports2, "__esModule", { value: true });
365759
366059
  exports2.PatternMatchingHost = void 0;
365760
366060
  var picomatch_1 = require_picomatch4();
@@ -365786,6 +366086,13 @@ var require_pattern3 = __commonJS({
365786
366086
  var require_record = __commonJS({
365787
366087
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/record.js"(exports2) {
365788
366088
  "use strict";
366089
+ /**
366090
+ * @license
366091
+ * Copyright Google LLC All Rights Reserved.
366092
+ *
366093
+ * Use of this source code is governed by an MIT-style license that can be
366094
+ * found in the LICENSE file at https://angular.io/license
366095
+ */
365789
366096
  Object.defineProperty(exports2, "__esModule", { value: true });
365790
366097
  exports2.CordHost = void 0;
365791
366098
  var rxjs_1 = require_cjs();
@@ -366055,6 +366362,13 @@ var require_record = __commonJS({
366055
366362
  var require_safe = __commonJS({
366056
366363
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/safe.js"(exports2) {
366057
366364
  "use strict";
366365
+ /**
366366
+ * @license
366367
+ * Copyright Google LLC All Rights Reserved.
366368
+ *
366369
+ * Use of this source code is governed by an MIT-style license that can be
366370
+ * found in the LICENSE file at https://angular.io/license
366371
+ */
366058
366372
  Object.defineProperty(exports2, "__esModule", { value: true });
366059
366373
  exports2.SafeReadonlyHost = void 0;
366060
366374
  var rxjs_1 = require_cjs();
@@ -366095,6 +366409,13 @@ var require_safe = __commonJS({
366095
366409
  var require_scoped = __commonJS({
366096
366410
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/scoped.js"(exports2) {
366097
366411
  "use strict";
366412
+ /**
366413
+ * @license
366414
+ * Copyright Google LLC All Rights Reserved.
366415
+ *
366416
+ * Use of this source code is governed by an MIT-style license that can be
366417
+ * found in the LICENSE file at https://angular.io/license
366418
+ */
366098
366419
  Object.defineProperty(exports2, "__esModule", { value: true });
366099
366420
  exports2.ScopedHost = void 0;
366100
366421
  var path_1 = require_path2();
@@ -366117,6 +366438,13 @@ var require_scoped = __commonJS({
366117
366438
  var require_host = __commonJS({
366118
366439
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/index.js"(exports2) {
366119
366440
  "use strict";
366441
+ /**
366442
+ * @license
366443
+ * Copyright Google LLC All Rights Reserved.
366444
+ *
366445
+ * Use of this source code is governed by an MIT-style license that can be
366446
+ * found in the LICENSE file at https://angular.io/license
366447
+ */
366120
366448
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366121
366449
  if (k23 === void 0)
366122
366450
  k23 = k6;
@@ -366177,6 +366505,13 @@ var require_host = __commonJS({
366177
366505
  var require_virtual_fs = __commonJS({
366178
366506
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/index.js"(exports2) {
366179
366507
  "use strict";
366508
+ /**
366509
+ * @license
366510
+ * Copyright Google LLC All Rights Reserved.
366511
+ *
366512
+ * Use of this source code is governed by an MIT-style license that can be
366513
+ * found in the LICENSE file at https://angular.io/license
366514
+ */
366180
366515
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366181
366516
  if (k23 === void 0)
366182
366517
  k23 = k6;
@@ -366226,6 +366561,13 @@ var require_virtual_fs = __commonJS({
366226
366561
  var require_host2 = __commonJS({
366227
366562
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/host.js"(exports2) {
366228
366563
  "use strict";
366564
+ /**
366565
+ * @license
366566
+ * Copyright Google LLC All Rights Reserved.
366567
+ *
366568
+ * Use of this source code is governed by an MIT-style license that can be
366569
+ * found in the LICENSE file at https://angular.io/license
366570
+ */
366229
366571
  Object.defineProperty(exports2, "__esModule", { value: true });
366230
366572
  exports2.createWorkspaceHost = void 0;
366231
366573
  var rxjs_1 = require_cjs();
@@ -366413,6 +366755,13 @@ var require_main = __commonJS({
366413
366755
  var require_metadata2 = __commonJS({
366414
366756
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/metadata.js"(exports2) {
366415
366757
  "use strict";
366758
+ /**
366759
+ * @license
366760
+ * Copyright Google LLC All Rights Reserved.
366761
+ *
366762
+ * Use of this source code is governed by an MIT-style license that can be
366763
+ * found in the LICENSE file at https://angular.io/license
366764
+ */
366416
366765
  Object.defineProperty(exports2, "__esModule", { value: true });
366417
366766
  exports2.JsonWorkspaceMetadata = exports2.JsonWorkspaceSymbol = void 0;
366418
366767
  var jsonc_parser_1 = require_main();
@@ -366469,6 +366818,13 @@ var require_metadata2 = __commonJS({
366469
366818
  var require_utilities = __commonJS({
366470
366819
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/utilities.js"(exports2) {
366471
366820
  "use strict";
366821
+ /**
366822
+ * @license
366823
+ * Copyright Google LLC All Rights Reserved.
366824
+ *
366825
+ * Use of this source code is governed by an MIT-style license that can be
366826
+ * found in the LICENSE file at https://angular.io/license
366827
+ */
366472
366828
  Object.defineProperty(exports2, "__esModule", { value: true });
366473
366829
  exports2.createVirtualAstObject = void 0;
366474
366830
  var json_1 = require_json3();
@@ -366575,6 +366931,13 @@ var require_utilities = __commonJS({
366575
366931
  var require_reader3 = __commonJS({
366576
366932
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/reader.js"(exports2) {
366577
366933
  "use strict";
366934
+ /**
366935
+ * @license
366936
+ * Copyright Google LLC All Rights Reserved.
366937
+ *
366938
+ * Use of this source code is governed by an MIT-style license that can be
366939
+ * found in the LICENSE file at https://angular.io/license
366940
+ */
366578
366941
  Object.defineProperty(exports2, "__esModule", { value: true });
366579
366942
  exports2.readJsonWorkspace = void 0;
366580
366943
  var jsonc_parser_1 = require_main();
@@ -366789,6 +367152,13 @@ var require_reader3 = __commonJS({
366789
367152
  var require_writer = __commonJS({
366790
367153
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/writer.js"(exports2) {
366791
367154
  "use strict";
367155
+ /**
367156
+ * @license
367157
+ * Copyright Google LLC All Rights Reserved.
367158
+ *
367159
+ * Use of this source code is governed by an MIT-style license that can be
367160
+ * found in the LICENSE file at https://angular.io/license
367161
+ */
366792
367162
  Object.defineProperty(exports2, "__esModule", { value: true });
366793
367163
  exports2.writeJsonWorkspace = void 0;
366794
367164
  var jsonc_parser_1 = require_main();
@@ -366918,6 +367288,13 @@ var require_writer = __commonJS({
366918
367288
  var require_core4 = __commonJS({
366919
367289
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/core.js"(exports2) {
366920
367290
  "use strict";
367291
+ /**
367292
+ * @license
367293
+ * Copyright Google LLC All Rights Reserved.
367294
+ *
367295
+ * Use of this source code is governed by an MIT-style license that can be
367296
+ * found in the LICENSE file at https://angular.io/license
367297
+ */
366921
367298
  Object.defineProperty(exports2, "__esModule", { value: true });
366922
367299
  exports2.writeWorkspace = exports2.readWorkspace = exports2._test_removeWorkspaceFile = exports2._test_addWorkspaceFile = exports2.WorkspaceFormat = void 0;
366923
367300
  var virtual_fs_1 = require_virtual_fs();
@@ -367002,6 +367379,13 @@ var require_core4 = __commonJS({
367002
367379
  var require_workspace = __commonJS({
367003
367380
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/index.js"(exports2) {
367004
367381
  "use strict";
367382
+ /**
367383
+ * @license
367384
+ * Copyright Google LLC All Rights Reserved.
367385
+ *
367386
+ * Use of this source code is governed by an MIT-style license that can be
367387
+ * found in the LICENSE file at https://angular.io/license
367388
+ */
367005
367389
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367006
367390
  if (k23 === void 0)
367007
367391
  k23 = k6;
@@ -367046,6 +367430,13 @@ var require_workspace = __commonJS({
367046
367430
  var require_src2 = __commonJS({
367047
367431
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/index.js"(exports2) {
367048
367432
  "use strict";
367433
+ /**
367434
+ * @license
367435
+ * Copyright Google LLC All Rights Reserved.
367436
+ *
367437
+ * Use of this source code is governed by an MIT-style license that can be
367438
+ * found in the LICENSE file at https://angular.io/license
367439
+ */
367049
367440
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367050
367441
  if (k23 === void 0)
367051
367442
  k23 = k6;
@@ -367102,6 +367493,13 @@ var require_src2 = __commonJS({
367102
367493
  var require_html_selector = __commonJS({
367103
367494
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/html-selector.js"(exports2) {
367104
367495
  "use strict";
367496
+ /**
367497
+ * @license
367498
+ * Copyright Google LLC All Rights Reserved.
367499
+ *
367500
+ * Use of this source code is governed by an MIT-style license that can be
367501
+ * found in the LICENSE file at https://angular.io/license
367502
+ */
367105
367503
  Object.defineProperty(exports2, "__esModule", { value: true });
367106
367504
  exports2.htmlSelectorFormat = void 0;
367107
367505
  var unicodeRanges = [
@@ -367141,6 +367539,13 @@ var require_html_selector = __commonJS({
367141
367539
  var require_path3 = __commonJS({
367142
367540
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/path.js"(exports2) {
367143
367541
  "use strict";
367542
+ /**
367543
+ * @license
367544
+ * Copyright Google LLC All Rights Reserved.
367545
+ *
367546
+ * Use of this source code is governed by an MIT-style license that can be
367547
+ * found in the LICENSE file at https://angular.io/license
367548
+ */
367144
367549
  Object.defineProperty(exports2, "__esModule", { value: true });
367145
367550
  exports2.pathFormat = void 0;
367146
367551
  var core_1 = require_src2();
@@ -367160,6 +367565,13 @@ var require_path3 = __commonJS({
367160
367565
  var require_formats2 = __commonJS({
367161
367566
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/index.js"(exports2) {
367162
367567
  "use strict";
367568
+ /**
367569
+ * @license
367570
+ * Copyright Google LLC All Rights Reserved.
367571
+ *
367572
+ * Use of this source code is governed by an MIT-style license that can be
367573
+ * found in the LICENSE file at https://angular.io/license
367574
+ */
367163
367575
  Object.defineProperty(exports2, "__esModule", { value: true });
367164
367576
  exports2.standardFormats = exports2.pathFormat = exports2.htmlSelectorFormat = void 0;
367165
367577
  var html_selector_1 = require_html_selector();
@@ -367180,6 +367592,13 @@ var require_formats2 = __commonJS({
367180
367592
  var require_interface3 = __commonJS({
367181
367593
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/interface.js"(exports2) {
367182
367594
  "use strict";
367595
+ /**
367596
+ * @license
367597
+ * Copyright Google LLC All Rights Reserved.
367598
+ *
367599
+ * Use of this source code is governed by an MIT-style license that can be
367600
+ * found in the LICENSE file at https://angular.io/license
367601
+ */
367183
367602
  Object.defineProperty(exports2, "__esModule", { value: true });
367184
367603
  exports2.Tree = exports2.TreeSymbol = exports2.FileVisitorCancelToken = exports2.MergeStrategy = void 0;
367185
367604
  var MergeStrategy;
@@ -367215,6 +367634,13 @@ var require_interface3 = __commonJS({
367215
367634
  var require_exception3 = __commonJS({
367216
367635
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/exception/exception.js"(exports2) {
367217
367636
  "use strict";
367637
+ /**
367638
+ * @license
367639
+ * Copyright Google LLC All Rights Reserved.
367640
+ *
367641
+ * Use of this source code is governed by an MIT-style license that can be
367642
+ * found in the LICENSE file at https://angular.io/license
367643
+ */
367218
367644
  Object.defineProperty(exports2, "__esModule", { value: true });
367219
367645
  exports2.UnimplementedException = exports2.UnsuccessfulWorkflowExecution = exports2.MergeConflictException = exports2.InvalidUpdateRecordException = exports2.ContentHasMutatedException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.SchematicsException = void 0;
367220
367646
  var core_1 = require_src2();
@@ -367270,6 +367696,13 @@ var require_exception3 = __commonJS({
367270
367696
  var require_delegate = __commonJS({
367271
367697
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/delegate.js"(exports2) {
367272
367698
  "use strict";
367699
+ /**
367700
+ * @license
367701
+ * Copyright Google LLC All Rights Reserved.
367702
+ *
367703
+ * Use of this source code is governed by an MIT-style license that can be
367704
+ * found in the LICENSE file at https://angular.io/license
367705
+ */
367273
367706
  Object.defineProperty(exports2, "__esModule", { value: true });
367274
367707
  exports2.DelegateTree = void 0;
367275
367708
  var interface_1 = require_interface3();
@@ -367347,6 +367780,13 @@ var require_delegate = __commonJS({
367347
367780
  var require_entry3 = __commonJS({
367348
367781
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/entry.js"(exports2) {
367349
367782
  "use strict";
367783
+ /**
367784
+ * @license
367785
+ * Copyright Google LLC All Rights Reserved.
367786
+ *
367787
+ * Use of this source code is governed by an MIT-style license that can be
367788
+ * found in the LICENSE file at https://angular.io/license
367789
+ */
367350
367790
  Object.defineProperty(exports2, "__esModule", { value: true });
367351
367791
  exports2.LazyFileEntry = exports2.SimpleFileEntry = void 0;
367352
367792
  var SimpleFileEntry = class {
@@ -368810,6 +369250,13 @@ var require_magic_string_cjs = __commonJS({
368810
369250
  var require_update_buffer = __commonJS({
368811
369251
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/utility/update-buffer.js"(exports2) {
368812
369252
  "use strict";
369253
+ /**
369254
+ * @license
369255
+ * Copyright Google LLC All Rights Reserved.
369256
+ *
369257
+ * Use of this source code is governed by an MIT-style license that can be
369258
+ * found in the LICENSE file at https://angular.io/license
369259
+ */
368813
369260
  var __importDefault2 = exports2 && exports2.__importDefault || function(mod) {
368814
369261
  return mod && mod.__esModule ? mod : { "default": mod };
368815
369262
  };
@@ -368889,6 +369336,13 @@ var require_update_buffer = __commonJS({
368889
369336
  var require_recorder = __commonJS({
368890
369337
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/recorder.js"(exports2) {
368891
369338
  "use strict";
369339
+ /**
369340
+ * @license
369341
+ * Copyright Google LLC All Rights Reserved.
369342
+ *
369343
+ * Use of this source code is governed by an MIT-style license that can be
369344
+ * found in the LICENSE file at https://angular.io/license
369345
+ */
368892
369346
  Object.defineProperty(exports2, "__esModule", { value: true });
368893
369347
  exports2.UpdateRecorderBom = exports2.UpdateRecorderBase = void 0;
368894
369348
  var exception_1 = require_exception3();
@@ -368963,6 +369417,13 @@ var require_recorder = __commonJS({
368963
369417
  var require_scoped2 = __commonJS({
368964
369418
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/scoped.js"(exports2) {
368965
369419
  "use strict";
369420
+ /**
369421
+ * @license
369422
+ * Copyright Google LLC All Rights Reserved.
369423
+ *
369424
+ * Use of this source code is governed by an MIT-style license that can be
369425
+ * found in the LICENSE file at https://angular.io/license
369426
+ */
368966
369427
  Object.defineProperty(exports2, "__esModule", { value: true });
368967
369428
  exports2.ScopedTree = void 0;
368968
369429
  var core_1 = require_src2();
@@ -369140,6 +369601,13 @@ var require_scoped2 = __commonJS({
369140
369601
  var require_host_tree = __commonJS({
369141
369602
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/host-tree.js"(exports2) {
369142
369603
  "use strict";
369604
+ /**
369605
+ * @license
369606
+ * Copyright Google LLC All Rights Reserved.
369607
+ *
369608
+ * Use of this source code is governed by an MIT-style license that can be
369609
+ * found in the LICENSE file at https://angular.io/license
369610
+ */
369143
369611
  Object.defineProperty(exports2, "__esModule", { value: true });
369144
369612
  exports2.FilterHostTree = exports2.HostCreateTree = exports2.HostTree = exports2.HostDirEntry = void 0;
369145
369613
  var core_1 = require_src2();
@@ -369555,6 +370023,13 @@ var require_host_tree = __commonJS({
369555
370023
  var require_static = __commonJS({
369556
370024
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/static.js"(exports2) {
369557
370025
  "use strict";
370026
+ /**
370027
+ * @license
370028
+ * Copyright Google LLC All Rights Reserved.
370029
+ *
370030
+ * Use of this source code is governed by an MIT-style license that can be
370031
+ * found in the LICENSE file at https://angular.io/license
370032
+ */
369558
370033
  Object.defineProperty(exports2, "__esModule", { value: true });
369559
370034
  exports2.partition = exports2.merge = exports2.branch = exports2.empty = void 0;
369560
370035
  var exception_1 = require_exception3();
@@ -369591,6 +370066,13 @@ var require_static = __commonJS({
369591
370066
  var require_null2 = __commonJS({
369592
370067
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/null.js"(exports2) {
369593
370068
  "use strict";
370069
+ /**
370070
+ * @license
370071
+ * Copyright Google LLC All Rights Reserved.
370072
+ *
370073
+ * Use of this source code is governed by an MIT-style license that can be
370074
+ * found in the LICENSE file at https://angular.io/license
370075
+ */
369594
370076
  Object.defineProperty(exports2, "__esModule", { value: true });
369595
370077
  exports2.NullTree = exports2.NullTreeDirEntry = exports2.CannotCreateFileException = void 0;
369596
370078
  var core_1 = require_src2();
@@ -369691,6 +370173,13 @@ var require_null2 = __commonJS({
369691
370173
  var require_call = __commonJS({
369692
370174
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/call.js"(exports2) {
369693
370175
  "use strict";
370176
+ /**
370177
+ * @license
370178
+ * Copyright Google LLC All Rights Reserved.
370179
+ *
370180
+ * Use of this source code is governed by an MIT-style license that can be
370181
+ * found in the LICENSE file at https://angular.io/license
370182
+ */
369694
370183
  Object.defineProperty(exports2, "__esModule", { value: true });
369695
370184
  exports2.callRule = exports2.callSource = exports2.InvalidSourceResultException = exports2.InvalidRuleResultException = void 0;
369696
370185
  var core_1 = require_src2();
@@ -369771,6 +370260,13 @@ var require_call = __commonJS({
369771
370260
  var require_schematic = __commonJS({
369772
370261
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/schematic.js"(exports2) {
369773
370262
  "use strict";
370263
+ /**
370264
+ * @license
370265
+ * Copyright Google LLC All Rights Reserved.
370266
+ *
370267
+ * Use of this source code is governed by an MIT-style license that can be
370268
+ * found in the LICENSE file at https://angular.io/license
370269
+ */
369774
370270
  Object.defineProperty(exports2, "__esModule", { value: true });
369775
370271
  exports2.SchematicImpl = exports2.InvalidSchematicsNameException = void 0;
369776
370272
  var core_1 = require_src2();
@@ -369835,6 +370331,13 @@ var require_schematic = __commonJS({
369835
370331
  var require_engine = __commonJS({
369836
370332
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/engine.js"(exports2) {
369837
370333
  "use strict";
370334
+ /**
370335
+ * @license
370336
+ * Copyright Google LLC All Rights Reserved.
370337
+ *
370338
+ * Use of this source code is governed by an MIT-style license that can be
370339
+ * found in the LICENSE file at https://angular.io/license
370340
+ */
369838
370341
  Object.defineProperty(exports2, "__esModule", { value: true });
369839
370342
  exports2.SchematicEngine = exports2.TaskScheduler = exports2.CollectionImpl = exports2.UnknownTaskDependencyException = exports2.UnregisteredTaskException = exports2.SchematicEngineConflictingException = exports2.PrivateSchematicException = exports2.UnknownSchematicException = exports2.CircularCollectionException = exports2.UnknownCollectionException = exports2.UnknownUrlSourceProtocol = void 0;
369840
370343
  var core_1 = require_src2();
@@ -370129,6 +370632,13 @@ var require_engine = __commonJS({
370129
370632
  var require_interface4 = __commonJS({
370130
370633
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/interface.js"(exports2) {
370131
370634
  "use strict";
370635
+ /**
370636
+ * @license
370637
+ * Copyright Google LLC All Rights Reserved.
370638
+ *
370639
+ * Use of this source code is governed by an MIT-style license that can be
370640
+ * found in the LICENSE file at https://angular.io/license
370641
+ */
370132
370642
  Object.defineProperty(exports2, "__esModule", { value: true });
370133
370643
  }
370134
370644
  });
@@ -370137,6 +370647,13 @@ var require_interface4 = __commonJS({
370137
370647
  var require_engine2 = __commonJS({
370138
370648
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/index.js"(exports2) {
370139
370649
  "use strict";
370650
+ /**
370651
+ * @license
370652
+ * Copyright Google LLC All Rights Reserved.
370653
+ *
370654
+ * Use of this source code is governed by an MIT-style license that can be
370655
+ * found in the LICENSE file at https://angular.io/license
370656
+ */
370140
370657
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
370141
370658
  if (k23 === void 0)
370142
370659
  k23 = k6;
@@ -370168,6 +370685,13 @@ var require_engine2 = __commonJS({
370168
370685
  var require_cli_logger = __commonJS({
370169
370686
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/cli-logger.js"(exports2) {
370170
370687
  "use strict";
370688
+ /**
370689
+ * @license
370690
+ * Copyright Google LLC All Rights Reserved.
370691
+ *
370692
+ * Use of this source code is governed by an MIT-style license that can be
370693
+ * found in the LICENSE file at https://angular.io/license
370694
+ */
370171
370695
  Object.defineProperty(exports2, "__esModule", { value: true });
370172
370696
  exports2.createConsoleLogger = void 0;
370173
370697
  var rxjs_1 = require_cjs();
@@ -371965,6 +372489,12 @@ var require_readdirp = __commonJS({
371965
372489
  // node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js
371966
372490
  var require_normalize_path = __commonJS({
371967
372491
  "node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js"(exports2, module2) {
372492
+ /*!
372493
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
372494
+ *
372495
+ * Copyright (c) 2014-2018, Jon Schlinkert.
372496
+ * Released under the MIT License.
372497
+ */
371968
372498
  module2.exports = function(path15, stripTrailing) {
371969
372499
  if (typeof path15 !== "string") {
371970
372500
  throw new TypeError("expected path to be a string");
@@ -372061,6 +372591,12 @@ var require_anymatch = __commonJS({
372061
372591
  // node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
372062
372592
  var require_is_extglob2 = __commonJS({
372063
372593
  "node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js"(exports2, module2) {
372594
+ /*!
372595
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
372596
+ *
372597
+ * Copyright (c) 2014-2016, Jon Schlinkert.
372598
+ * Licensed under the MIT License.
372599
+ */
372064
372600
  module2.exports = function isExtglob(str2) {
372065
372601
  if (typeof str2 !== "string" || str2 === "") {
372066
372602
  return false;
@@ -372079,6 +372615,12 @@ var require_is_extglob2 = __commonJS({
372079
372615
  // node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
372080
372616
  var require_is_glob2 = __commonJS({
372081
372617
  "node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js"(exports2, module2) {
372618
+ /*!
372619
+ * is-glob <https://github.com/jonschlinkert/is-glob>
372620
+ *
372621
+ * Copyright (c) 2014-2017, Jon Schlinkert.
372622
+ * Released under the MIT License.
372623
+ */
372082
372624
  var isExtglob = require_is_extglob2();
372083
372625
  var chars = { "{": "}", "(": ")", "[": "]" };
372084
372626
  var strictCheck = function(str2) {
@@ -372355,6 +372897,12 @@ var require_stringify2 = __commonJS({
372355
372897
  var require_is_number2 = __commonJS({
372356
372898
  "node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports2, module2) {
372357
372899
  "use strict";
372900
+ /*!
372901
+ * is-number <https://github.com/jonschlinkert/is-number>
372902
+ *
372903
+ * Copyright (c) 2014-present, Jon Schlinkert.
372904
+ * Released under the MIT License.
372905
+ */
372358
372906
  module2.exports = function(num) {
372359
372907
  if (typeof num === "number") {
372360
372908
  return num - num === 0;
@@ -372371,6 +372919,12 @@ var require_is_number2 = __commonJS({
372371
372919
  var require_to_regex_range2 = __commonJS({
372372
372920
  "node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports2, module2) {
372373
372921
  "use strict";
372922
+ /*!
372923
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
372924
+ *
372925
+ * Copyright (c) 2015-present, Jon Schlinkert.
372926
+ * Released under the MIT License.
372927
+ */
372374
372928
  var isNumber = require_is_number2();
372375
372929
  var toRegexRange = (min, max, options8) => {
372376
372930
  if (isNumber(min) === false) {
@@ -372583,6 +373137,12 @@ var require_to_regex_range2 = __commonJS({
372583
373137
  var require_fill_range2 = __commonJS({
372584
373138
  "node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports2, module2) {
372585
373139
  "use strict";
373140
+ /*!
373141
+ * fill-range <https://github.com/jonschlinkert/fill-range>
373142
+ *
373143
+ * Copyright (c) 2014-present, Jon Schlinkert.
373144
+ * Licensed under the MIT License.
373145
+ */
372586
373146
  var util3 = require("util");
372587
373147
  var toRegexRange = require_to_regex_range2();
372588
373148
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -375425,6 +375985,13 @@ var require_chokidar = __commonJS({
375425
375985
  var require_host3 = __commonJS({
375426
375986
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/host.js"(exports2) {
375427
375987
  "use strict";
375988
+ /**
375989
+ * @license
375990
+ * Copyright Google LLC All Rights Reserved.
375991
+ *
375992
+ * Use of this source code is governed by an MIT-style license that can be
375993
+ * found in the LICENSE file at https://angular.io/license
375994
+ */
375428
375995
  Object.defineProperty(exports2, "__esModule", { value: true });
375429
375996
  exports2.NodeJsSyncHost = exports2.NodeJsAsyncHost = void 0;
375430
375997
  var node_fs_1 = require("node:fs");
@@ -375615,6 +376182,13 @@ var require_host3 = __commonJS({
375615
376182
  var require_node = __commonJS({
375616
376183
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/index.js"(exports2) {
375617
376184
  "use strict";
376185
+ /**
376186
+ * @license
376187
+ * Copyright Google LLC All Rights Reserved.
376188
+ *
376189
+ * Use of this source code is governed by an MIT-style license that can be
376190
+ * found in the LICENSE file at https://angular.io/license
376191
+ */
375618
376192
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
375619
376193
  if (k23 === void 0)
375620
376194
  k23 = k6;
@@ -375645,6 +376219,13 @@ var require_node = __commonJS({
375645
376219
  var require_action = __commonJS({
375646
376220
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/action.js"(exports2) {
375647
376221
  "use strict";
376222
+ /**
376223
+ * @license
376224
+ * Copyright Google LLC All Rights Reserved.
376225
+ *
376226
+ * Use of this source code is governed by an MIT-style license that can be
376227
+ * found in the LICENSE file at https://angular.io/license
376228
+ */
375648
376229
  Object.defineProperty(exports2, "__esModule", { value: true });
375649
376230
  exports2.isContentAction = exports2.ActionList = exports2.UnknownActionException = void 0;
375650
376231
  var core_1 = require_src2();
@@ -375780,6 +376361,13 @@ var require_action = __commonJS({
375780
376361
  var require_sink = __commonJS({
375781
376362
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/sink.js"(exports2) {
375782
376363
  "use strict";
376364
+ /**
376365
+ * @license
376366
+ * Copyright Google LLC All Rights Reserved.
376367
+ *
376368
+ * Use of this source code is governed by an MIT-style license that can be
376369
+ * found in the LICENSE file at https://angular.io/license
376370
+ */
375783
376371
  Object.defineProperty(exports2, "__esModule", { value: true });
375784
376372
  exports2.SimpleSinkBase = void 0;
375785
376373
  var rxjs_1 = require_cjs();
@@ -375892,6 +376480,13 @@ var require_sink = __commonJS({
375892
376480
  var require_host4 = __commonJS({
375893
376481
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/host.js"(exports2) {
375894
376482
  "use strict";
376483
+ /**
376484
+ * @license
376485
+ * Copyright Google LLC All Rights Reserved.
376486
+ *
376487
+ * Use of this source code is governed by an MIT-style license that can be
376488
+ * found in the LICENSE file at https://angular.io/license
376489
+ */
375895
376490
  Object.defineProperty(exports2, "__esModule", { value: true });
375896
376491
  exports2.HostSink = void 0;
375897
376492
  var rxjs_1 = require_cjs();
@@ -375962,6 +376557,13 @@ var require_host4 = __commonJS({
375962
376557
  var require_dryrun = __commonJS({
375963
376558
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/dryrun.js"(exports2) {
375964
376559
  "use strict";
376560
+ /**
376561
+ * @license
376562
+ * Copyright Google LLC All Rights Reserved.
376563
+ *
376564
+ * Use of this source code is governed by an MIT-style license that can be
376565
+ * found in the LICENSE file at https://angular.io/license
376566
+ */
375965
376567
  Object.defineProperty(exports2, "__esModule", { value: true });
375966
376568
  exports2.DryRunSink = void 0;
375967
376569
  var core_1 = require_src2();
@@ -376034,6 +376636,13 @@ var require_dryrun = __commonJS({
376034
376636
  var require_base2 = __commonJS({
376035
376637
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/base.js"(exports2) {
376036
376638
  "use strict";
376639
+ /**
376640
+ * @license
376641
+ * Copyright Google LLC All Rights Reserved.
376642
+ *
376643
+ * Use of this source code is governed by an MIT-style license that can be
376644
+ * found in the LICENSE file at https://angular.io/license
376645
+ */
376037
376646
  Object.defineProperty(exports2, "__esModule", { value: true });
376038
376647
  exports2.BaseWorkflow = void 0;
376039
376648
  var core_1 = require_src2();
@@ -376157,6 +376766,13 @@ var require_base2 = __commonJS({
376157
376766
  var require_interface5 = __commonJS({
376158
376767
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/interface.js"(exports2) {
376159
376768
  "use strict";
376769
+ /**
376770
+ * @license
376771
+ * Copyright Google LLC All Rights Reserved.
376772
+ *
376773
+ * Use of this source code is governed by an MIT-style license that can be
376774
+ * found in the LICENSE file at https://angular.io/license
376775
+ */
376160
376776
  Object.defineProperty(exports2, "__esModule", { value: true });
376161
376777
  }
376162
376778
  });
@@ -376165,6 +376781,13 @@ var require_interface5 = __commonJS({
376165
376781
  var require_workflow = __commonJS({
376166
376782
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/index.js"(exports2) {
376167
376783
  "use strict";
376784
+ /**
376785
+ * @license
376786
+ * Copyright Google LLC All Rights Reserved.
376787
+ *
376788
+ * Use of this source code is governed by an MIT-style license that can be
376789
+ * found in the LICENSE file at https://angular.io/license
376790
+ */
376168
376791
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376169
376792
  if (k23 === void 0)
376170
376793
  k23 = k6;
@@ -376195,6 +376818,13 @@ var require_workflow = __commonJS({
376195
376818
  var require_base3 = __commonJS({
376196
376819
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/base.js"(exports2) {
376197
376820
  "use strict";
376821
+ /**
376822
+ * @license
376823
+ * Copyright Google LLC All Rights Reserved.
376824
+ *
376825
+ * Use of this source code is governed by an MIT-style license that can be
376826
+ * found in the LICENSE file at https://angular.io/license
376827
+ */
376198
376828
  Object.defineProperty(exports2, "__esModule", { value: true });
376199
376829
  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;
376200
376830
  var rxjs_1 = require_cjs();
@@ -376334,6 +376964,13 @@ var require_base3 = __commonJS({
376334
376964
  var require_move3 = __commonJS({
376335
376965
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/move.js"(exports2) {
376336
376966
  "use strict";
376967
+ /**
376968
+ * @license
376969
+ * Copyright Google LLC All Rights Reserved.
376970
+ *
376971
+ * Use of this source code is governed by an MIT-style license that can be
376972
+ * found in the LICENSE file at https://angular.io/license
376973
+ */
376337
376974
  Object.defineProperty(exports2, "__esModule", { value: true });
376338
376975
  exports2.move = void 0;
376339
376976
  var core_1 = require_src2();
@@ -376367,6 +377004,13 @@ var require_move3 = __commonJS({
376367
377004
  var require_random = __commonJS({
376368
377005
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/random.js"(exports2) {
376369
377006
  "use strict";
377007
+ /**
377008
+ * @license
377009
+ * Copyright Google LLC All Rights Reserved.
377010
+ *
377011
+ * Use of this source code is governed by an MIT-style license that can be
377012
+ * found in the LICENSE file at https://angular.io/license
377013
+ */
376370
377014
  Object.defineProperty(exports2, "__esModule", { value: true });
376371
377015
  var host_tree_1 = require_host_tree();
376372
377016
  function generateStringOfLength(l) {
@@ -376399,6 +377043,13 @@ var require_random = __commonJS({
376399
377043
  var require_schematic2 = __commonJS({
376400
377044
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/schematic.js"(exports2) {
376401
377045
  "use strict";
377046
+ /**
377047
+ * @license
377048
+ * Copyright Google LLC All Rights Reserved.
377049
+ *
377050
+ * Use of this source code is governed by an MIT-style license that can be
377051
+ * found in the LICENSE file at https://angular.io/license
377052
+ */
376402
377053
  Object.defineProperty(exports2, "__esModule", { value: true });
376403
377054
  exports2.schematic = exports2.externalSchematic = void 0;
376404
377055
  var rxjs_1 = require_cjs();
@@ -376433,6 +377084,13 @@ var require_schematic2 = __commonJS({
376433
377084
  var require_template2 = __commonJS({
376434
377085
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/template.js"(exports2) {
376435
377086
  "use strict";
377087
+ /**
377088
+ * @license
377089
+ * Copyright Google LLC All Rights Reserved.
377090
+ *
377091
+ * Use of this source code is governed by an MIT-style license that can be
377092
+ * found in the LICENSE file at https://angular.io/license
377093
+ */
376436
377094
  Object.defineProperty(exports2, "__esModule", { value: true });
376437
377095
  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;
376438
377096
  var core_1 = require_src2();
@@ -376583,6 +377241,13 @@ var require_template2 = __commonJS({
376583
377241
  var require_url = __commonJS({
376584
377242
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/url.js"(exports2) {
376585
377243
  "use strict";
377244
+ /**
377245
+ * @license
377246
+ * Copyright Google LLC All Rights Reserved.
377247
+ *
377248
+ * Use of this source code is governed by an MIT-style license that can be
377249
+ * found in the LICENSE file at https://angular.io/license
377250
+ */
376586
377251
  Object.defineProperty(exports2, "__esModule", { value: true });
376587
377252
  exports2.url = void 0;
376588
377253
  var url_1 = require("url");
@@ -376598,6 +377263,13 @@ var require_url = __commonJS({
376598
377263
  var require_empty4 = __commonJS({
376599
377264
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/empty.js"(exports2) {
376600
377265
  "use strict";
377266
+ /**
377267
+ * @license
377268
+ * Copyright Google LLC All Rights Reserved.
377269
+ *
377270
+ * Use of this source code is governed by an MIT-style license that can be
377271
+ * found in the LICENSE file at https://angular.io/license
377272
+ */
376601
377273
  Object.defineProperty(exports2, "__esModule", { value: true });
376602
377274
  exports2.EmptyTree = void 0;
376603
377275
  var host_tree_1 = require_host_tree();
@@ -376614,6 +377286,13 @@ var require_empty4 = __commonJS({
376614
377286
  var require_src3 = __commonJS({
376615
377287
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/index.js"(exports2) {
376616
377288
  "use strict";
377289
+ /**
377290
+ * @license
377291
+ * Copyright Google LLC All Rights Reserved.
377292
+ *
377293
+ * Use of this source code is governed by an MIT-style license that can be
377294
+ * found in the LICENSE file at https://angular.io/license
377295
+ */
376617
377296
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376618
377297
  if (k23 === void 0)
376619
377298
  k23 = k6;
@@ -376709,6 +377388,13 @@ var require_src3 = __commonJS({
376709
377388
  var require_options = __commonJS({
376710
377389
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/options.js"(exports2) {
376711
377390
  "use strict";
377391
+ /**
377392
+ * @license
377393
+ * Copyright Google LLC All Rights Reserved.
377394
+ *
377395
+ * Use of this source code is governed by an MIT-style license that can be
377396
+ * found in the LICENSE file at https://angular.io/license
377397
+ */
376712
377398
  Object.defineProperty(exports2, "__esModule", { value: true });
376713
377399
  exports2.NodePackageName = void 0;
376714
377400
  exports2.NodePackageName = "node-package";
@@ -376719,6 +377405,13 @@ var require_options = __commonJS({
376719
377405
  var require_options2 = __commonJS({
376720
377406
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/options.js"(exports2) {
376721
377407
  "use strict";
377408
+ /**
377409
+ * @license
377410
+ * Copyright Google LLC All Rights Reserved.
377411
+ *
377412
+ * Use of this source code is governed by an MIT-style license that can be
377413
+ * found in the LICENSE file at https://angular.io/license
377414
+ */
376722
377415
  Object.defineProperty(exports2, "__esModule", { value: true });
376723
377416
  exports2.RepositoryInitializerName = void 0;
376724
377417
  exports2.RepositoryInitializerName = "repo-init";
@@ -376729,6 +377422,13 @@ var require_options2 = __commonJS({
376729
377422
  var require_options3 = __commonJS({
376730
377423
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/options.js"(exports2) {
376731
377424
  "use strict";
377425
+ /**
377426
+ * @license
377427
+ * Copyright Google LLC All Rights Reserved.
377428
+ *
377429
+ * Use of this source code is governed by an MIT-style license that can be
377430
+ * found in the LICENSE file at https://angular.io/license
377431
+ */
376732
377432
  Object.defineProperty(exports2, "__esModule", { value: true });
376733
377433
  exports2.RunSchematicName = void 0;
376734
377434
  exports2.RunSchematicName = "run-schematic";
@@ -380202,6 +380902,7 @@ var require_stream_duplex = __commonJS({
380202
380902
  // node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js
380203
380903
  var require_safe_buffer = __commonJS({
380204
380904
  "node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js"(exports2, module2) {
380905
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
380205
380906
  var buffer2 = require("buffer");
380206
380907
  var Buffer2 = buffer2.Buffer;
380207
380908
  function copyProps(src, dst) {
@@ -382676,6 +383377,13 @@ var require_ora = __commonJS({
382676
383377
  var require_executor = __commonJS({
382677
383378
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/executor.js"(exports2) {
382678
383379
  "use strict";
383380
+ /**
383381
+ * @license
383382
+ * Copyright Google LLC All Rights Reserved.
383383
+ *
383384
+ * Use of this source code is governed by an MIT-style license that can be
383385
+ * found in the LICENSE file at https://angular.io/license
383386
+ */
382679
383387
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382680
383388
  if (k23 === void 0)
382681
383389
  k23 = k6;
@@ -382847,6 +383555,13 @@ var require_executor = __commonJS({
382847
383555
  var require_executor2 = __commonJS({
382848
383556
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/executor.js"(exports2) {
382849
383557
  "use strict";
383558
+ /**
383559
+ * @license
383560
+ * Copyright Google LLC All Rights Reserved.
383561
+ *
383562
+ * Use of this source code is governed by an MIT-style license that can be
383563
+ * found in the LICENSE file at https://angular.io/license
383564
+ */
382850
383565
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382851
383566
  if (k23 === void 0)
382852
383567
  k23 = k6;
@@ -382943,6 +383658,13 @@ var require_executor2 = __commonJS({
382943
383658
  var require_executor3 = __commonJS({
382944
383659
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/executor.js"(exports2) {
382945
383660
  "use strict";
383661
+ /**
383662
+ * @license
383663
+ * Copyright Google LLC All Rights Reserved.
383664
+ *
383665
+ * Use of this source code is governed by an MIT-style license that can be
383666
+ * found in the LICENSE file at https://angular.io/license
383667
+ */
382946
383668
  Object.defineProperty(exports2, "__esModule", { value: true });
382947
383669
  function default_1() {
382948
383670
  return (options8, context) => {
@@ -382971,6 +383693,13 @@ var require_executor3 = __commonJS({
382971
383693
  var require_node3 = __commonJS({
382972
383694
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/node/index.js"(exports2) {
382973
383695
  "use strict";
383696
+ /**
383697
+ * @license
383698
+ * Copyright Google LLC All Rights Reserved.
383699
+ *
383700
+ * Use of this source code is governed by an MIT-style license that can be
383701
+ * found in the LICENSE file at https://angular.io/license
383702
+ */
382974
383703
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382975
383704
  if (k23 === void 0)
382976
383705
  k23 = k6;
@@ -383030,6 +383759,13 @@ var require_node3 = __commonJS({
383030
383759
  var require_description = __commonJS({
383031
383760
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/description.js"(exports2) {
383032
383761
  "use strict";
383762
+ /**
383763
+ * @license
383764
+ * Copyright Google LLC All Rights Reserved.
383765
+ *
383766
+ * Use of this source code is governed by an MIT-style license that can be
383767
+ * found in the LICENSE file at https://angular.io/license
383768
+ */
383033
383769
  Object.defineProperty(exports2, "__esModule", { value: true });
383034
383770
  }
383035
383771
  });
@@ -383038,6 +383774,13 @@ var require_description = __commonJS({
383038
383774
  var require_export_ref = __commonJS({
383039
383775
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/export-ref.js"(exports2) {
383040
383776
  "use strict";
383777
+ /**
383778
+ * @license
383779
+ * Copyright Google LLC All Rights Reserved.
383780
+ *
383781
+ * Use of this source code is governed by an MIT-style license that can be
383782
+ * found in the LICENSE file at https://angular.io/license
383783
+ */
383041
383784
  Object.defineProperty(exports2, "__esModule", { value: true });
383042
383785
  exports2.ExportStringRef = void 0;
383043
383786
  var path_1 = require("path");
@@ -383074,6 +383817,13 @@ var require_export_ref = __commonJS({
383074
383817
  var require_file_system_utility = __commonJS({
383075
383818
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-utility.js"(exports2) {
383076
383819
  "use strict";
383820
+ /**
383821
+ * @license
383822
+ * Copyright Google LLC All Rights Reserved.
383823
+ *
383824
+ * Use of this source code is governed by an MIT-style license that can be
383825
+ * found in the LICENSE file at https://angular.io/license
383826
+ */
383077
383827
  Object.defineProperty(exports2, "__esModule", { value: true });
383078
383828
  exports2.readJsonFile = void 0;
383079
383829
  var schematics_1 = require_src3();
@@ -383099,6 +383849,13 @@ var require_file_system_utility = __commonJS({
383099
383849
  var require_file_system_engine_host_base = __commonJS({
383100
383850
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js"(exports2) {
383101
383851
  "use strict";
383852
+ /**
383853
+ * @license
383854
+ * Copyright Google LLC All Rights Reserved.
383855
+ *
383856
+ * Use of this source code is governed by an MIT-style license that can be
383857
+ * found in the LICENSE file at https://angular.io/license
383858
+ */
383102
383859
  Object.defineProperty(exports2, "__esModule", { value: true });
383103
383860
  exports2.FileSystemEngineHostBase = exports2.SchematicNameCollisionException = exports2.SchematicMissingDescriptionException = exports2.SchematicMissingFieldsException = exports2.CollectionMissingFieldsException = exports2.CollectionMissingSchematicsMapException = exports2.FactoryCannotBeResolvedException = exports2.SchematicMissingFactoryException = exports2.InvalidCollectionJsonException = exports2.CollectionCannotBeResolvedException = void 0;
383104
383861
  var core_1 = require_src2();
@@ -383333,6 +384090,13 @@ var require_file_system_engine_host_base = __commonJS({
383333
384090
  var require_node_module_engine_host = __commonJS({
383334
384091
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js"(exports2) {
383335
384092
  "use strict";
384093
+ /**
384094
+ * @license
384095
+ * Copyright Google LLC All Rights Reserved.
384096
+ *
384097
+ * Use of this source code is governed by an MIT-style license that can be
384098
+ * found in the LICENSE file at https://angular.io/license
384099
+ */
383336
384100
  Object.defineProperty(exports2, "__esModule", { value: true });
383337
384101
  exports2.NodeModulesEngineHost = exports2.NodePackageDoesNotSupportSchematics = void 0;
383338
384102
  var core_1 = require_src2();
@@ -383961,6 +384725,13 @@ var require_operators = __commonJS({
383961
384725
  var require_schema_option_transform = __commonJS({
383962
384726
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/schema-option-transform.js"(exports2) {
383963
384727
  "use strict";
384728
+ /**
384729
+ * @license
384730
+ * Copyright Google LLC All Rights Reserved.
384731
+ *
384732
+ * Use of this source code is governed by an MIT-style license that can be
384733
+ * found in the LICENSE file at https://angular.io/license
384734
+ */
383964
384735
  Object.defineProperty(exports2, "__esModule", { value: true });
383965
384736
  exports2.validateOptionsWithSchema = exports2.InvalidInputOptions = void 0;
383966
384737
  var core_1 = require_src2();
@@ -383997,6 +384768,13 @@ Errors:
383997
384768
  var require_node_workflow = __commonJS({
383998
384769
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js"(exports2) {
383999
384770
  "use strict";
384771
+ /**
384772
+ * @license
384773
+ * Copyright Google LLC All Rights Reserved.
384774
+ *
384775
+ * Use of this source code is governed by an MIT-style license that can be
384776
+ * found in the LICENSE file at https://angular.io/license
384777
+ */
384000
384778
  Object.defineProperty(exports2, "__esModule", { value: true });
384001
384779
  exports2.NodeWorkflow = void 0;
384002
384780
  var core_1 = require_src2();
@@ -384060,6 +384838,13 @@ var require_node_workflow = __commonJS({
384060
384838
  var require_file_system_engine_host = __commonJS({
384061
384839
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host.js"(exports2) {
384062
384840
  "use strict";
384841
+ /**
384842
+ * @license
384843
+ * Copyright Google LLC All Rights Reserved.
384844
+ *
384845
+ * Use of this source code is governed by an MIT-style license that can be
384846
+ * found in the LICENSE file at https://angular.io/license
384847
+ */
384063
384848
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384064
384849
  if (k23 === void 0)
384065
384850
  k23 = k6;
@@ -384177,6 +384962,13 @@ var require_file_system_engine_host = __commonJS({
384177
384962
  var require_node_modules_test_engine_host = __commonJS({
384178
384963
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-modules-test-engine-host.js"(exports2) {
384179
384964
  "use strict";
384965
+ /**
384966
+ * @license
384967
+ * Copyright Google LLC All Rights Reserved.
384968
+ *
384969
+ * Use of this source code is governed by an MIT-style license that can be
384970
+ * found in the LICENSE file at https://angular.io/license
384971
+ */
384180
384972
  Object.defineProperty(exports2, "__esModule", { value: true });
384181
384973
  exports2.NodeModulesTestEngineHost = void 0;
384182
384974
  var node_module_engine_host_1 = require_node_module_engine_host();
@@ -384216,6 +385008,13 @@ var require_node_modules_test_engine_host = __commonJS({
384216
385008
  var require_tools = __commonJS({
384217
385009
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/index.js"(exports2) {
384218
385010
  "use strict";
385011
+ /**
385012
+ * @license
385013
+ * Copyright Google LLC All Rights Reserved.
385014
+ *
385015
+ * Use of this source code is governed by an MIT-style license that can be
385016
+ * found in the LICENSE file at https://angular.io/license
385017
+ */
384219
385018
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384220
385019
  if (k23 === void 0)
384221
385020
  k23 = k6;
@@ -384268,6 +385067,13 @@ var require_tools = __commonJS({
384268
385067
  var require_schematic_test_runner = __commonJS({
384269
385068
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/schematic-test-runner.js"(exports2) {
384270
385069
  "use strict";
385070
+ /**
385071
+ * @license
385072
+ * Copyright Google LLC All Rights Reserved.
385073
+ *
385074
+ * Use of this source code is governed by an MIT-style license that can be
385075
+ * found in the LICENSE file at https://angular.io/license
385076
+ */
384271
385077
  Object.defineProperty(exports2, "__esModule", { value: true });
384272
385078
  exports2.SchematicTestRunner = exports2.UnitTestTree = void 0;
384273
385079
  var core_1 = require_src2();
@@ -384349,6 +385155,13 @@ var require_schematic_test_runner = __commonJS({
384349
385155
  var require_testing = __commonJS({
384350
385156
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/index.js"(exports2) {
384351
385157
  "use strict";
385158
+ /**
385159
+ * @license
385160
+ * Copyright Google LLC All Rights Reserved.
385161
+ *
385162
+ * Use of this source code is governed by an MIT-style license that can be
385163
+ * found in the LICENSE file at https://angular.io/license
385164
+ */
384352
385165
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384353
385166
  if (k23 === void 0)
384354
385167
  k23 = k6;
@@ -384532,6 +385345,13 @@ var require_invoke_nx_generator = __commonJS({
384532
385345
  var require_api = __commonJS({
384533
385346
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/api.js"(exports2) {
384534
385347
  "use strict";
385348
+ /**
385349
+ * @license
385350
+ * Copyright Google LLC All Rights Reserved.
385351
+ *
385352
+ * Use of this source code is governed by an MIT-style license that can be
385353
+ * found in the LICENSE file at https://angular.io/license
385354
+ */
384535
385355
  Object.defineProperty(exports2, "__esModule", { value: true });
384536
385356
  exports2.isJobHandler = exports2.JobState = exports2.JobOutboundMessageKind = exports2.JobInboundMessageKind = void 0;
384537
385357
  var JobInboundMessageKind;
@@ -384572,6 +385392,13 @@ var require_api = __commonJS({
384572
385392
  var require_strategy = __commonJS({
384573
385393
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/strategy.js"(exports2) {
384574
385394
  "use strict";
385395
+ /**
385396
+ * @license
385397
+ * Copyright Google LLC All Rights Reserved.
385398
+ *
385399
+ * Use of this source code is governed by an MIT-style license that can be
385400
+ * found in the LICENSE file at https://angular.io/license
385401
+ */
384575
385402
  Object.defineProperty(exports2, "__esModule", { value: true });
384576
385403
  exports2.memoize = exports2.reuse = exports2.serialize = void 0;
384577
385404
  var core_1 = require_src2();
@@ -384647,6 +385474,13 @@ var require_strategy = __commonJS({
384647
385474
  var require_create_job_handler = __commonJS({
384648
385475
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/create-job-handler.js"(exports2) {
384649
385476
  "use strict";
385477
+ /**
385478
+ * @license
385479
+ * Copyright Google LLC All Rights Reserved.
385480
+ *
385481
+ * Use of this source code is governed by an MIT-style license that can be
385482
+ * found in the LICENSE file at https://angular.io/license
385483
+ */
384650
385484
  Object.defineProperty(exports2, "__esModule", { value: true });
384651
385485
  exports2.createLoggerJob = exports2.createJobFactory = exports2.createJobHandler = exports2.ChannelAlreadyExistException = void 0;
384652
385486
  var core_1 = require_src2();
@@ -384765,6 +385599,13 @@ var require_create_job_handler = __commonJS({
384765
385599
  var require_exception4 = __commonJS({
384766
385600
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/exception.js"(exports2) {
384767
385601
  "use strict";
385602
+ /**
385603
+ * @license
385604
+ * Copyright Google LLC All Rights Reserved.
385605
+ *
385606
+ * Use of this source code is governed by an MIT-style license that can be
385607
+ * found in the LICENSE file at https://angular.io/license
385608
+ */
384768
385609
  Object.defineProperty(exports2, "__esModule", { value: true });
384769
385610
  exports2.JobDoesNotExistException = exports2.JobNameAlreadyRegisteredException = void 0;
384770
385611
  var core_1 = require_src2();
@@ -384787,6 +385628,13 @@ var require_exception4 = __commonJS({
384787
385628
  var require_dispatcher = __commonJS({
384788
385629
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/dispatcher.js"(exports2) {
384789
385630
  "use strict";
385631
+ /**
385632
+ * @license
385633
+ * Copyright Google LLC All Rights Reserved.
385634
+ *
385635
+ * Use of this source code is governed by an MIT-style license that can be
385636
+ * found in the LICENSE file at https://angular.io/license
385637
+ */
384790
385638
  Object.defineProperty(exports2, "__esModule", { value: true });
384791
385639
  exports2.createDispatcher = void 0;
384792
385640
  var api_1 = require_api();
@@ -384830,6 +385678,13 @@ var require_dispatcher = __commonJS({
384830
385678
  var require_fallback_registry = __commonJS({
384831
385679
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/fallback-registry.js"(exports2) {
384832
385680
  "use strict";
385681
+ /**
385682
+ * @license
385683
+ * Copyright Google LLC All Rights Reserved.
385684
+ *
385685
+ * Use of this source code is governed by an MIT-style license that can be
385686
+ * found in the LICENSE file at https://angular.io/license
385687
+ */
384833
385688
  Object.defineProperty(exports2, "__esModule", { value: true });
384834
385689
  exports2.FallbackRegistry = void 0;
384835
385690
  var rxjs_1 = require_cjs();
@@ -384853,6 +385708,13 @@ var require_fallback_registry = __commonJS({
384853
385708
  var require_simple_registry = __commonJS({
384854
385709
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-registry.js"(exports2) {
384855
385710
  "use strict";
385711
+ /**
385712
+ * @license
385713
+ * Copyright Google LLC All Rights Reserved.
385714
+ *
385715
+ * Use of this source code is governed by an MIT-style license that can be
385716
+ * found in the LICENSE file at https://angular.io/license
385717
+ */
384856
385718
  Object.defineProperty(exports2, "__esModule", { value: true });
384857
385719
  exports2.SimpleJobRegistry = void 0;
384858
385720
  var core_1 = require_src2();
@@ -384916,6 +385778,13 @@ var require_simple_registry = __commonJS({
384916
385778
  var require_simple_scheduler = __commonJS({
384917
385779
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-scheduler.js"(exports2) {
384918
385780
  "use strict";
385781
+ /**
385782
+ * @license
385783
+ * Copyright Google LLC All Rights Reserved.
385784
+ *
385785
+ * Use of this source code is governed by an MIT-style license that can be
385786
+ * found in the LICENSE file at https://angular.io/license
385787
+ */
384919
385788
  Object.defineProperty(exports2, "__esModule", { value: true });
384920
385789
  exports2.SimpleScheduler = exports2.JobOutputSchemaValidationError = exports2.JobInboundMessageSchemaValidationError = exports2.JobArgumentSchemaValidationError = void 0;
384921
385790
  var core_1 = require_src2();
@@ -385285,6 +386154,13 @@ var require_simple_scheduler = __commonJS({
385285
386154
  var require_jobs = __commonJS({
385286
386155
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/index.js"(exports2) {
385287
386156
  "use strict";
386157
+ /**
386158
+ * @license
386159
+ * Copyright Google LLC All Rights Reserved.
386160
+ *
386161
+ * Use of this source code is governed by an MIT-style license that can be
386162
+ * found in the LICENSE file at https://angular.io/license
386163
+ */
385288
386164
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385289
386165
  if (k23 === void 0)
385290
386166
  k23 = k6;
@@ -385356,6 +386232,13 @@ var require_progress_schema = __commonJS({
385356
386232
  var require_api2 = __commonJS({
385357
386233
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/api.js"(exports2) {
385358
386234
  "use strict";
386235
+ /**
386236
+ * @license
386237
+ * Copyright Google LLC All Rights Reserved.
386238
+ *
386239
+ * Use of this source code is governed by an MIT-style license that can be
386240
+ * found in the LICENSE file at https://angular.io/license
386241
+ */
385359
386242
  Object.defineProperty(exports2, "__esModule", { value: true });
385360
386243
  exports2.scheduleTargetAndForget = exports2.targetFromTargetString = exports2.targetStringFromTarget = exports2.fromAsyncIterable = exports2.isBuilderOutput = exports2.BuilderProgressState = void 0;
385361
386244
  var rxjs_1 = require_cjs();
@@ -385518,6 +386401,13 @@ var require_progress_schema2 = __commonJS({
385518
386401
  var require_schedule_by_name = __commonJS({
385519
386402
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/schedule-by-name.js"(exports2) {
385520
386403
  "use strict";
386404
+ /**
386405
+ * @license
386406
+ * Copyright Google LLC All Rights Reserved.
386407
+ *
386408
+ * Use of this source code is governed by an MIT-style license that can be
386409
+ * found in the LICENSE file at https://angular.io/license
386410
+ */
385521
386411
  Object.defineProperty(exports2, "__esModule", { value: true });
385522
386412
  exports2.scheduleByTarget = exports2.scheduleByName = void 0;
385523
386413
  var rxjs_1 = require_cjs();
@@ -385699,6 +386589,13 @@ var require_output_schema = __commonJS({
385699
386589
  var require_architect = __commonJS({
385700
386590
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/architect.js"(exports2) {
385701
386591
  "use strict";
386592
+ /**
386593
+ * @license
386594
+ * Copyright Google LLC All Rights Reserved.
386595
+ *
386596
+ * Use of this source code is governed by an MIT-style license that can be
386597
+ * found in the LICENSE file at https://angular.io/license
386598
+ */
385702
386599
  Object.defineProperty(exports2, "__esModule", { value: true });
385703
386600
  exports2.Architect = void 0;
385704
386601
  var core_1 = require_src2();
@@ -385965,6 +386862,13 @@ var require_architect = __commonJS({
385965
386862
  var require_internal = __commonJS({
385966
386863
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/internal.js"(exports2) {
385967
386864
  "use strict";
386865
+ /**
386866
+ * @license
386867
+ * Copyright Google LLC All Rights Reserved.
386868
+ *
386869
+ * Use of this source code is governed by an MIT-style license that can be
386870
+ * found in the LICENSE file at https://angular.io/license
386871
+ */
385968
386872
  Object.defineProperty(exports2, "__esModule", { value: true });
385969
386873
  exports2.BuilderVersionSymbol = exports2.BuilderSymbol = void 0;
385970
386874
  exports2.BuilderSymbol = Symbol.for("@angular-devkit/architect:builder");
@@ -386017,6 +386921,13 @@ var require_package3 = __commonJS({
386017
386921
  var require_create_builder = __commonJS({
386018
386922
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/create-builder.js"(exports2) {
386019
386923
  "use strict";
386924
+ /**
386925
+ * @license
386926
+ * Copyright Google LLC All Rights Reserved.
386927
+ *
386928
+ * Use of this source code is governed by an MIT-style license that can be
386929
+ * found in the LICENSE file at https://angular.io/license
386930
+ */
386020
386931
  Object.defineProperty(exports2, "__esModule", { value: true });
386021
386932
  exports2.createBuilder = void 0;
386022
386933
  var core_1 = require_src2();
@@ -386183,6 +387094,13 @@ var require_create_builder = __commonJS({
386183
387094
  var require_src4 = __commonJS({
386184
387095
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/index.js"(exports2) {
386185
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
+ */
386186
387104
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
386187
387105
  if (k23 === void 0)
386188
387106
  k23 = k6;
@@ -395238,6 +396156,7 @@ var require_out5 = __commonJS({
395238
396156
  // node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
395239
396157
  var require_queue_microtask2 = __commonJS({
395240
396158
  "node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js"(exports2, module2) {
396159
+ /*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
395241
396160
  var promise;
395242
396161
  module2.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
395243
396162
  throw err;
@@ -395248,6 +396167,7 @@ var require_queue_microtask2 = __commonJS({
395248
396167
  // node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
395249
396168
  var require_run_parallel2 = __commonJS({
395250
396169
  "node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js"(exports2, module2) {
396170
+ /*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
395251
396171
  module2.exports = runParallel;
395252
396172
  var queueMicrotask2 = require_queue_microtask2();
395253
396173
  function runParallel(tasks, cb) {
@@ -433432,6 +434352,15 @@ If this is important to you, please consider supporting Rollup to make a native
433432
434352
  var require_parseAst = __commonJS({
433433
434353
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/parseAst.js"(exports2) {
433434
434354
  "use strict";
434355
+ /*
434356
+ @license
434357
+ Rollup.js v4.10.0
434358
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
434359
+
434360
+ https://github.com/rollup/rollup
434361
+
434362
+ Released under the MIT License.
434363
+ */
433435
434364
  var native_js = require_native();
433436
434365
  var node_path = require("node:path");
433437
434366
  function rangeContains(range, index) {
@@ -435747,6 +436676,15 @@ ${smallChunks} are below minChunkSize.`
435747
436676
  var require_rollup = __commonJS({
435748
436677
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/rollup.js"(exports2) {
435749
436678
  "use strict";
436679
+ /*
436680
+ @license
436681
+ Rollup.js v4.10.0
436682
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
436683
+
436684
+ https://github.com/rollup/rollup
436685
+
436686
+ Released under the MIT License.
436687
+ */
435750
436688
  var parseAst_js = require_parseAst();
435751
436689
  var process$1 = require("node:process");
435752
436690
  var tty2 = require("tty");
@@ -453446,6 +454384,15 @@ ${outro}`;
453446
454384
  var require_fsevents_importer = __commonJS({
453447
454385
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/fsevents-importer.js"(exports2) {
453448
454386
  "use strict";
454387
+ /*
454388
+ @license
454389
+ Rollup.js v4.10.0
454390
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
454391
+
454392
+ https://github.com/rollup/rollup
454393
+
454394
+ Released under the MIT License.
454395
+ */
453449
454396
  var fsEvents;
453450
454397
  var fsEventsImportError;
453451
454398
  async function loadFsEvents() {
@@ -453474,6 +454421,15 @@ var require_fsevents_importer = __commonJS({
453474
454421
  var require_shared = __commonJS({
453475
454422
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/index.js"(exports2) {
453476
454423
  "use strict";
454424
+ /*
454425
+ @license
454426
+ Rollup.js v4.10.0
454427
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
454428
+
454429
+ https://github.com/rollup/rollup
454430
+
454431
+ Released under the MIT License.
454432
+ */
453477
454433
  var rollup = require_rollup();
453478
454434
  var require$$0$1 = require("fs");
453479
454435
  var require$$2 = require("util");
@@ -453714,6 +454670,12 @@ var require_shared = __commonJS({
453714
454670
  readdirp$1.default = readdirp$1;
453715
454671
  var readdirp_1 = readdirp$1;
453716
454672
  var anymatch$2 = { exports: {} };
454673
+ /*!
454674
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
454675
+ *
454676
+ * Copyright (c) 2014-2018, Jon Schlinkert.
454677
+ * Released under the MIT License.
454678
+ */
453717
454679
  var normalizePath$2 = function(path16, stripTrailing) {
453718
454680
  if (typeof path16 !== "string") {
453719
454681
  throw new TypeError("expected path to be a string");
@@ -453799,6 +454761,12 @@ var require_shared = __commonJS({
453799
454761
  anymatch$1.default = anymatch$1;
453800
454762
  anymatch$2.exports = anymatch$1;
453801
454763
  var anymatchExports = anymatch$2.exports;
454764
+ /*!
454765
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
454766
+ *
454767
+ * Copyright (c) 2014-2016, Jon Schlinkert.
454768
+ * Licensed under the MIT License.
454769
+ */
453802
454770
  var isExtglob$1 = function isExtglob2(str2) {
453803
454771
  if (typeof str2 !== "string" || str2 === "") {
453804
454772
  return false;
@@ -453811,6 +454779,12 @@ var require_shared = __commonJS({
453811
454779
  }
453812
454780
  return false;
453813
454781
  };
454782
+ /*!
454783
+ * is-glob <https://github.com/jonschlinkert/is-glob>
454784
+ *
454785
+ * Copyright (c) 2014-2017, Jon Schlinkert.
454786
+ * Released under the MIT License.
454787
+ */
453814
454788
  var isExtglob = isExtglob$1;
453815
454789
  var chars = { "{": "}", "(": ")", "[": "]" };
453816
454790
  var strictCheck = function(str2) {
@@ -454062,6 +455036,12 @@ var require_shared = __commonJS({
454062
455036
  };
454063
455037
  return stringify2(ast);
454064
455038
  };
455039
+ /*!
455040
+ * is-number <https://github.com/jonschlinkert/is-number>
455041
+ *
455042
+ * Copyright (c) 2014-present, Jon Schlinkert.
455043
+ * Released under the MIT License.
455044
+ */
454065
455045
  var isNumber$2 = function(num) {
454066
455046
  if (typeof num === "number") {
454067
455047
  return num - num === 0;
@@ -454071,6 +455051,12 @@ var require_shared = __commonJS({
454071
455051
  }
454072
455052
  return false;
454073
455053
  };
455054
+ /*!
455055
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
455056
+ *
455057
+ * Copyright (c) 2015-present, Jon Schlinkert.
455058
+ * Released under the MIT License.
455059
+ */
454074
455060
  var isNumber$1 = isNumber$2;
454075
455061
  var toRegexRange$1 = (min2, max, options8) => {
454076
455062
  if (isNumber$1(min2) === false) {
@@ -454276,6 +455262,12 @@ var require_shared = __commonJS({
454276
455262
  toRegexRange$1.cache = {};
454277
455263
  toRegexRange$1.clearCache = () => toRegexRange$1.cache = {};
454278
455264
  var toRegexRange_1 = toRegexRange$1;
455265
+ /*!
455266
+ * fill-range <https://github.com/jonschlinkert/fill-range>
455267
+ *
455268
+ * Copyright (c) 2014-present, Jon Schlinkert.
455269
+ * Licensed under the MIT License.
455270
+ */
454279
455271
  var util3 = require$$2;
454280
455272
  var toRegexRange = toRegexRange_1;
454281
455273
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -457041,6 +458033,15 @@ var require_shared = __commonJS({
457041
458033
  var require_watch = __commonJS({
457042
458034
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/watch.js"(exports2) {
457043
458035
  "use strict";
458036
+ /*
458037
+ @license
458038
+ Rollup.js v4.10.0
458039
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
458040
+
458041
+ https://github.com/rollup/rollup
458042
+
458043
+ Released under the MIT License.
458044
+ */
457044
458045
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
457045
458046
  var node_path = require("node:path");
457046
458047
  var process4 = require("node:process");
@@ -457340,6 +458341,15 @@ var require_watch = __commonJS({
457340
458341
  var require_rollup2 = __commonJS({
457341
458342
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/rollup.js"(exports2) {
457342
458343
  "use strict";
458344
+ /*
458345
+ @license
458346
+ Rollup.js v4.10.0
458347
+ Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
458348
+
458349
+ https://github.com/rollup/rollup
458350
+
458351
+ Released under the MIT License.
458352
+ */
457343
458353
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
457344
458354
  var rollup = require_rollup();
457345
458355
  var parseAst_js = require_parseAst();
@@ -495620,1297 +496630,3 @@ var WorkspaceStorage = class {
495620
496630
  withRunExecutor,
495621
496631
  withRunGenerator
495622
496632
  });
495623
- /*! Bundled license information:
495624
-
495625
- typescript/lib/typescript.js:
495626
- (*! *****************************************************************************
495627
- Copyright (c) Microsoft Corporation. All rights reserved.
495628
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
495629
- this file except in compliance with the License. You may obtain a copy of the
495630
- License at http://www.apache.org/licenses/LICENSE-2.0
495631
-
495632
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
495633
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
495634
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
495635
- MERCHANTABLITY OR NON-INFRINGEMENT.
495636
-
495637
- See the Apache Version 2.0 License for specific language governing permissions
495638
- and limitations under the License.
495639
- ***************************************************************************** *)
495640
-
495641
- cosmiconfig/dist/loaders.js:
495642
- (* istanbul ignore next -- @preserve *)
495643
-
495644
- cosmiconfig/dist/util.js:
495645
- (* istanbul ignore next -- @preserve *)
495646
-
495647
- cosmiconfig/dist/ExplorerBase.js:
495648
- (* istanbul ignore if -- @preserve *)
495649
- (* istanbul ignore next -- @preserve *)
495650
-
495651
- cosmiconfig/dist/Explorer.js:
495652
- (* istanbul ignore if -- @preserve *)
495653
-
495654
- cosmiconfig/dist/ExplorerSync.js:
495655
- (* istanbul ignore if -- @preserve *)
495656
-
495657
- ejs/lib/ejs.js:
495658
- (**
495659
- * @file Embedded JavaScript templating engine. {@link http://ejs.co}
495660
- * @author Matthew Eernisse <mde@fleegix.org>
495661
- * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
495662
- * @project EJS
495663
- * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
495664
- *)
495665
-
495666
- tmp/lib/tmp.js:
495667
- (*!
495668
- * Tmp
495669
- *
495670
- * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
495671
- *
495672
- * MIT Licensed
495673
- *)
495674
-
495675
- @angular-devkit/core/src/json/utils.js:
495676
- (**
495677
- * @license
495678
- * Copyright Google LLC All Rights Reserved.
495679
- *
495680
- * Use of this source code is governed by an MIT-style license that can be
495681
- * found in the LICENSE file at https://angular.io/license
495682
- *)
495683
-
495684
- @angular-devkit/core/src/json/schema/utility.js:
495685
- (**
495686
- * @license
495687
- * Copyright Google LLC All Rights Reserved.
495688
- *
495689
- * Use of this source code is governed by an MIT-style license that can be
495690
- * found in the LICENSE file at https://angular.io/license
495691
- *)
495692
-
495693
- @angular-devkit/core/src/json/schema/transforms.js:
495694
- (**
495695
- * @license
495696
- * Copyright Google LLC All Rights Reserved.
495697
- *
495698
- * Use of this source code is governed by an MIT-style license that can be
495699
- * found in the LICENSE file at https://angular.io/license
495700
- *)
495701
-
495702
- @angular-devkit/core/src/json/schema/interface.js:
495703
- (**
495704
- * @license
495705
- * Copyright Google LLC All Rights Reserved.
495706
- *
495707
- * Use of this source code is governed by an MIT-style license that can be
495708
- * found in the LICENSE file at https://angular.io/license
495709
- *)
495710
-
495711
- @angular-devkit/core/src/json/schema/pointer.js:
495712
- (**
495713
- * @license
495714
- * Copyright Google LLC All Rights Reserved.
495715
- *
495716
- * Use of this source code is governed by an MIT-style license that can be
495717
- * found in the LICENSE file at https://angular.io/license
495718
- *)
495719
-
495720
- uri-js/dist/es5/uri.all.js:
495721
- (** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js *)
495722
-
495723
- @angular-devkit/core/src/exception.js:
495724
- (**
495725
- * @license
495726
- * Copyright Google LLC All Rights Reserved.
495727
- *
495728
- * Use of this source code is governed by an MIT-style license that can be
495729
- * found in the LICENSE file at https://angular.io/license
495730
- *)
495731
-
495732
- @angular-devkit/core/src/utils/literals.js:
495733
- (**
495734
- * @license
495735
- * Copyright Google LLC All Rights Reserved.
495736
- *
495737
- * Use of this source code is governed by an MIT-style license that can be
495738
- * found in the LICENSE file at https://angular.io/license
495739
- *)
495740
-
495741
- @angular-devkit/core/src/utils/strings.js:
495742
- (**
495743
- * @license
495744
- * Copyright Google LLC All Rights Reserved.
495745
- *
495746
- * Use of this source code is governed by an MIT-style license that can be
495747
- * found in the LICENSE file at https://angular.io/license
495748
- *)
495749
-
495750
- @angular-devkit/core/src/utils/object.js:
495751
- (**
495752
- * @license
495753
- * Copyright Google LLC All Rights Reserved.
495754
- *
495755
- * Use of this source code is governed by an MIT-style license that can be
495756
- * found in the LICENSE file at https://angular.io/license
495757
- *)
495758
-
495759
- @angular-devkit/core/src/utils/template.js:
495760
- (**
495761
- * @license
495762
- * Copyright Google LLC All Rights Reserved.
495763
- *
495764
- * Use of this source code is governed by an MIT-style license that can be
495765
- * found in the LICENSE file at https://angular.io/license
495766
- *)
495767
-
495768
- @angular-devkit/core/src/utils/partially-ordered-set.js:
495769
- (**
495770
- * @license
495771
- * Copyright Google LLC All Rights Reserved.
495772
- *
495773
- * Use of this source code is governed by an MIT-style license that can be
495774
- * found in the LICENSE file at https://angular.io/license
495775
- *)
495776
-
495777
- @angular-devkit/core/src/utils/priority-queue.js:
495778
- (**
495779
- * @license
495780
- * Copyright Google LLC All Rights Reserved.
495781
- *
495782
- * Use of this source code is governed by an MIT-style license that can be
495783
- * found in the LICENSE file at https://angular.io/license
495784
- *)
495785
-
495786
- @angular-devkit/core/src/utils/lang.js:
495787
- (**
495788
- * @license
495789
- * Copyright Google LLC All Rights Reserved.
495790
- *
495791
- * Use of this source code is governed by an MIT-style license that can be
495792
- * found in the LICENSE file at https://angular.io/license
495793
- *)
495794
-
495795
- @angular-devkit/core/src/utils/index.js:
495796
- (**
495797
- * @license
495798
- * Copyright Google LLC All Rights Reserved.
495799
- *
495800
- * Use of this source code is governed by an MIT-style license that can be
495801
- * found in the LICENSE file at https://angular.io/license
495802
- *)
495803
-
495804
- @angular-devkit/core/src/json/schema/visitor.js:
495805
- (**
495806
- * @license
495807
- * Copyright Google LLC All Rights Reserved.
495808
- *
495809
- * Use of this source code is governed by an MIT-style license that can be
495810
- * found in the LICENSE file at https://angular.io/license
495811
- *)
495812
-
495813
- @angular-devkit/core/src/json/schema/registry.js:
495814
- (**
495815
- * @license
495816
- * Copyright Google LLC All Rights Reserved.
495817
- *
495818
- * Use of this source code is governed by an MIT-style license that can be
495819
- * found in the LICENSE file at https://angular.io/license
495820
- *)
495821
-
495822
- @angular-devkit/core/src/json/schema/schema.js:
495823
- (**
495824
- * @license
495825
- * Copyright Google LLC All Rights Reserved.
495826
- *
495827
- * Use of this source code is governed by an MIT-style license that can be
495828
- * found in the LICENSE file at https://angular.io/license
495829
- *)
495830
-
495831
- @angular-devkit/core/src/json/schema/index.js:
495832
- (**
495833
- * @license
495834
- * Copyright Google LLC All Rights Reserved.
495835
- *
495836
- * Use of this source code is governed by an MIT-style license that can be
495837
- * found in the LICENSE file at https://angular.io/license
495838
- *)
495839
-
495840
- @angular-devkit/core/src/json/index.js:
495841
- (**
495842
- * @license
495843
- * Copyright Google LLC All Rights Reserved.
495844
- *
495845
- * Use of this source code is governed by an MIT-style license that can be
495846
- * found in the LICENSE file at https://angular.io/license
495847
- *)
495848
-
495849
- @angular-devkit/core/src/logger/logger.js:
495850
- (**
495851
- * @license
495852
- * Copyright Google LLC All Rights Reserved.
495853
- *
495854
- * Use of this source code is governed by an MIT-style license that can be
495855
- * found in the LICENSE file at https://angular.io/license
495856
- *)
495857
-
495858
- @angular-devkit/core/src/logger/indent.js:
495859
- (**
495860
- * @license
495861
- * Copyright Google LLC All Rights Reserved.
495862
- *
495863
- * Use of this source code is governed by an MIT-style license that can be
495864
- * found in the LICENSE file at https://angular.io/license
495865
- *)
495866
-
495867
- @angular-devkit/core/src/logger/level.js:
495868
- (**
495869
- * @license
495870
- * Copyright Google LLC All Rights Reserved.
495871
- *
495872
- * Use of this source code is governed by an MIT-style license that can be
495873
- * found in the LICENSE file at https://angular.io/license
495874
- *)
495875
-
495876
- @angular-devkit/core/src/logger/null-logger.js:
495877
- (**
495878
- * @license
495879
- * Copyright Google LLC All Rights Reserved.
495880
- *
495881
- * Use of this source code is governed by an MIT-style license that can be
495882
- * found in the LICENSE file at https://angular.io/license
495883
- *)
495884
-
495885
- @angular-devkit/core/src/logger/transform-logger.js:
495886
- (**
495887
- * @license
495888
- * Copyright Google LLC All Rights Reserved.
495889
- *
495890
- * Use of this source code is governed by an MIT-style license that can be
495891
- * found in the LICENSE file at https://angular.io/license
495892
- *)
495893
-
495894
- @angular-devkit/core/src/logger/index.js:
495895
- (**
495896
- * @license
495897
- * Copyright Google LLC All Rights Reserved.
495898
- *
495899
- * Use of this source code is governed by an MIT-style license that can be
495900
- * found in the LICENSE file at https://angular.io/license
495901
- *)
495902
-
495903
- @angular-devkit/core/src/workspace/definitions.js:
495904
- (**
495905
- * @license
495906
- * Copyright Google LLC All Rights Reserved.
495907
- *
495908
- * Use of this source code is governed by an MIT-style license that can be
495909
- * found in the LICENSE file at https://angular.io/license
495910
- *)
495911
-
495912
- @angular-devkit/core/src/virtual-fs/path.js:
495913
- (**
495914
- * @license
495915
- * Copyright Google LLC All Rights Reserved.
495916
- *
495917
- * Use of this source code is governed by an MIT-style license that can be
495918
- * found in the LICENSE file at https://angular.io/license
495919
- *)
495920
-
495921
- @angular-devkit/core/src/virtual-fs/host/buffer.js:
495922
- (**
495923
- * @license
495924
- * Copyright Google LLC All Rights Reserved.
495925
- *
495926
- * Use of this source code is governed by an MIT-style license that can be
495927
- * found in the LICENSE file at https://angular.io/license
495928
- *)
495929
-
495930
- @angular-devkit/core/src/virtual-fs/host/interface.js:
495931
- (**
495932
- * @license
495933
- * Copyright Google LLC All Rights Reserved.
495934
- *
495935
- * Use of this source code is governed by an MIT-style license that can be
495936
- * found in the LICENSE file at https://angular.io/license
495937
- *)
495938
-
495939
- @angular-devkit/core/src/virtual-fs/host/memory.js:
495940
- (**
495941
- * @license
495942
- * Copyright Google LLC All Rights Reserved.
495943
- *
495944
- * Use of this source code is governed by an MIT-style license that can be
495945
- * found in the LICENSE file at https://angular.io/license
495946
- *)
495947
-
495948
- @angular-devkit/core/src/virtual-fs/host/sync.js:
495949
- (**
495950
- * @license
495951
- * Copyright Google LLC All Rights Reserved.
495952
- *
495953
- * Use of this source code is governed by an MIT-style license that can be
495954
- * found in the LICENSE file at https://angular.io/license
495955
- *)
495956
-
495957
- @angular-devkit/core/src/virtual-fs/host/test.js:
495958
- (**
495959
- * @license
495960
- * Copyright Google LLC All Rights Reserved.
495961
- *
495962
- * Use of this source code is governed by an MIT-style license that can be
495963
- * found in the LICENSE file at https://angular.io/license
495964
- *)
495965
-
495966
- @angular-devkit/core/src/virtual-fs/host/resolver.js:
495967
- (**
495968
- * @license
495969
- * Copyright Google LLC All Rights Reserved.
495970
- *
495971
- * Use of this source code is governed by an MIT-style license that can be
495972
- * found in the LICENSE file at https://angular.io/license
495973
- *)
495974
-
495975
- @angular-devkit/core/src/virtual-fs/host/alias.js:
495976
- (**
495977
- * @license
495978
- * Copyright Google LLC All Rights Reserved.
495979
- *
495980
- * Use of this source code is governed by an MIT-style license that can be
495981
- * found in the LICENSE file at https://angular.io/license
495982
- *)
495983
-
495984
- @angular-devkit/core/src/virtual-fs/host/create.js:
495985
- (**
495986
- * @license
495987
- * Copyright Google LLC All Rights Reserved.
495988
- *
495989
- * Use of this source code is governed by an MIT-style license that can be
495990
- * found in the LICENSE file at https://angular.io/license
495991
- *)
495992
-
495993
- @angular-devkit/core/src/virtual-fs/host/empty.js:
495994
- (**
495995
- * @license
495996
- * Copyright Google LLC All Rights Reserved.
495997
- *
495998
- * Use of this source code is governed by an MIT-style license that can be
495999
- * found in the LICENSE file at https://angular.io/license
496000
- *)
496001
-
496002
- @angular-devkit/core/src/virtual-fs/host/pattern.js:
496003
- (**
496004
- * @license
496005
- * Copyright Google LLC All Rights Reserved.
496006
- *
496007
- * Use of this source code is governed by an MIT-style license that can be
496008
- * found in the LICENSE file at https://angular.io/license
496009
- *)
496010
-
496011
- @angular-devkit/core/src/virtual-fs/host/record.js:
496012
- (**
496013
- * @license
496014
- * Copyright Google LLC All Rights Reserved.
496015
- *
496016
- * Use of this source code is governed by an MIT-style license that can be
496017
- * found in the LICENSE file at https://angular.io/license
496018
- *)
496019
-
496020
- @angular-devkit/core/src/virtual-fs/host/safe.js:
496021
- (**
496022
- * @license
496023
- * Copyright Google LLC All Rights Reserved.
496024
- *
496025
- * Use of this source code is governed by an MIT-style license that can be
496026
- * found in the LICENSE file at https://angular.io/license
496027
- *)
496028
-
496029
- @angular-devkit/core/src/virtual-fs/host/scoped.js:
496030
- (**
496031
- * @license
496032
- * Copyright Google LLC All Rights Reserved.
496033
- *
496034
- * Use of this source code is governed by an MIT-style license that can be
496035
- * found in the LICENSE file at https://angular.io/license
496036
- *)
496037
-
496038
- @angular-devkit/core/src/virtual-fs/host/index.js:
496039
- (**
496040
- * @license
496041
- * Copyright Google LLC All Rights Reserved.
496042
- *
496043
- * Use of this source code is governed by an MIT-style license that can be
496044
- * found in the LICENSE file at https://angular.io/license
496045
- *)
496046
-
496047
- @angular-devkit/core/src/virtual-fs/index.js:
496048
- (**
496049
- * @license
496050
- * Copyright Google LLC All Rights Reserved.
496051
- *
496052
- * Use of this source code is governed by an MIT-style license that can be
496053
- * found in the LICENSE file at https://angular.io/license
496054
- *)
496055
-
496056
- @angular-devkit/core/src/workspace/host.js:
496057
- (**
496058
- * @license
496059
- * Copyright Google LLC All Rights Reserved.
496060
- *
496061
- * Use of this source code is governed by an MIT-style license that can be
496062
- * found in the LICENSE file at https://angular.io/license
496063
- *)
496064
-
496065
- @angular-devkit/core/src/workspace/json/metadata.js:
496066
- (**
496067
- * @license
496068
- * Copyright Google LLC All Rights Reserved.
496069
- *
496070
- * Use of this source code is governed by an MIT-style license that can be
496071
- * found in the LICENSE file at https://angular.io/license
496072
- *)
496073
-
496074
- @angular-devkit/core/src/workspace/json/utilities.js:
496075
- (**
496076
- * @license
496077
- * Copyright Google LLC All Rights Reserved.
496078
- *
496079
- * Use of this source code is governed by an MIT-style license that can be
496080
- * found in the LICENSE file at https://angular.io/license
496081
- *)
496082
-
496083
- @angular-devkit/core/src/workspace/json/reader.js:
496084
- (**
496085
- * @license
496086
- * Copyright Google LLC All Rights Reserved.
496087
- *
496088
- * Use of this source code is governed by an MIT-style license that can be
496089
- * found in the LICENSE file at https://angular.io/license
496090
- *)
496091
-
496092
- @angular-devkit/core/src/workspace/json/writer.js:
496093
- (**
496094
- * @license
496095
- * Copyright Google LLC All Rights Reserved.
496096
- *
496097
- * Use of this source code is governed by an MIT-style license that can be
496098
- * found in the LICENSE file at https://angular.io/license
496099
- *)
496100
-
496101
- @angular-devkit/core/src/workspace/core.js:
496102
- (**
496103
- * @license
496104
- * Copyright Google LLC All Rights Reserved.
496105
- *
496106
- * Use of this source code is governed by an MIT-style license that can be
496107
- * found in the LICENSE file at https://angular.io/license
496108
- *)
496109
-
496110
- @angular-devkit/core/src/workspace/index.js:
496111
- (**
496112
- * @license
496113
- * Copyright Google LLC All Rights Reserved.
496114
- *
496115
- * Use of this source code is governed by an MIT-style license that can be
496116
- * found in the LICENSE file at https://angular.io/license
496117
- *)
496118
-
496119
- @angular-devkit/core/src/index.js:
496120
- (**
496121
- * @license
496122
- * Copyright Google LLC All Rights Reserved.
496123
- *
496124
- * Use of this source code is governed by an MIT-style license that can be
496125
- * found in the LICENSE file at https://angular.io/license
496126
- *)
496127
-
496128
- @angular-devkit/schematics/src/formats/html-selector.js:
496129
- (**
496130
- * @license
496131
- * Copyright Google LLC All Rights Reserved.
496132
- *
496133
- * Use of this source code is governed by an MIT-style license that can be
496134
- * found in the LICENSE file at https://angular.io/license
496135
- *)
496136
-
496137
- @angular-devkit/schematics/src/formats/path.js:
496138
- (**
496139
- * @license
496140
- * Copyright Google LLC All Rights Reserved.
496141
- *
496142
- * Use of this source code is governed by an MIT-style license that can be
496143
- * found in the LICENSE file at https://angular.io/license
496144
- *)
496145
-
496146
- @angular-devkit/schematics/src/formats/index.js:
496147
- (**
496148
- * @license
496149
- * Copyright Google LLC All Rights Reserved.
496150
- *
496151
- * Use of this source code is governed by an MIT-style license that can be
496152
- * found in the LICENSE file at https://angular.io/license
496153
- *)
496154
-
496155
- @angular-devkit/schematics/src/tree/interface.js:
496156
- (**
496157
- * @license
496158
- * Copyright Google LLC All Rights Reserved.
496159
- *
496160
- * Use of this source code is governed by an MIT-style license that can be
496161
- * found in the LICENSE file at https://angular.io/license
496162
- *)
496163
-
496164
- @angular-devkit/schematics/src/exception/exception.js:
496165
- (**
496166
- * @license
496167
- * Copyright Google LLC All Rights Reserved.
496168
- *
496169
- * Use of this source code is governed by an MIT-style license that can be
496170
- * found in the LICENSE file at https://angular.io/license
496171
- *)
496172
-
496173
- @angular-devkit/schematics/src/tree/delegate.js:
496174
- (**
496175
- * @license
496176
- * Copyright Google LLC All Rights Reserved.
496177
- *
496178
- * Use of this source code is governed by an MIT-style license that can be
496179
- * found in the LICENSE file at https://angular.io/license
496180
- *)
496181
-
496182
- @angular-devkit/schematics/src/tree/entry.js:
496183
- (**
496184
- * @license
496185
- * Copyright Google LLC All Rights Reserved.
496186
- *
496187
- * Use of this source code is governed by an MIT-style license that can be
496188
- * found in the LICENSE file at https://angular.io/license
496189
- *)
496190
-
496191
- @angular-devkit/schematics/src/utility/update-buffer.js:
496192
- (**
496193
- * @license
496194
- * Copyright Google LLC All Rights Reserved.
496195
- *
496196
- * Use of this source code is governed by an MIT-style license that can be
496197
- * found in the LICENSE file at https://angular.io/license
496198
- *)
496199
-
496200
- @angular-devkit/schematics/src/tree/recorder.js:
496201
- (**
496202
- * @license
496203
- * Copyright Google LLC All Rights Reserved.
496204
- *
496205
- * Use of this source code is governed by an MIT-style license that can be
496206
- * found in the LICENSE file at https://angular.io/license
496207
- *)
496208
-
496209
- @angular-devkit/schematics/src/tree/scoped.js:
496210
- (**
496211
- * @license
496212
- * Copyright Google LLC All Rights Reserved.
496213
- *
496214
- * Use of this source code is governed by an MIT-style license that can be
496215
- * found in the LICENSE file at https://angular.io/license
496216
- *)
496217
-
496218
- @angular-devkit/schematics/src/tree/host-tree.js:
496219
- (**
496220
- * @license
496221
- * Copyright Google LLC All Rights Reserved.
496222
- *
496223
- * Use of this source code is governed by an MIT-style license that can be
496224
- * found in the LICENSE file at https://angular.io/license
496225
- *)
496226
-
496227
- @angular-devkit/schematics/src/tree/static.js:
496228
- (**
496229
- * @license
496230
- * Copyright Google LLC All Rights Reserved.
496231
- *
496232
- * Use of this source code is governed by an MIT-style license that can be
496233
- * found in the LICENSE file at https://angular.io/license
496234
- *)
496235
-
496236
- @angular-devkit/schematics/src/tree/null.js:
496237
- (**
496238
- * @license
496239
- * Copyright Google LLC All Rights Reserved.
496240
- *
496241
- * Use of this source code is governed by an MIT-style license that can be
496242
- * found in the LICENSE file at https://angular.io/license
496243
- *)
496244
-
496245
- @angular-devkit/schematics/src/rules/call.js:
496246
- (**
496247
- * @license
496248
- * Copyright Google LLC All Rights Reserved.
496249
- *
496250
- * Use of this source code is governed by an MIT-style license that can be
496251
- * found in the LICENSE file at https://angular.io/license
496252
- *)
496253
-
496254
- @angular-devkit/schematics/src/engine/schematic.js:
496255
- (**
496256
- * @license
496257
- * Copyright Google LLC All Rights Reserved.
496258
- *
496259
- * Use of this source code is governed by an MIT-style license that can be
496260
- * found in the LICENSE file at https://angular.io/license
496261
- *)
496262
-
496263
- @angular-devkit/schematics/src/engine/engine.js:
496264
- (**
496265
- * @license
496266
- * Copyright Google LLC All Rights Reserved.
496267
- *
496268
- * Use of this source code is governed by an MIT-style license that can be
496269
- * found in the LICENSE file at https://angular.io/license
496270
- *)
496271
-
496272
- @angular-devkit/schematics/src/engine/interface.js:
496273
- (**
496274
- * @license
496275
- * Copyright Google LLC All Rights Reserved.
496276
- *
496277
- * Use of this source code is governed by an MIT-style license that can be
496278
- * found in the LICENSE file at https://angular.io/license
496279
- *)
496280
-
496281
- @angular-devkit/schematics/src/engine/index.js:
496282
- (**
496283
- * @license
496284
- * Copyright Google LLC All Rights Reserved.
496285
- *
496286
- * Use of this source code is governed by an MIT-style license that can be
496287
- * found in the LICENSE file at https://angular.io/license
496288
- *)
496289
-
496290
- @angular-devkit/core/node/cli-logger.js:
496291
- (**
496292
- * @license
496293
- * Copyright Google LLC All Rights Reserved.
496294
- *
496295
- * Use of this source code is governed by an MIT-style license that can be
496296
- * found in the LICENSE file at https://angular.io/license
496297
- *)
496298
-
496299
- normalize-path/index.js:
496300
- (*!
496301
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
496302
- *
496303
- * Copyright (c) 2014-2018, Jon Schlinkert.
496304
- * Released under the MIT License.
496305
- *)
496306
-
496307
- is-extglob/index.js:
496308
- (*!
496309
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
496310
- *
496311
- * Copyright (c) 2014-2016, Jon Schlinkert.
496312
- * Licensed under the MIT License.
496313
- *)
496314
-
496315
- is-glob/index.js:
496316
- (*!
496317
- * is-glob <https://github.com/jonschlinkert/is-glob>
496318
- *
496319
- * Copyright (c) 2014-2017, Jon Schlinkert.
496320
- * Released under the MIT License.
496321
- *)
496322
-
496323
- is-number/index.js:
496324
- (*!
496325
- * is-number <https://github.com/jonschlinkert/is-number>
496326
- *
496327
- * Copyright (c) 2014-present, Jon Schlinkert.
496328
- * Released under the MIT License.
496329
- *)
496330
-
496331
- to-regex-range/index.js:
496332
- (*!
496333
- * to-regex-range <https://github.com/micromatch/to-regex-range>
496334
- *
496335
- * Copyright (c) 2015-present, Jon Schlinkert.
496336
- * Released under the MIT License.
496337
- *)
496338
-
496339
- fill-range/index.js:
496340
- (*!
496341
- * fill-range <https://github.com/jonschlinkert/fill-range>
496342
- *
496343
- * Copyright (c) 2014-present, Jon Schlinkert.
496344
- * Licensed under the MIT License.
496345
- *)
496346
-
496347
- @angular-devkit/core/node/host.js:
496348
- (**
496349
- * @license
496350
- * Copyright Google LLC All Rights Reserved.
496351
- *
496352
- * Use of this source code is governed by an MIT-style license that can be
496353
- * found in the LICENSE file at https://angular.io/license
496354
- *)
496355
-
496356
- @angular-devkit/core/node/index.js:
496357
- (**
496358
- * @license
496359
- * Copyright Google LLC All Rights Reserved.
496360
- *
496361
- * Use of this source code is governed by an MIT-style license that can be
496362
- * found in the LICENSE file at https://angular.io/license
496363
- *)
496364
-
496365
- @angular-devkit/schematics/src/tree/action.js:
496366
- (**
496367
- * @license
496368
- * Copyright Google LLC All Rights Reserved.
496369
- *
496370
- * Use of this source code is governed by an MIT-style license that can be
496371
- * found in the LICENSE file at https://angular.io/license
496372
- *)
496373
-
496374
- @angular-devkit/schematics/src/sink/sink.js:
496375
- (**
496376
- * @license
496377
- * Copyright Google LLC All Rights Reserved.
496378
- *
496379
- * Use of this source code is governed by an MIT-style license that can be
496380
- * found in the LICENSE file at https://angular.io/license
496381
- *)
496382
-
496383
- @angular-devkit/schematics/src/sink/host.js:
496384
- (**
496385
- * @license
496386
- * Copyright Google LLC All Rights Reserved.
496387
- *
496388
- * Use of this source code is governed by an MIT-style license that can be
496389
- * found in the LICENSE file at https://angular.io/license
496390
- *)
496391
-
496392
- @angular-devkit/schematics/src/sink/dryrun.js:
496393
- (**
496394
- * @license
496395
- * Copyright Google LLC All Rights Reserved.
496396
- *
496397
- * Use of this source code is governed by an MIT-style license that can be
496398
- * found in the LICENSE file at https://angular.io/license
496399
- *)
496400
-
496401
- @angular-devkit/schematics/src/workflow/base.js:
496402
- (**
496403
- * @license
496404
- * Copyright Google LLC All Rights Reserved.
496405
- *
496406
- * Use of this source code is governed by an MIT-style license that can be
496407
- * found in the LICENSE file at https://angular.io/license
496408
- *)
496409
-
496410
- @angular-devkit/schematics/src/workflow/interface.js:
496411
- (**
496412
- * @license
496413
- * Copyright Google LLC All Rights Reserved.
496414
- *
496415
- * Use of this source code is governed by an MIT-style license that can be
496416
- * found in the LICENSE file at https://angular.io/license
496417
- *)
496418
-
496419
- @angular-devkit/schematics/src/workflow/index.js:
496420
- (**
496421
- * @license
496422
- * Copyright Google LLC All Rights Reserved.
496423
- *
496424
- * Use of this source code is governed by an MIT-style license that can be
496425
- * found in the LICENSE file at https://angular.io/license
496426
- *)
496427
-
496428
- @angular-devkit/schematics/src/rules/base.js:
496429
- (**
496430
- * @license
496431
- * Copyright Google LLC All Rights Reserved.
496432
- *
496433
- * Use of this source code is governed by an MIT-style license that can be
496434
- * found in the LICENSE file at https://angular.io/license
496435
- *)
496436
-
496437
- @angular-devkit/schematics/src/rules/move.js:
496438
- (**
496439
- * @license
496440
- * Copyright Google LLC All Rights Reserved.
496441
- *
496442
- * Use of this source code is governed by an MIT-style license that can be
496443
- * found in the LICENSE file at https://angular.io/license
496444
- *)
496445
-
496446
- @angular-devkit/schematics/src/rules/random.js:
496447
- (**
496448
- * @license
496449
- * Copyright Google LLC All Rights Reserved.
496450
- *
496451
- * Use of this source code is governed by an MIT-style license that can be
496452
- * found in the LICENSE file at https://angular.io/license
496453
- *)
496454
-
496455
- @angular-devkit/schematics/src/rules/schematic.js:
496456
- (**
496457
- * @license
496458
- * Copyright Google LLC All Rights Reserved.
496459
- *
496460
- * Use of this source code is governed by an MIT-style license that can be
496461
- * found in the LICENSE file at https://angular.io/license
496462
- *)
496463
-
496464
- @angular-devkit/schematics/src/rules/template.js:
496465
- (**
496466
- * @license
496467
- * Copyright Google LLC All Rights Reserved.
496468
- *
496469
- * Use of this source code is governed by an MIT-style license that can be
496470
- * found in the LICENSE file at https://angular.io/license
496471
- *)
496472
-
496473
- @angular-devkit/schematics/src/rules/url.js:
496474
- (**
496475
- * @license
496476
- * Copyright Google LLC All Rights Reserved.
496477
- *
496478
- * Use of this source code is governed by an MIT-style license that can be
496479
- * found in the LICENSE file at https://angular.io/license
496480
- *)
496481
-
496482
- @angular-devkit/schematics/src/tree/empty.js:
496483
- (**
496484
- * @license
496485
- * Copyright Google LLC All Rights Reserved.
496486
- *
496487
- * Use of this source code is governed by an MIT-style license that can be
496488
- * found in the LICENSE file at https://angular.io/license
496489
- *)
496490
-
496491
- @angular-devkit/schematics/src/index.js:
496492
- (**
496493
- * @license
496494
- * Copyright Google LLC All Rights Reserved.
496495
- *
496496
- * Use of this source code is governed by an MIT-style license that can be
496497
- * found in the LICENSE file at https://angular.io/license
496498
- *)
496499
-
496500
- @angular-devkit/schematics/tasks/package-manager/options.js:
496501
- (**
496502
- * @license
496503
- * Copyright Google LLC All Rights Reserved.
496504
- *
496505
- * Use of this source code is governed by an MIT-style license that can be
496506
- * found in the LICENSE file at https://angular.io/license
496507
- *)
496508
-
496509
- @angular-devkit/schematics/tasks/repo-init/options.js:
496510
- (**
496511
- * @license
496512
- * Copyright Google LLC All Rights Reserved.
496513
- *
496514
- * Use of this source code is governed by an MIT-style license that can be
496515
- * found in the LICENSE file at https://angular.io/license
496516
- *)
496517
-
496518
- @angular-devkit/schematics/tasks/run-schematic/options.js:
496519
- (**
496520
- * @license
496521
- * Copyright Google LLC All Rights Reserved.
496522
- *
496523
- * Use of this source code is governed by an MIT-style license that can be
496524
- * found in the LICENSE file at https://angular.io/license
496525
- *)
496526
-
496527
- safe-buffer/index.js:
496528
- (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
496529
-
496530
- @angular-devkit/schematics/tasks/package-manager/executor.js:
496531
- (**
496532
- * @license
496533
- * Copyright Google LLC All Rights Reserved.
496534
- *
496535
- * Use of this source code is governed by an MIT-style license that can be
496536
- * found in the LICENSE file at https://angular.io/license
496537
- *)
496538
-
496539
- @angular-devkit/schematics/tasks/repo-init/executor.js:
496540
- (**
496541
- * @license
496542
- * Copyright Google LLC All Rights Reserved.
496543
- *
496544
- * Use of this source code is governed by an MIT-style license that can be
496545
- * found in the LICENSE file at https://angular.io/license
496546
- *)
496547
-
496548
- @angular-devkit/schematics/tasks/run-schematic/executor.js:
496549
- (**
496550
- * @license
496551
- * Copyright Google LLC All Rights Reserved.
496552
- *
496553
- * Use of this source code is governed by an MIT-style license that can be
496554
- * found in the LICENSE file at https://angular.io/license
496555
- *)
496556
-
496557
- @angular-devkit/schematics/tasks/node/index.js:
496558
- (**
496559
- * @license
496560
- * Copyright Google LLC All Rights Reserved.
496561
- *
496562
- * Use of this source code is governed by an MIT-style license that can be
496563
- * found in the LICENSE file at https://angular.io/license
496564
- *)
496565
-
496566
- @angular-devkit/schematics/tools/description.js:
496567
- (**
496568
- * @license
496569
- * Copyright Google LLC All Rights Reserved.
496570
- *
496571
- * Use of this source code is governed by an MIT-style license that can be
496572
- * found in the LICENSE file at https://angular.io/license
496573
- *)
496574
-
496575
- @angular-devkit/schematics/tools/export-ref.js:
496576
- (**
496577
- * @license
496578
- * Copyright Google LLC All Rights Reserved.
496579
- *
496580
- * Use of this source code is governed by an MIT-style license that can be
496581
- * found in the LICENSE file at https://angular.io/license
496582
- *)
496583
-
496584
- @angular-devkit/schematics/tools/file-system-utility.js:
496585
- (**
496586
- * @license
496587
- * Copyright Google LLC All Rights Reserved.
496588
- *
496589
- * Use of this source code is governed by an MIT-style license that can be
496590
- * found in the LICENSE file at https://angular.io/license
496591
- *)
496592
-
496593
- @angular-devkit/schematics/tools/file-system-engine-host-base.js:
496594
- (**
496595
- * @license
496596
- * Copyright Google LLC All Rights Reserved.
496597
- *
496598
- * Use of this source code is governed by an MIT-style license that can be
496599
- * found in the LICENSE file at https://angular.io/license
496600
- *)
496601
-
496602
- @angular-devkit/schematics/tools/node-module-engine-host.js:
496603
- (**
496604
- * @license
496605
- * Copyright Google LLC All Rights Reserved.
496606
- *
496607
- * Use of this source code is governed by an MIT-style license that can be
496608
- * found in the LICENSE file at https://angular.io/license
496609
- *)
496610
-
496611
- @angular-devkit/schematics/tools/schema-option-transform.js:
496612
- (**
496613
- * @license
496614
- * Copyright Google LLC All Rights Reserved.
496615
- *
496616
- * Use of this source code is governed by an MIT-style license that can be
496617
- * found in the LICENSE file at https://angular.io/license
496618
- *)
496619
-
496620
- @angular-devkit/schematics/tools/workflow/node-workflow.js:
496621
- (**
496622
- * @license
496623
- * Copyright Google LLC All Rights Reserved.
496624
- *
496625
- * Use of this source code is governed by an MIT-style license that can be
496626
- * found in the LICENSE file at https://angular.io/license
496627
- *)
496628
-
496629
- @angular-devkit/schematics/tools/file-system-engine-host.js:
496630
- (**
496631
- * @license
496632
- * Copyright Google LLC All Rights Reserved.
496633
- *
496634
- * Use of this source code is governed by an MIT-style license that can be
496635
- * found in the LICENSE file at https://angular.io/license
496636
- *)
496637
-
496638
- @angular-devkit/schematics/tools/node-modules-test-engine-host.js:
496639
- (**
496640
- * @license
496641
- * Copyright Google LLC All Rights Reserved.
496642
- *
496643
- * Use of this source code is governed by an MIT-style license that can be
496644
- * found in the LICENSE file at https://angular.io/license
496645
- *)
496646
-
496647
- @angular-devkit/schematics/tools/index.js:
496648
- (**
496649
- * @license
496650
- * Copyright Google LLC All Rights Reserved.
496651
- *
496652
- * Use of this source code is governed by an MIT-style license that can be
496653
- * found in the LICENSE file at https://angular.io/license
496654
- *)
496655
-
496656
- @angular-devkit/schematics/testing/schematic-test-runner.js:
496657
- (**
496658
- * @license
496659
- * Copyright Google LLC All Rights Reserved.
496660
- *
496661
- * Use of this source code is governed by an MIT-style license that can be
496662
- * found in the LICENSE file at https://angular.io/license
496663
- *)
496664
-
496665
- @angular-devkit/schematics/testing/index.js:
496666
- (**
496667
- * @license
496668
- * Copyright Google LLC All Rights Reserved.
496669
- *
496670
- * Use of this source code is governed by an MIT-style license that can be
496671
- * found in the LICENSE file at https://angular.io/license
496672
- *)
496673
-
496674
- @angular-devkit/architect/src/jobs/api.js:
496675
- (**
496676
- * @license
496677
- * Copyright Google LLC All Rights Reserved.
496678
- *
496679
- * Use of this source code is governed by an MIT-style license that can be
496680
- * found in the LICENSE file at https://angular.io/license
496681
- *)
496682
-
496683
- @angular-devkit/architect/src/jobs/strategy.js:
496684
- (**
496685
- * @license
496686
- * Copyright Google LLC All Rights Reserved.
496687
- *
496688
- * Use of this source code is governed by an MIT-style license that can be
496689
- * found in the LICENSE file at https://angular.io/license
496690
- *)
496691
-
496692
- @angular-devkit/architect/src/jobs/create-job-handler.js:
496693
- (**
496694
- * @license
496695
- * Copyright Google LLC All Rights Reserved.
496696
- *
496697
- * Use of this source code is governed by an MIT-style license that can be
496698
- * found in the LICENSE file at https://angular.io/license
496699
- *)
496700
-
496701
- @angular-devkit/architect/src/jobs/exception.js:
496702
- (**
496703
- * @license
496704
- * Copyright Google LLC All Rights Reserved.
496705
- *
496706
- * Use of this source code is governed by an MIT-style license that can be
496707
- * found in the LICENSE file at https://angular.io/license
496708
- *)
496709
-
496710
- @angular-devkit/architect/src/jobs/dispatcher.js:
496711
- (**
496712
- * @license
496713
- * Copyright Google LLC All Rights Reserved.
496714
- *
496715
- * Use of this source code is governed by an MIT-style license that can be
496716
- * found in the LICENSE file at https://angular.io/license
496717
- *)
496718
-
496719
- @angular-devkit/architect/src/jobs/fallback-registry.js:
496720
- (**
496721
- * @license
496722
- * Copyright Google LLC All Rights Reserved.
496723
- *
496724
- * Use of this source code is governed by an MIT-style license that can be
496725
- * found in the LICENSE file at https://angular.io/license
496726
- *)
496727
-
496728
- @angular-devkit/architect/src/jobs/simple-registry.js:
496729
- (**
496730
- * @license
496731
- * Copyright Google LLC All Rights Reserved.
496732
- *
496733
- * Use of this source code is governed by an MIT-style license that can be
496734
- * found in the LICENSE file at https://angular.io/license
496735
- *)
496736
-
496737
- @angular-devkit/architect/src/jobs/simple-scheduler.js:
496738
- (**
496739
- * @license
496740
- * Copyright Google LLC All Rights Reserved.
496741
- *
496742
- * Use of this source code is governed by an MIT-style license that can be
496743
- * found in the LICENSE file at https://angular.io/license
496744
- *)
496745
-
496746
- @angular-devkit/architect/src/jobs/index.js:
496747
- (**
496748
- * @license
496749
- * Copyright Google LLC All Rights Reserved.
496750
- *
496751
- * Use of this source code is governed by an MIT-style license that can be
496752
- * found in the LICENSE file at https://angular.io/license
496753
- *)
496754
-
496755
- @angular-devkit/architect/src/api.js:
496756
- (**
496757
- * @license
496758
- * Copyright Google LLC All Rights Reserved.
496759
- *
496760
- * Use of this source code is governed by an MIT-style license that can be
496761
- * found in the LICENSE file at https://angular.io/license
496762
- *)
496763
-
496764
- @angular-devkit/architect/src/schedule-by-name.js:
496765
- (**
496766
- * @license
496767
- * Copyright Google LLC All Rights Reserved.
496768
- *
496769
- * Use of this source code is governed by an MIT-style license that can be
496770
- * found in the LICENSE file at https://angular.io/license
496771
- *)
496772
-
496773
- @angular-devkit/architect/src/architect.js:
496774
- (**
496775
- * @license
496776
- * Copyright Google LLC All Rights Reserved.
496777
- *
496778
- * Use of this source code is governed by an MIT-style license that can be
496779
- * found in the LICENSE file at https://angular.io/license
496780
- *)
496781
-
496782
- @angular-devkit/architect/src/internal.js:
496783
- (**
496784
- * @license
496785
- * Copyright Google LLC All Rights Reserved.
496786
- *
496787
- * Use of this source code is governed by an MIT-style license that can be
496788
- * found in the LICENSE file at https://angular.io/license
496789
- *)
496790
-
496791
- @angular-devkit/architect/src/create-builder.js:
496792
- (**
496793
- * @license
496794
- * Copyright Google LLC All Rights Reserved.
496795
- *
496796
- * Use of this source code is governed by an MIT-style license that can be
496797
- * found in the LICENSE file at https://angular.io/license
496798
- *)
496799
-
496800
- @angular-devkit/architect/src/index.js:
496801
- (**
496802
- * @license
496803
- * Copyright Google LLC All Rights Reserved.
496804
- *
496805
- * Use of this source code is governed by an MIT-style license that can be
496806
- * found in the LICENSE file at https://angular.io/license
496807
- *)
496808
-
496809
- queue-microtask/index.js:
496810
- (*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
496811
-
496812
- run-parallel/index.js:
496813
- (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
496814
-
496815
- rollup/dist/shared/parseAst.js:
496816
- (*
496817
- @license
496818
- Rollup.js v4.10.0
496819
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496820
-
496821
- https://github.com/rollup/rollup
496822
-
496823
- Released under the MIT License.
496824
- *)
496825
-
496826
- rollup/dist/shared/rollup.js:
496827
- (*
496828
- @license
496829
- Rollup.js v4.10.0
496830
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496831
-
496832
- https://github.com/rollup/rollup
496833
-
496834
- Released under the MIT License.
496835
- *)
496836
-
496837
- rollup/dist/shared/fsevents-importer.js:
496838
- (*
496839
- @license
496840
- Rollup.js v4.10.0
496841
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496842
-
496843
- https://github.com/rollup/rollup
496844
-
496845
- Released under the MIT License.
496846
- *)
496847
-
496848
- rollup/dist/shared/index.js:
496849
- (*
496850
- @license
496851
- Rollup.js v4.10.0
496852
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496853
-
496854
- https://github.com/rollup/rollup
496855
-
496856
- Released under the MIT License.
496857
- *)
496858
- (*!
496859
- * normalize-path <https://github.com/jonschlinkert/normalize-path>
496860
- *
496861
- * Copyright (c) 2014-2018, Jon Schlinkert.
496862
- * Released under the MIT License.
496863
- *)
496864
- (*!
496865
- * is-extglob <https://github.com/jonschlinkert/is-extglob>
496866
- *
496867
- * Copyright (c) 2014-2016, Jon Schlinkert.
496868
- * Licensed under the MIT License.
496869
- *)
496870
- (*!
496871
- * is-glob <https://github.com/jonschlinkert/is-glob>
496872
- *
496873
- * Copyright (c) 2014-2017, Jon Schlinkert.
496874
- * Released under the MIT License.
496875
- *)
496876
- (*!
496877
- * is-number <https://github.com/jonschlinkert/is-number>
496878
- *
496879
- * Copyright (c) 2014-present, Jon Schlinkert.
496880
- * Released under the MIT License.
496881
- *)
496882
- (*!
496883
- * to-regex-range <https://github.com/micromatch/to-regex-range>
496884
- *
496885
- * Copyright (c) 2015-present, Jon Schlinkert.
496886
- * Released under the MIT License.
496887
- *)
496888
- (*!
496889
- * fill-range <https://github.com/jonschlinkert/fill-range>
496890
- *
496891
- * Copyright (c) 2014-present, Jon Schlinkert.
496892
- * Licensed under the MIT License.
496893
- *)
496894
-
496895
- rollup/dist/shared/watch.js:
496896
- (*
496897
- @license
496898
- Rollup.js v4.10.0
496899
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496900
-
496901
- https://github.com/rollup/rollup
496902
-
496903
- Released under the MIT License.
496904
- *)
496905
-
496906
- rollup/dist/rollup.js:
496907
- (*
496908
- @license
496909
- Rollup.js v4.10.0
496910
- Sat, 10 Feb 2024 05:58:12 GMT - commit 762420860765e8e46e24d48b38f5b98ca31735fa
496911
-
496912
- https://github.com/rollup/rollup
496913
-
496914
- Released under the MIT License.
496915
- *)
496916
- */