@storm-software/workspace-tools 1.60.8 → 1.60.9

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.
package/index.js CHANGED
@@ -1,4 +1,3 @@
1
- const require = (await import('node:module')).createRequire(import.meta.url);
2
1
  var __create = Object.create;
3
2
  var __defProp = Object.defineProperty;
4
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -9966,20 +9965,6 @@ var require_source_map_support = __commonJS({
9966
9965
  var require_typescript = __commonJS({
9967
9966
  "node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
9968
9967
  "use strict";
9969
- /*! *****************************************************************************
9970
- Copyright (c) Microsoft Corporation. All rights reserved.
9971
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
9972
- this file except in compliance with the License. You may obtain a copy of the
9973
- License at http://www.apache.org/licenses/LICENSE-2.0
9974
-
9975
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
9976
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9977
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
9978
- MERCHANTABLITY OR NON-INFRINGEMENT.
9979
-
9980
- See the Apache Version 2.0 License for specific language governing permissions
9981
- and limitations under the License.
9982
- ***************************************************************************** */
9983
9968
  var ts9 = (() => {
9984
9969
  var __defProp4 = Object.defineProperty;
9985
9970
  var __getOwnPropNames3 = Object.getOwnPropertyNames;
@@ -210466,7 +210451,6 @@ ${error.message}`;
210466
210451
  exports2.loadYaml = loadYaml2;
210467
210452
  var typescript;
210468
210453
  var loadTsSync = function loadTsSync2(filepath, content) {
210469
- /* istanbul ignore next -- @preserve */
210470
210454
  if (typescript === void 0) {
210471
210455
  typescript = require_typescript();
210472
210456
  }
@@ -210778,7 +210762,6 @@ var require_util3 = __commonJS({
210778
210762
  return Object.fromEntries(Object.entries(options8).filter(([, value]) => value !== void 0));
210779
210763
  }
210780
210764
  exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
210781
- /* istanbul ignore next -- @preserve */
210782
210765
  async function isDirectory2(path15) {
210783
210766
  try {
210784
210767
  const stat2 = await fs_1.promises.stat(path15);
@@ -210791,7 +210774,6 @@ var require_util3 = __commonJS({
210791
210774
  }
210792
210775
  }
210793
210776
  exports2.isDirectory = isDirectory2;
210794
- /* istanbul ignore next -- @preserve */
210795
210777
  function isDirectorySync(path15) {
210796
210778
  try {
210797
210779
  const stat2 = fs_1.default.statSync(path15);
@@ -210908,7 +210890,6 @@ ${[...importStack, fullPath].map((path15, i3) => `${i3 + 1}. ${path15}`).join("\
210908
210890
  let currentDir = startDir;
210909
210891
  while (currentDir !== stopDir) {
210910
210892
  const parentDir = path_1.default.dirname(currentDir);
210911
- /* istanbul ignore if -- @preserve */
210912
210893
  if (parentDir === currentDir) {
210913
210894
  break;
210914
210895
  }
@@ -210920,7 +210901,6 @@ ${[...importStack, fullPath].map((path15, i3) => `${i3 + 1}. ${path15}`).join("\
210920
210901
  };
210921
210902
  exports2.ExplorerBase = ExplorerBase;
210922
210903
  function getExtensionDescription(extension) {
210923
- /* istanbul ignore next -- @preserve */
210924
210904
  return extension ? `extension "${extension}"` : "files without extensions";
210925
210905
  }
210926
210906
  exports2.getExtensionDescription = getExtensionDescription;
@@ -211001,13 +210981,11 @@ var require_Explorer = __commonJS({
211001
210981
  from = path_1.default.resolve(from);
211002
210982
  const dirs = this.#getDirs(from);
211003
210983
  const firstDirIter = await dirs.next();
211004
- /* istanbul ignore if -- @preserve */
211005
210984
  if (firstDirIter.done) {
211006
210985
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211007
210986
  }
211008
210987
  let currentDir = firstDirIter.value;
211009
210988
  const search = async () => {
211010
- /* istanbul ignore if -- @preserve */
211011
210989
  if (await (0, util_js_1.isDirectory)(currentDir.path)) {
211012
210990
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
211013
210991
  try {
@@ -211106,7 +211084,6 @@ var require_Explorer = __commonJS({
211106
211084
  }
211107
211085
  }
211108
211086
  const parentDir = path_1.default.dirname(currentDir);
211109
- /* istanbul ignore if -- @preserve */
211110
211087
  if (parentDir === currentDir) {
211111
211088
  break;
211112
211089
  }
@@ -211162,13 +211139,11 @@ var require_ExplorerSync = __commonJS({
211162
211139
  from = path_1.default.resolve(from);
211163
211140
  const dirs = this.#getDirs(from);
211164
211141
  const firstDirIter = dirs.next();
211165
- /* istanbul ignore if -- @preserve */
211166
211142
  if (firstDirIter.done) {
211167
211143
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211168
211144
  }
211169
211145
  let currentDir = firstDirIter.value;
211170
211146
  const search = () => {
211171
- /* istanbul ignore if -- @preserve */
211172
211147
  if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
211173
211148
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
211174
211149
  try {
@@ -211267,7 +211242,6 @@ var require_ExplorerSync = __commonJS({
211267
211242
  }
211268
211243
  }
211269
211244
  const parentDir = path_1.default.dirname(currentDir);
211270
- /* istanbul ignore if -- @preserve */
211271
211245
  if (parentDir === currentDir) {
211272
211246
  break;
211273
211247
  }
@@ -335138,13 +335112,6 @@ var require_package2 = __commonJS({
335138
335112
  var require_ejs = __commonJS({
335139
335113
  "node_modules/.pnpm/ejs@3.1.9/node_modules/ejs/lib/ejs.js"(exports2) {
335140
335114
  "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
- */
335148
335115
  var fs7 = require("fs");
335149
335116
  var path15 = require("path");
335150
335117
  var utils2 = require_utils5();
@@ -340894,13 +340861,6 @@ var require_rimraf = __commonJS({
340894
340861
  // node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js
340895
340862
  var require_tmp = __commonJS({
340896
340863
  "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
- */
340904
340864
  var fs7 = require("fs");
340905
340865
  var os6 = require("os");
340906
340866
  var path15 = require("path");
@@ -342291,13 +342251,6 @@ var require_offset_from_root = __commonJS({
342291
342251
  var require_utils6 = __commonJS({
342292
342252
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/utils.js"(exports2) {
342293
342253
  "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
- */
342301
342254
  Object.defineProperty(exports2, "__esModule", { value: true });
342302
342255
  exports2.isJsonArray = exports2.isJsonObject = void 0;
342303
342256
  function isJsonObject(value) {
@@ -342315,13 +342268,6 @@ var require_utils6 = __commonJS({
342315
342268
  var require_utility = __commonJS({
342316
342269
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/utility.js"(exports2) {
342317
342270
  "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
- */
342325
342271
  Object.defineProperty(exports2, "__esModule", { value: true });
342326
342272
  exports2.getTypesOfSchema = void 0;
342327
342273
  var utils_1 = require_utils6();
@@ -342402,13 +342348,6 @@ var require_utility = __commonJS({
342402
342348
  var require_transforms = __commonJS({
342403
342349
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/transforms.js"(exports2) {
342404
342350
  "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
- */
342412
342351
  Object.defineProperty(exports2, "__esModule", { value: true });
342413
342352
  exports2.addUndefinedDefaults = void 0;
342414
342353
  var utils_1 = require_utils6();
@@ -342487,13 +342426,6 @@ var require_transforms = __commonJS({
342487
342426
  var require_interface = __commonJS({
342488
342427
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/interface.js"(exports2) {
342489
342428
  "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
- */
342497
342429
  Object.defineProperty(exports2, "__esModule", { value: true });
342498
342430
  }
342499
342431
  });
@@ -342502,13 +342434,6 @@ var require_interface = __commonJS({
342502
342434
  var require_pointer = __commonJS({
342503
342435
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/pointer.js"(exports2) {
342504
342436
  "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
- */
342512
342437
  Object.defineProperty(exports2, "__esModule", { value: true });
342513
342438
  exports2.parseJsonPointer = exports2.joinJsonPointer = exports2.buildJsonPointer = void 0;
342514
342439
  function buildJsonPointer(fragments) {
@@ -345612,7 +345537,6 @@ var require_data = __commonJS({
345612
345537
  // node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js
345613
345538
  var require_uri_all = __commonJS({
345614
345539
  "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 */
345616
345540
  (function(global2, factory) {
345617
345541
  typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : factory(global2.URI = global2.URI || {});
345618
345542
  })(exports2, function(exports3) {
@@ -359178,13 +359102,6 @@ var require_cjs = __commonJS({
359178
359102
  var require_exception2 = __commonJS({
359179
359103
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/exception.js"(exports2) {
359180
359104
  "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
- */
359188
359105
  Object.defineProperty(exports2, "__esModule", { value: true });
359189
359106
  exports2.PathIsFileException = exports2.PathIsDirectoryException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.UnknownException = exports2.BaseException = void 0;
359190
359107
  var BaseException = class extends Error {
@@ -359230,13 +359147,6 @@ var require_exception2 = __commonJS({
359230
359147
  var require_literals = __commonJS({
359231
359148
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/literals.js"(exports2) {
359232
359149
  "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
- */
359240
359150
  Object.defineProperty(exports2, "__esModule", { value: true });
359241
359151
  exports2.trimNewlines = exports2.stripIndents = exports2.stripIndent = exports2.indentBy = exports2.oneLine = void 0;
359242
359152
  function oneLine(strings, ...values) {
@@ -359281,13 +359191,6 @@ var require_literals = __commonJS({
359281
359191
  var require_strings = __commonJS({
359282
359192
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/strings.js"(exports2) {
359283
359193
  "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
- */
359291
359194
  Object.defineProperty(exports2, "__esModule", { value: true });
359292
359195
  exports2.levenshtein = exports2.capitalize = exports2.underscore = exports2.classify = exports2.camelize = exports2.dasherize = exports2.decamelize = void 0;
359293
359196
  var STRING_DASHERIZE_REGEXP = /[ _]/g;
@@ -359360,13 +359263,6 @@ var require_strings = __commonJS({
359360
359263
  var require_object = __commonJS({
359361
359264
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/object.js"(exports2) {
359362
359265
  "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
- */
359370
359266
  Object.defineProperty(exports2, "__esModule", { value: true });
359371
359267
  exports2.deepCopy = void 0;
359372
359268
  var copySymbol = Symbol();
@@ -361718,13 +361614,6 @@ var require_source_map2 = __commonJS({
361718
361614
  var require_template = __commonJS({
361719
361615
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/template.js"(exports2) {
361720
361616
  "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
- */
361728
361617
  Object.defineProperty(exports2, "__esModule", { value: true });
361729
361618
  exports2.template = exports2.templateParser = void 0;
361730
361619
  var source_map_1 = require_source_map2();
@@ -361939,13 +361828,6 @@ var require_template = __commonJS({
361939
361828
  var require_partially_ordered_set = __commonJS({
361940
361829
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/partially-ordered-set.js"(exports2) {
361941
361830
  "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
- */
361949
361831
  Object.defineProperty(exports2, "__esModule", { value: true });
361950
361832
  exports2.PartiallyOrderedSet = exports2.CircularDependencyFoundException = exports2.DependencyNotFoundException = void 0;
361951
361833
  var exception_1 = require_exception2();
@@ -362080,13 +361962,6 @@ var require_partially_ordered_set = __commonJS({
362080
361962
  var require_priority_queue = __commonJS({
362081
361963
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/priority-queue.js"(exports2) {
362082
361964
  "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
- */
362090
361965
  Object.defineProperty(exports2, "__esModule", { value: true });
362091
361966
  exports2.PriorityQueue = void 0;
362092
361967
  var PriorityQueue = class {
@@ -362133,13 +362008,6 @@ var require_priority_queue = __commonJS({
362133
362008
  var require_lang = __commonJS({
362134
362009
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/lang.js"(exports2) {
362135
362010
  "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
- */
362143
362011
  Object.defineProperty(exports2, "__esModule", { value: true });
362144
362012
  exports2.isPromise = void 0;
362145
362013
  function isPromise(obj) {
@@ -362153,13 +362021,6 @@ var require_lang = __commonJS({
362153
362021
  var require_utils7 = __commonJS({
362154
362022
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/index.js"(exports2) {
362155
362023
  "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
- */
362163
362024
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362164
362025
  if (k23 === void 0)
362165
362026
  k23 = k6;
@@ -362215,13 +362076,6 @@ var require_utils7 = __commonJS({
362215
362076
  var require_visitor = __commonJS({
362216
362077
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/visitor.js"(exports2) {
362217
362078
  "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
- */
362225
362079
  Object.defineProperty(exports2, "__esModule", { value: true });
362226
362080
  exports2.visitJsonSchema = exports2.visitJson = void 0;
362227
362081
  var rxjs_1 = require_cjs();
@@ -362342,13 +362196,6 @@ var require_visitor = __commonJS({
362342
362196
  var require_registry = __commonJS({
362343
362197
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/registry.js"(exports2) {
362344
362198
  "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
- */
362352
362199
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362353
362200
  if (k23 === void 0)
362354
362201
  k23 = k6;
@@ -362855,13 +362702,6 @@ var require_registry = __commonJS({
362855
362702
  var require_schema2 = __commonJS({
362856
362703
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/schema.js"(exports2) {
362857
362704
  "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
- */
362865
362705
  Object.defineProperty(exports2, "__esModule", { value: true });
362866
362706
  exports2.mergeSchemas = exports2.isJsonSchema = void 0;
362867
362707
  var utils_1 = require_utils6();
@@ -362901,13 +362741,6 @@ var require_schema2 = __commonJS({
362901
362741
  var require_schema3 = __commonJS({
362902
362742
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/index.js"(exports2) {
362903
362743
  "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
- */
362911
362744
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362912
362745
  if (k23 === void 0)
362913
362746
  k23 = k6;
@@ -362962,13 +362795,6 @@ var require_schema3 = __commonJS({
362962
362795
  var require_json3 = __commonJS({
362963
362796
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/index.js"(exports2) {
362964
362797
  "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
- */
362972
362798
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362973
362799
  if (k23 === void 0)
362974
362800
  k23 = k6;
@@ -363018,13 +362844,6 @@ var require_json3 = __commonJS({
363018
362844
  var require_logger = __commonJS({
363019
362845
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/logger.js"(exports2) {
363020
362846
  "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
- */
363028
362847
  Object.defineProperty(exports2, "__esModule", { value: true });
363029
362848
  exports2.Logger = void 0;
363030
362849
  var rxjs_1 = require_cjs();
@@ -363146,13 +362965,6 @@ var require_logger = __commonJS({
363146
362965
  var require_indent = __commonJS({
363147
362966
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/indent.js"(exports2) {
363148
362967
  "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
- */
363156
362968
  Object.defineProperty(exports2, "__esModule", { value: true });
363157
362969
  exports2.IndentLogger = void 0;
363158
362970
  var rxjs_1 = require_cjs();
@@ -363185,13 +362997,6 @@ var require_indent = __commonJS({
363185
362997
  var require_level = __commonJS({
363186
362998
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/level.js"(exports2) {
363187
362999
  "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
- */
363195
363000
  Object.defineProperty(exports2, "__esModule", { value: true });
363196
363001
  exports2.LevelCapLogger = exports2.LevelTransformLogger = void 0;
363197
363002
  var logger_1 = require_logger();
@@ -363241,13 +363046,6 @@ var require_level = __commonJS({
363241
363046
  var require_null_logger = __commonJS({
363242
363047
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/null-logger.js"(exports2) {
363243
363048
  "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
- */
363251
363049
  Object.defineProperty(exports2, "__esModule", { value: true });
363252
363050
  exports2.NullLogger = void 0;
363253
363051
  var rxjs_1 = require_cjs();
@@ -363283,13 +363081,6 @@ var require_null_logger = __commonJS({
363283
363081
  var require_transform_logger = __commonJS({
363284
363082
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/transform-logger.js"(exports2) {
363285
363083
  "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
- */
363293
363084
  Object.defineProperty(exports2, "__esModule", { value: true });
363294
363085
  exports2.TransformLogger = void 0;
363295
363086
  var logger_1 = require_logger();
@@ -363307,13 +363098,6 @@ var require_transform_logger = __commonJS({
363307
363098
  var require_logger2 = __commonJS({
363308
363099
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/index.js"(exports2) {
363309
363100
  "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
- */
363317
363101
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363318
363102
  if (k23 === void 0)
363319
363103
  k23 = k6;
@@ -363347,13 +363131,6 @@ var require_logger2 = __commonJS({
363347
363131
  var require_definitions = __commonJS({
363348
363132
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/definitions.js"(exports2) {
363349
363133
  "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
- */
363357
363134
  Object.defineProperty(exports2, "__esModule", { value: true });
363358
363135
  exports2.TargetDefinitionCollection = exports2.ProjectDefinitionCollection = void 0;
363359
363136
  var DefinitionCollection = class {
@@ -363520,13 +363297,6 @@ var require_definitions = __commonJS({
363520
363297
  var require_path2 = __commonJS({
363521
363298
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/path.js"(exports2) {
363522
363299
  "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
- */
363530
363300
  Object.defineProperty(exports2, "__esModule", { value: true });
363531
363301
  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;
363532
363302
  var exception_1 = require_exception2();
@@ -363730,13 +363500,6 @@ var require_path2 = __commonJS({
363730
363500
  var require_buffer2 = __commonJS({
363731
363501
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/buffer.js"(exports2) {
363732
363502
  "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
- */
363740
363503
  Object.defineProperty(exports2, "__esModule", { value: true });
363741
363504
  exports2.fileBuffer = exports2.fileBufferToString = exports2.stringToFileBuffer = void 0;
363742
363505
  var node_util_1 = require("node:util");
@@ -363762,13 +363525,6 @@ var require_buffer2 = __commonJS({
363762
363525
  var require_interface2 = __commonJS({
363763
363526
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/interface.js"(exports2) {
363764
363527
  "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
- */
363772
363528
  Object.defineProperty(exports2, "__esModule", { value: true });
363773
363529
  exports2.HostWatchEventType = void 0;
363774
363530
  var HostWatchEventType;
@@ -363785,13 +363541,6 @@ var require_interface2 = __commonJS({
363785
363541
  var require_memory = __commonJS({
363786
363542
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/memory.js"(exports2) {
363787
363543
  "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
- */
363795
363544
  Object.defineProperty(exports2, "__esModule", { value: true });
363796
363545
  exports2.SimpleMemoryHost = void 0;
363797
363546
  var rxjs_1 = require_cjs();
@@ -364108,13 +363857,6 @@ var require_memory = __commonJS({
364108
363857
  var require_sync8 = __commonJS({
364109
363858
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/sync.js"(exports2) {
364110
363859
  "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
- */
364118
363860
  Object.defineProperty(exports2, "__esModule", { value: true });
364119
363861
  exports2.SyncDelegateHost = exports2.SynchronousDelegateExpectedException = void 0;
364120
363862
  var exception_1 = require_exception2();
@@ -364196,13 +363938,6 @@ var require_sync8 = __commonJS({
364196
363938
  var require_test = __commonJS({
364197
363939
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/test.js"(exports2) {
364198
363940
  "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
- */
364206
363941
  Object.defineProperty(exports2, "__esModule", { value: true });
364207
363942
  exports2.TestHost = void 0;
364208
363943
  var path_1 = require_path2();
@@ -364316,13 +364051,6 @@ var require_test = __commonJS({
364316
364051
  var require_resolver = __commonJS({
364317
364052
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/resolver.js"(exports2) {
364318
364053
  "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
- */
364326
364054
  Object.defineProperty(exports2, "__esModule", { value: true });
364327
364055
  exports2.ResolverHost = void 0;
364328
364056
  var ResolverHost = class {
@@ -364374,13 +364102,6 @@ var require_resolver = __commonJS({
364374
364102
  var require_alias = __commonJS({
364375
364103
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/alias.js"(exports2) {
364376
364104
  "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
- */
364384
364105
  Object.defineProperty(exports2, "__esModule", { value: true });
364385
364106
  exports2.AliasHost = void 0;
364386
364107
  var path_1 = require_path2();
@@ -364413,13 +364134,6 @@ var require_alias = __commonJS({
364413
364134
  var require_create = __commonJS({
364414
364135
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/create.js"(exports2) {
364415
364136
  "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
- */
364423
364137
  Object.defineProperty(exports2, "__esModule", { value: true });
364424
364138
  exports2.createSyncHost = void 0;
364425
364139
  var rxjs_1 = require_cjs();
@@ -364474,13 +364188,6 @@ var require_create = __commonJS({
364474
364188
  var require_empty3 = __commonJS({
364475
364189
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/empty.js"(exports2) {
364476
364190
  "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
- */
364484
364191
  Object.defineProperty(exports2, "__esModule", { value: true });
364485
364192
  exports2.Empty = void 0;
364486
364193
  var rxjs_1 = require_cjs();
@@ -366048,13 +365755,6 @@ var require_picomatch4 = __commonJS({
366048
365755
  var require_pattern3 = __commonJS({
366049
365756
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/pattern.js"(exports2) {
366050
365757
  "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
- */
366058
365758
  Object.defineProperty(exports2, "__esModule", { value: true });
366059
365759
  exports2.PatternMatchingHost = void 0;
366060
365760
  var picomatch_1 = require_picomatch4();
@@ -366086,13 +365786,6 @@ var require_pattern3 = __commonJS({
366086
365786
  var require_record = __commonJS({
366087
365787
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/record.js"(exports2) {
366088
365788
  "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
- */
366096
365789
  Object.defineProperty(exports2, "__esModule", { value: true });
366097
365790
  exports2.CordHost = void 0;
366098
365791
  var rxjs_1 = require_cjs();
@@ -366362,13 +366055,6 @@ var require_record = __commonJS({
366362
366055
  var require_safe = __commonJS({
366363
366056
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/safe.js"(exports2) {
366364
366057
  "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
- */
366372
366058
  Object.defineProperty(exports2, "__esModule", { value: true });
366373
366059
  exports2.SafeReadonlyHost = void 0;
366374
366060
  var rxjs_1 = require_cjs();
@@ -366409,13 +366095,6 @@ var require_safe = __commonJS({
366409
366095
  var require_scoped = __commonJS({
366410
366096
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/scoped.js"(exports2) {
366411
366097
  "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
- */
366419
366098
  Object.defineProperty(exports2, "__esModule", { value: true });
366420
366099
  exports2.ScopedHost = void 0;
366421
366100
  var path_1 = require_path2();
@@ -366438,13 +366117,6 @@ var require_scoped = __commonJS({
366438
366117
  var require_host = __commonJS({
366439
366118
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/index.js"(exports2) {
366440
366119
  "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
- */
366448
366120
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366449
366121
  if (k23 === void 0)
366450
366122
  k23 = k6;
@@ -366505,13 +366177,6 @@ var require_host = __commonJS({
366505
366177
  var require_virtual_fs = __commonJS({
366506
366178
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/index.js"(exports2) {
366507
366179
  "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
- */
366515
366180
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366516
366181
  if (k23 === void 0)
366517
366182
  k23 = k6;
@@ -366561,13 +366226,6 @@ var require_virtual_fs = __commonJS({
366561
366226
  var require_host2 = __commonJS({
366562
366227
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/host.js"(exports2) {
366563
366228
  "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
- */
366571
366229
  Object.defineProperty(exports2, "__esModule", { value: true });
366572
366230
  exports2.createWorkspaceHost = void 0;
366573
366231
  var rxjs_1 = require_cjs();
@@ -366755,13 +366413,6 @@ var require_main = __commonJS({
366755
366413
  var require_metadata2 = __commonJS({
366756
366414
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/metadata.js"(exports2) {
366757
366415
  "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
- */
366765
366416
  Object.defineProperty(exports2, "__esModule", { value: true });
366766
366417
  exports2.JsonWorkspaceMetadata = exports2.JsonWorkspaceSymbol = void 0;
366767
366418
  var jsonc_parser_1 = require_main();
@@ -366818,13 +366469,6 @@ var require_metadata2 = __commonJS({
366818
366469
  var require_utilities = __commonJS({
366819
366470
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/utilities.js"(exports2) {
366820
366471
  "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
- */
366828
366472
  Object.defineProperty(exports2, "__esModule", { value: true });
366829
366473
  exports2.createVirtualAstObject = void 0;
366830
366474
  var json_1 = require_json3();
@@ -366931,13 +366575,6 @@ var require_utilities = __commonJS({
366931
366575
  var require_reader3 = __commonJS({
366932
366576
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/reader.js"(exports2) {
366933
366577
  "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
- */
366941
366578
  Object.defineProperty(exports2, "__esModule", { value: true });
366942
366579
  exports2.readJsonWorkspace = void 0;
366943
366580
  var jsonc_parser_1 = require_main();
@@ -367152,13 +366789,6 @@ var require_reader3 = __commonJS({
367152
366789
  var require_writer = __commonJS({
367153
366790
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/writer.js"(exports2) {
367154
366791
  "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
- */
367162
366792
  Object.defineProperty(exports2, "__esModule", { value: true });
367163
366793
  exports2.writeJsonWorkspace = void 0;
367164
366794
  var jsonc_parser_1 = require_main();
@@ -367288,13 +366918,6 @@ var require_writer = __commonJS({
367288
366918
  var require_core4 = __commonJS({
367289
366919
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/core.js"(exports2) {
367290
366920
  "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
- */
367298
366921
  Object.defineProperty(exports2, "__esModule", { value: true });
367299
366922
  exports2.writeWorkspace = exports2.readWorkspace = exports2._test_removeWorkspaceFile = exports2._test_addWorkspaceFile = exports2.WorkspaceFormat = void 0;
367300
366923
  var virtual_fs_1 = require_virtual_fs();
@@ -367379,13 +367002,6 @@ var require_core4 = __commonJS({
367379
367002
  var require_workspace = __commonJS({
367380
367003
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/index.js"(exports2) {
367381
367004
  "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
- */
367389
367005
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367390
367006
  if (k23 === void 0)
367391
367007
  k23 = k6;
@@ -367430,13 +367046,6 @@ var require_workspace = __commonJS({
367430
367046
  var require_src2 = __commonJS({
367431
367047
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/index.js"(exports2) {
367432
367048
  "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
- */
367440
367049
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367441
367050
  if (k23 === void 0)
367442
367051
  k23 = k6;
@@ -367493,13 +367102,6 @@ var require_src2 = __commonJS({
367493
367102
  var require_html_selector = __commonJS({
367494
367103
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/html-selector.js"(exports2) {
367495
367104
  "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
- */
367503
367105
  Object.defineProperty(exports2, "__esModule", { value: true });
367504
367106
  exports2.htmlSelectorFormat = void 0;
367505
367107
  var unicodeRanges = [
@@ -367539,13 +367141,6 @@ var require_html_selector = __commonJS({
367539
367141
  var require_path3 = __commonJS({
367540
367142
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/path.js"(exports2) {
367541
367143
  "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
- */
367549
367144
  Object.defineProperty(exports2, "__esModule", { value: true });
367550
367145
  exports2.pathFormat = void 0;
367551
367146
  var core_1 = require_src2();
@@ -367565,13 +367160,6 @@ var require_path3 = __commonJS({
367565
367160
  var require_formats2 = __commonJS({
367566
367161
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/index.js"(exports2) {
367567
367162
  "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
- */
367575
367163
  Object.defineProperty(exports2, "__esModule", { value: true });
367576
367164
  exports2.standardFormats = exports2.pathFormat = exports2.htmlSelectorFormat = void 0;
367577
367165
  var html_selector_1 = require_html_selector();
@@ -367592,13 +367180,6 @@ var require_formats2 = __commonJS({
367592
367180
  var require_interface3 = __commonJS({
367593
367181
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/interface.js"(exports2) {
367594
367182
  "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
- */
367602
367183
  Object.defineProperty(exports2, "__esModule", { value: true });
367603
367184
  exports2.Tree = exports2.TreeSymbol = exports2.FileVisitorCancelToken = exports2.MergeStrategy = void 0;
367604
367185
  var MergeStrategy;
@@ -367634,13 +367215,6 @@ var require_interface3 = __commonJS({
367634
367215
  var require_exception3 = __commonJS({
367635
367216
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/exception/exception.js"(exports2) {
367636
367217
  "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
- */
367644
367218
  Object.defineProperty(exports2, "__esModule", { value: true });
367645
367219
  exports2.UnimplementedException = exports2.UnsuccessfulWorkflowExecution = exports2.MergeConflictException = exports2.InvalidUpdateRecordException = exports2.ContentHasMutatedException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.SchematicsException = void 0;
367646
367220
  var core_1 = require_src2();
@@ -367696,13 +367270,6 @@ var require_exception3 = __commonJS({
367696
367270
  var require_delegate = __commonJS({
367697
367271
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/delegate.js"(exports2) {
367698
367272
  "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
- */
367706
367273
  Object.defineProperty(exports2, "__esModule", { value: true });
367707
367274
  exports2.DelegateTree = void 0;
367708
367275
  var interface_1 = require_interface3();
@@ -367780,13 +367347,6 @@ var require_delegate = __commonJS({
367780
367347
  var require_entry3 = __commonJS({
367781
367348
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/entry.js"(exports2) {
367782
367349
  "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
- */
367790
367350
  Object.defineProperty(exports2, "__esModule", { value: true });
367791
367351
  exports2.LazyFileEntry = exports2.SimpleFileEntry = void 0;
367792
367352
  var SimpleFileEntry = class {
@@ -369250,13 +368810,6 @@ var require_magic_string_cjs = __commonJS({
369250
368810
  var require_update_buffer = __commonJS({
369251
368811
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/utility/update-buffer.js"(exports2) {
369252
368812
  "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
- */
369260
368813
  var __importDefault2 = exports2 && exports2.__importDefault || function(mod) {
369261
368814
  return mod && mod.__esModule ? mod : { "default": mod };
369262
368815
  };
@@ -369336,13 +368889,6 @@ var require_update_buffer = __commonJS({
369336
368889
  var require_recorder = __commonJS({
369337
368890
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/recorder.js"(exports2) {
369338
368891
  "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
- */
369346
368892
  Object.defineProperty(exports2, "__esModule", { value: true });
369347
368893
  exports2.UpdateRecorderBom = exports2.UpdateRecorderBase = void 0;
369348
368894
  var exception_1 = require_exception3();
@@ -369417,13 +368963,6 @@ var require_recorder = __commonJS({
369417
368963
  var require_scoped2 = __commonJS({
369418
368964
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/scoped.js"(exports2) {
369419
368965
  "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
- */
369427
368966
  Object.defineProperty(exports2, "__esModule", { value: true });
369428
368967
  exports2.ScopedTree = void 0;
369429
368968
  var core_1 = require_src2();
@@ -369601,13 +369140,6 @@ var require_scoped2 = __commonJS({
369601
369140
  var require_host_tree = __commonJS({
369602
369141
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/host-tree.js"(exports2) {
369603
369142
  "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
- */
369611
369143
  Object.defineProperty(exports2, "__esModule", { value: true });
369612
369144
  exports2.FilterHostTree = exports2.HostCreateTree = exports2.HostTree = exports2.HostDirEntry = void 0;
369613
369145
  var core_1 = require_src2();
@@ -370023,13 +369555,6 @@ var require_host_tree = __commonJS({
370023
369555
  var require_static = __commonJS({
370024
369556
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/static.js"(exports2) {
370025
369557
  "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
- */
370033
369558
  Object.defineProperty(exports2, "__esModule", { value: true });
370034
369559
  exports2.partition = exports2.merge = exports2.branch = exports2.empty = void 0;
370035
369560
  var exception_1 = require_exception3();
@@ -370066,13 +369591,6 @@ var require_static = __commonJS({
370066
369591
  var require_null2 = __commonJS({
370067
369592
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/null.js"(exports2) {
370068
369593
  "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
- */
370076
369594
  Object.defineProperty(exports2, "__esModule", { value: true });
370077
369595
  exports2.NullTree = exports2.NullTreeDirEntry = exports2.CannotCreateFileException = void 0;
370078
369596
  var core_1 = require_src2();
@@ -370173,13 +369691,6 @@ var require_null2 = __commonJS({
370173
369691
  var require_call = __commonJS({
370174
369692
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/call.js"(exports2) {
370175
369693
  "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
- */
370183
369694
  Object.defineProperty(exports2, "__esModule", { value: true });
370184
369695
  exports2.callRule = exports2.callSource = exports2.InvalidSourceResultException = exports2.InvalidRuleResultException = void 0;
370185
369696
  var core_1 = require_src2();
@@ -370260,13 +369771,6 @@ var require_call = __commonJS({
370260
369771
  var require_schematic = __commonJS({
370261
369772
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/schematic.js"(exports2) {
370262
369773
  "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
- */
370270
369774
  Object.defineProperty(exports2, "__esModule", { value: true });
370271
369775
  exports2.SchematicImpl = exports2.InvalidSchematicsNameException = void 0;
370272
369776
  var core_1 = require_src2();
@@ -370331,13 +369835,6 @@ var require_schematic = __commonJS({
370331
369835
  var require_engine = __commonJS({
370332
369836
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/engine.js"(exports2) {
370333
369837
  "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
- */
370341
369838
  Object.defineProperty(exports2, "__esModule", { value: true });
370342
369839
  exports2.SchematicEngine = exports2.TaskScheduler = exports2.CollectionImpl = exports2.UnknownTaskDependencyException = exports2.UnregisteredTaskException = exports2.SchematicEngineConflictingException = exports2.PrivateSchematicException = exports2.UnknownSchematicException = exports2.CircularCollectionException = exports2.UnknownCollectionException = exports2.UnknownUrlSourceProtocol = void 0;
370343
369840
  var core_1 = require_src2();
@@ -370632,13 +370129,6 @@ var require_engine = __commonJS({
370632
370129
  var require_interface4 = __commonJS({
370633
370130
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/interface.js"(exports2) {
370634
370131
  "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
- */
370642
370132
  Object.defineProperty(exports2, "__esModule", { value: true });
370643
370133
  }
370644
370134
  });
@@ -370647,13 +370137,6 @@ var require_interface4 = __commonJS({
370647
370137
  var require_engine2 = __commonJS({
370648
370138
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/index.js"(exports2) {
370649
370139
  "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
- */
370657
370140
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
370658
370141
  if (k23 === void 0)
370659
370142
  k23 = k6;
@@ -370685,13 +370168,6 @@ var require_engine2 = __commonJS({
370685
370168
  var require_cli_logger = __commonJS({
370686
370169
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/cli-logger.js"(exports2) {
370687
370170
  "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
- */
370695
370171
  Object.defineProperty(exports2, "__esModule", { value: true });
370696
370172
  exports2.createConsoleLogger = void 0;
370697
370173
  var rxjs_1 = require_cjs();
@@ -372489,12 +371965,6 @@ var require_readdirp = __commonJS({
372489
371965
  // node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js
372490
371966
  var require_normalize_path = __commonJS({
372491
371967
  "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
- */
372498
371968
  module2.exports = function(path15, stripTrailing) {
372499
371969
  if (typeof path15 !== "string") {
372500
371970
  throw new TypeError("expected path to be a string");
@@ -372591,12 +372061,6 @@ var require_anymatch = __commonJS({
372591
372061
  // node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
372592
372062
  var require_is_extglob2 = __commonJS({
372593
372063
  "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
- */
372600
372064
  module2.exports = function isExtglob(str2) {
372601
372065
  if (typeof str2 !== "string" || str2 === "") {
372602
372066
  return false;
@@ -372615,12 +372079,6 @@ var require_is_extglob2 = __commonJS({
372615
372079
  // node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
372616
372080
  var require_is_glob2 = __commonJS({
372617
372081
  "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
- */
372624
372082
  var isExtglob = require_is_extglob2();
372625
372083
  var chars = { "{": "}", "(": ")", "[": "]" };
372626
372084
  var strictCheck = function(str2) {
@@ -372897,12 +372355,6 @@ var require_stringify2 = __commonJS({
372897
372355
  var require_is_number2 = __commonJS({
372898
372356
  "node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports2, module2) {
372899
372357
  "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
- */
372906
372358
  module2.exports = function(num) {
372907
372359
  if (typeof num === "number") {
372908
372360
  return num - num === 0;
@@ -372919,12 +372371,6 @@ var require_is_number2 = __commonJS({
372919
372371
  var require_to_regex_range2 = __commonJS({
372920
372372
  "node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports2, module2) {
372921
372373
  "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
- */
372928
372374
  var isNumber = require_is_number2();
372929
372375
  var toRegexRange = (min, max, options8) => {
372930
372376
  if (isNumber(min) === false) {
@@ -373137,12 +372583,6 @@ var require_to_regex_range2 = __commonJS({
373137
372583
  var require_fill_range2 = __commonJS({
373138
372584
  "node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports2, module2) {
373139
372585
  "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
- */
373146
372586
  var util3 = require("util");
373147
372587
  var toRegexRange = require_to_regex_range2();
373148
372588
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -375985,13 +375425,6 @@ var require_chokidar = __commonJS({
375985
375425
  var require_host3 = __commonJS({
375986
375426
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/host.js"(exports2) {
375987
375427
  "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
- */
375995
375428
  Object.defineProperty(exports2, "__esModule", { value: true });
375996
375429
  exports2.NodeJsSyncHost = exports2.NodeJsAsyncHost = void 0;
375997
375430
  var node_fs_1 = require("node:fs");
@@ -376182,13 +375615,6 @@ var require_host3 = __commonJS({
376182
375615
  var require_node = __commonJS({
376183
375616
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/index.js"(exports2) {
376184
375617
  "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
- */
376192
375618
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376193
375619
  if (k23 === void 0)
376194
375620
  k23 = k6;
@@ -376219,13 +375645,6 @@ var require_node = __commonJS({
376219
375645
  var require_action = __commonJS({
376220
375646
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/action.js"(exports2) {
376221
375647
  "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
- */
376229
375648
  Object.defineProperty(exports2, "__esModule", { value: true });
376230
375649
  exports2.isContentAction = exports2.ActionList = exports2.UnknownActionException = void 0;
376231
375650
  var core_1 = require_src2();
@@ -376361,13 +375780,6 @@ var require_action = __commonJS({
376361
375780
  var require_sink = __commonJS({
376362
375781
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/sink.js"(exports2) {
376363
375782
  "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
- */
376371
375783
  Object.defineProperty(exports2, "__esModule", { value: true });
376372
375784
  exports2.SimpleSinkBase = void 0;
376373
375785
  var rxjs_1 = require_cjs();
@@ -376480,13 +375892,6 @@ var require_sink = __commonJS({
376480
375892
  var require_host4 = __commonJS({
376481
375893
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/host.js"(exports2) {
376482
375894
  "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
- */
376490
375895
  Object.defineProperty(exports2, "__esModule", { value: true });
376491
375896
  exports2.HostSink = void 0;
376492
375897
  var rxjs_1 = require_cjs();
@@ -376557,13 +375962,6 @@ var require_host4 = __commonJS({
376557
375962
  var require_dryrun = __commonJS({
376558
375963
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/dryrun.js"(exports2) {
376559
375964
  "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
- */
376567
375965
  Object.defineProperty(exports2, "__esModule", { value: true });
376568
375966
  exports2.DryRunSink = void 0;
376569
375967
  var core_1 = require_src2();
@@ -376636,13 +376034,6 @@ var require_dryrun = __commonJS({
376636
376034
  var require_base2 = __commonJS({
376637
376035
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/base.js"(exports2) {
376638
376036
  "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
- */
376646
376037
  Object.defineProperty(exports2, "__esModule", { value: true });
376647
376038
  exports2.BaseWorkflow = void 0;
376648
376039
  var core_1 = require_src2();
@@ -376766,13 +376157,6 @@ var require_base2 = __commonJS({
376766
376157
  var require_interface5 = __commonJS({
376767
376158
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/interface.js"(exports2) {
376768
376159
  "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
- */
376776
376160
  Object.defineProperty(exports2, "__esModule", { value: true });
376777
376161
  }
376778
376162
  });
@@ -376781,13 +376165,6 @@ var require_interface5 = __commonJS({
376781
376165
  var require_workflow = __commonJS({
376782
376166
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/index.js"(exports2) {
376783
376167
  "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
- */
376791
376168
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376792
376169
  if (k23 === void 0)
376793
376170
  k23 = k6;
@@ -376818,13 +376195,6 @@ var require_workflow = __commonJS({
376818
376195
  var require_base3 = __commonJS({
376819
376196
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/base.js"(exports2) {
376820
376197
  "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
- */
376828
376198
  Object.defineProperty(exports2, "__esModule", { value: true });
376829
376199
  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;
376830
376200
  var rxjs_1 = require_cjs();
@@ -376964,13 +376334,6 @@ var require_base3 = __commonJS({
376964
376334
  var require_move3 = __commonJS({
376965
376335
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/move.js"(exports2) {
376966
376336
  "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
- */
376974
376337
  Object.defineProperty(exports2, "__esModule", { value: true });
376975
376338
  exports2.move = void 0;
376976
376339
  var core_1 = require_src2();
@@ -377004,13 +376367,6 @@ var require_move3 = __commonJS({
377004
376367
  var require_random = __commonJS({
377005
376368
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/random.js"(exports2) {
377006
376369
  "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
- */
377014
376370
  Object.defineProperty(exports2, "__esModule", { value: true });
377015
376371
  var host_tree_1 = require_host_tree();
377016
376372
  function generateStringOfLength(l) {
@@ -377043,13 +376399,6 @@ var require_random = __commonJS({
377043
376399
  var require_schematic2 = __commonJS({
377044
376400
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/schematic.js"(exports2) {
377045
376401
  "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
- */
377053
376402
  Object.defineProperty(exports2, "__esModule", { value: true });
377054
376403
  exports2.schematic = exports2.externalSchematic = void 0;
377055
376404
  var rxjs_1 = require_cjs();
@@ -377084,13 +376433,6 @@ var require_schematic2 = __commonJS({
377084
376433
  var require_template2 = __commonJS({
377085
376434
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/template.js"(exports2) {
377086
376435
  "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
- */
377094
376436
  Object.defineProperty(exports2, "__esModule", { value: true });
377095
376437
  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;
377096
376438
  var core_1 = require_src2();
@@ -377241,13 +376583,6 @@ var require_template2 = __commonJS({
377241
376583
  var require_url = __commonJS({
377242
376584
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/url.js"(exports2) {
377243
376585
  "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
- */
377251
376586
  Object.defineProperty(exports2, "__esModule", { value: true });
377252
376587
  exports2.url = void 0;
377253
376588
  var url_1 = require("url");
@@ -377263,13 +376598,6 @@ var require_url = __commonJS({
377263
376598
  var require_empty4 = __commonJS({
377264
376599
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/empty.js"(exports2) {
377265
376600
  "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
- */
377273
376601
  Object.defineProperty(exports2, "__esModule", { value: true });
377274
376602
  exports2.EmptyTree = void 0;
377275
376603
  var host_tree_1 = require_host_tree();
@@ -377286,13 +376614,6 @@ var require_empty4 = __commonJS({
377286
376614
  var require_src3 = __commonJS({
377287
376615
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/index.js"(exports2) {
377288
376616
  "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
- */
377296
376617
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
377297
376618
  if (k23 === void 0)
377298
376619
  k23 = k6;
@@ -377388,13 +376709,6 @@ var require_src3 = __commonJS({
377388
376709
  var require_options = __commonJS({
377389
376710
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/options.js"(exports2) {
377390
376711
  "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
- */
377398
376712
  Object.defineProperty(exports2, "__esModule", { value: true });
377399
376713
  exports2.NodePackageName = void 0;
377400
376714
  exports2.NodePackageName = "node-package";
@@ -377405,13 +376719,6 @@ var require_options = __commonJS({
377405
376719
  var require_options2 = __commonJS({
377406
376720
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/options.js"(exports2) {
377407
376721
  "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
- */
377415
376722
  Object.defineProperty(exports2, "__esModule", { value: true });
377416
376723
  exports2.RepositoryInitializerName = void 0;
377417
376724
  exports2.RepositoryInitializerName = "repo-init";
@@ -377422,13 +376729,6 @@ var require_options2 = __commonJS({
377422
376729
  var require_options3 = __commonJS({
377423
376730
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/options.js"(exports2) {
377424
376731
  "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
- */
377432
376732
  Object.defineProperty(exports2, "__esModule", { value: true });
377433
376733
  exports2.RunSchematicName = void 0;
377434
376734
  exports2.RunSchematicName = "run-schematic";
@@ -380902,7 +380202,6 @@ var require_stream_duplex = __commonJS({
380902
380202
  // node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js
380903
380203
  var require_safe_buffer = __commonJS({
380904
380204
  "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> */
380906
380205
  var buffer2 = require("buffer");
380907
380206
  var Buffer2 = buffer2.Buffer;
380908
380207
  function copyProps(src, dst) {
@@ -383377,13 +382676,6 @@ var require_ora = __commonJS({
383377
382676
  var require_executor = __commonJS({
383378
382677
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/executor.js"(exports2) {
383379
382678
  "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
- */
383387
382679
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383388
382680
  if (k23 === void 0)
383389
382681
  k23 = k6;
@@ -383555,13 +382847,6 @@ var require_executor = __commonJS({
383555
382847
  var require_executor2 = __commonJS({
383556
382848
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/executor.js"(exports2) {
383557
382849
  "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
- */
383565
382850
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383566
382851
  if (k23 === void 0)
383567
382852
  k23 = k6;
@@ -383658,13 +382943,6 @@ var require_executor2 = __commonJS({
383658
382943
  var require_executor3 = __commonJS({
383659
382944
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/executor.js"(exports2) {
383660
382945
  "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
- */
383668
382946
  Object.defineProperty(exports2, "__esModule", { value: true });
383669
382947
  function default_1() {
383670
382948
  return (options8, context) => {
@@ -383693,13 +382971,6 @@ var require_executor3 = __commonJS({
383693
382971
  var require_node3 = __commonJS({
383694
382972
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/node/index.js"(exports2) {
383695
382973
  "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
- */
383703
382974
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
383704
382975
  if (k23 === void 0)
383705
382976
  k23 = k6;
@@ -383759,13 +383030,6 @@ var require_node3 = __commonJS({
383759
383030
  var require_description = __commonJS({
383760
383031
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/description.js"(exports2) {
383761
383032
  "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
- */
383769
383033
  Object.defineProperty(exports2, "__esModule", { value: true });
383770
383034
  }
383771
383035
  });
@@ -383774,13 +383038,6 @@ var require_description = __commonJS({
383774
383038
  var require_export_ref = __commonJS({
383775
383039
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/export-ref.js"(exports2) {
383776
383040
  "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
- */
383784
383041
  Object.defineProperty(exports2, "__esModule", { value: true });
383785
383042
  exports2.ExportStringRef = void 0;
383786
383043
  var path_1 = require("path");
@@ -383817,13 +383074,6 @@ var require_export_ref = __commonJS({
383817
383074
  var require_file_system_utility = __commonJS({
383818
383075
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-utility.js"(exports2) {
383819
383076
  "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
- */
383827
383077
  Object.defineProperty(exports2, "__esModule", { value: true });
383828
383078
  exports2.readJsonFile = void 0;
383829
383079
  var schematics_1 = require_src3();
@@ -383849,13 +383099,6 @@ var require_file_system_utility = __commonJS({
383849
383099
  var require_file_system_engine_host_base = __commonJS({
383850
383100
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js"(exports2) {
383851
383101
  "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
- */
383859
383102
  Object.defineProperty(exports2, "__esModule", { value: true });
383860
383103
  exports2.FileSystemEngineHostBase = exports2.SchematicNameCollisionException = exports2.SchematicMissingDescriptionException = exports2.SchematicMissingFieldsException = exports2.CollectionMissingFieldsException = exports2.CollectionMissingSchematicsMapException = exports2.FactoryCannotBeResolvedException = exports2.SchematicMissingFactoryException = exports2.InvalidCollectionJsonException = exports2.CollectionCannotBeResolvedException = void 0;
383861
383104
  var core_1 = require_src2();
@@ -384090,13 +383333,6 @@ var require_file_system_engine_host_base = __commonJS({
384090
383333
  var require_node_module_engine_host = __commonJS({
384091
383334
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js"(exports2) {
384092
383335
  "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
- */
384100
383336
  Object.defineProperty(exports2, "__esModule", { value: true });
384101
383337
  exports2.NodeModulesEngineHost = exports2.NodePackageDoesNotSupportSchematics = void 0;
384102
383338
  var core_1 = require_src2();
@@ -384725,13 +383961,6 @@ var require_operators = __commonJS({
384725
383961
  var require_schema_option_transform = __commonJS({
384726
383962
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/schema-option-transform.js"(exports2) {
384727
383963
  "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
- */
384735
383964
  Object.defineProperty(exports2, "__esModule", { value: true });
384736
383965
  exports2.validateOptionsWithSchema = exports2.InvalidInputOptions = void 0;
384737
383966
  var core_1 = require_src2();
@@ -384768,13 +383997,6 @@ Errors:
384768
383997
  var require_node_workflow = __commonJS({
384769
383998
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js"(exports2) {
384770
383999
  "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
- */
384778
384000
  Object.defineProperty(exports2, "__esModule", { value: true });
384779
384001
  exports2.NodeWorkflow = void 0;
384780
384002
  var core_1 = require_src2();
@@ -384838,13 +384060,6 @@ var require_node_workflow = __commonJS({
384838
384060
  var require_file_system_engine_host = __commonJS({
384839
384061
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host.js"(exports2) {
384840
384062
  "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
- */
384848
384063
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384849
384064
  if (k23 === void 0)
384850
384065
  k23 = k6;
@@ -384962,13 +384177,6 @@ var require_file_system_engine_host = __commonJS({
384962
384177
  var require_node_modules_test_engine_host = __commonJS({
384963
384178
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-modules-test-engine-host.js"(exports2) {
384964
384179
  "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
- */
384972
384180
  Object.defineProperty(exports2, "__esModule", { value: true });
384973
384181
  exports2.NodeModulesTestEngineHost = void 0;
384974
384182
  var node_module_engine_host_1 = require_node_module_engine_host();
@@ -385008,13 +384216,6 @@ var require_node_modules_test_engine_host = __commonJS({
385008
384216
  var require_tools = __commonJS({
385009
384217
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/index.js"(exports2) {
385010
384218
  "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
- */
385018
384219
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385019
384220
  if (k23 === void 0)
385020
384221
  k23 = k6;
@@ -385067,13 +384268,6 @@ var require_tools = __commonJS({
385067
384268
  var require_schematic_test_runner = __commonJS({
385068
384269
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/schematic-test-runner.js"(exports2) {
385069
384270
  "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
- */
385077
384271
  Object.defineProperty(exports2, "__esModule", { value: true });
385078
384272
  exports2.SchematicTestRunner = exports2.UnitTestTree = void 0;
385079
384273
  var core_1 = require_src2();
@@ -385155,13 +384349,6 @@ var require_schematic_test_runner = __commonJS({
385155
384349
  var require_testing = __commonJS({
385156
384350
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/index.js"(exports2) {
385157
384351
  "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
- */
385165
384352
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385166
384353
  if (k23 === void 0)
385167
384354
  k23 = k6;
@@ -385345,13 +384532,6 @@ var require_invoke_nx_generator = __commonJS({
385345
384532
  var require_api = __commonJS({
385346
384533
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/api.js"(exports2) {
385347
384534
  "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
- */
385355
384535
  Object.defineProperty(exports2, "__esModule", { value: true });
385356
384536
  exports2.isJobHandler = exports2.JobState = exports2.JobOutboundMessageKind = exports2.JobInboundMessageKind = void 0;
385357
384537
  var JobInboundMessageKind;
@@ -385392,13 +384572,6 @@ var require_api = __commonJS({
385392
384572
  var require_strategy = __commonJS({
385393
384573
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/strategy.js"(exports2) {
385394
384574
  "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
- */
385402
384575
  Object.defineProperty(exports2, "__esModule", { value: true });
385403
384576
  exports2.memoize = exports2.reuse = exports2.serialize = void 0;
385404
384577
  var core_1 = require_src2();
@@ -385474,13 +384647,6 @@ var require_strategy = __commonJS({
385474
384647
  var require_create_job_handler = __commonJS({
385475
384648
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/create-job-handler.js"(exports2) {
385476
384649
  "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
- */
385484
384650
  Object.defineProperty(exports2, "__esModule", { value: true });
385485
384651
  exports2.createLoggerJob = exports2.createJobFactory = exports2.createJobHandler = exports2.ChannelAlreadyExistException = void 0;
385486
384652
  var core_1 = require_src2();
@@ -385599,13 +384765,6 @@ var require_create_job_handler = __commonJS({
385599
384765
  var require_exception4 = __commonJS({
385600
384766
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/exception.js"(exports2) {
385601
384767
  "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
- */
385609
384768
  Object.defineProperty(exports2, "__esModule", { value: true });
385610
384769
  exports2.JobDoesNotExistException = exports2.JobNameAlreadyRegisteredException = void 0;
385611
384770
  var core_1 = require_src2();
@@ -385628,13 +384787,6 @@ var require_exception4 = __commonJS({
385628
384787
  var require_dispatcher = __commonJS({
385629
384788
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/dispatcher.js"(exports2) {
385630
384789
  "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
- */
385638
384790
  Object.defineProperty(exports2, "__esModule", { value: true });
385639
384791
  exports2.createDispatcher = void 0;
385640
384792
  var api_1 = require_api();
@@ -385678,13 +384830,6 @@ var require_dispatcher = __commonJS({
385678
384830
  var require_fallback_registry = __commonJS({
385679
384831
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/fallback-registry.js"(exports2) {
385680
384832
  "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
- */
385688
384833
  Object.defineProperty(exports2, "__esModule", { value: true });
385689
384834
  exports2.FallbackRegistry = void 0;
385690
384835
  var rxjs_1 = require_cjs();
@@ -385708,13 +384853,6 @@ var require_fallback_registry = __commonJS({
385708
384853
  var require_simple_registry = __commonJS({
385709
384854
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-registry.js"(exports2) {
385710
384855
  "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
- */
385718
384856
  Object.defineProperty(exports2, "__esModule", { value: true });
385719
384857
  exports2.SimpleJobRegistry = void 0;
385720
384858
  var core_1 = require_src2();
@@ -385778,13 +384916,6 @@ var require_simple_registry = __commonJS({
385778
384916
  var require_simple_scheduler = __commonJS({
385779
384917
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-scheduler.js"(exports2) {
385780
384918
  "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
- */
385788
384919
  Object.defineProperty(exports2, "__esModule", { value: true });
385789
384920
  exports2.SimpleScheduler = exports2.JobOutputSchemaValidationError = exports2.JobInboundMessageSchemaValidationError = exports2.JobArgumentSchemaValidationError = void 0;
385790
384921
  var core_1 = require_src2();
@@ -386154,13 +385285,6 @@ var require_simple_scheduler = __commonJS({
386154
385285
  var require_jobs = __commonJS({
386155
385286
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/index.js"(exports2) {
386156
385287
  "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
- */
386164
385288
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
386165
385289
  if (k23 === void 0)
386166
385290
  k23 = k6;
@@ -386232,13 +385356,6 @@ var require_progress_schema = __commonJS({
386232
385356
  var require_api2 = __commonJS({
386233
385357
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/api.js"(exports2) {
386234
385358
  "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
- */
386242
385359
  Object.defineProperty(exports2, "__esModule", { value: true });
386243
385360
  exports2.scheduleTargetAndForget = exports2.targetFromTargetString = exports2.targetStringFromTarget = exports2.fromAsyncIterable = exports2.isBuilderOutput = exports2.BuilderProgressState = void 0;
386244
385361
  var rxjs_1 = require_cjs();
@@ -386401,13 +385518,6 @@ var require_progress_schema2 = __commonJS({
386401
385518
  var require_schedule_by_name = __commonJS({
386402
385519
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/schedule-by-name.js"(exports2) {
386403
385520
  "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
- */
386411
385521
  Object.defineProperty(exports2, "__esModule", { value: true });
386412
385522
  exports2.scheduleByTarget = exports2.scheduleByName = void 0;
386413
385523
  var rxjs_1 = require_cjs();
@@ -386589,13 +385699,6 @@ var require_output_schema = __commonJS({
386589
385699
  var require_architect = __commonJS({
386590
385700
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/architect.js"(exports2) {
386591
385701
  "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
- */
386599
385702
  Object.defineProperty(exports2, "__esModule", { value: true });
386600
385703
  exports2.Architect = void 0;
386601
385704
  var core_1 = require_src2();
@@ -386862,13 +385965,6 @@ var require_architect = __commonJS({
386862
385965
  var require_internal = __commonJS({
386863
385966
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/internal.js"(exports2) {
386864
385967
  "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
- */
386872
385968
  Object.defineProperty(exports2, "__esModule", { value: true });
386873
385969
  exports2.BuilderVersionSymbol = exports2.BuilderSymbol = void 0;
386874
385970
  exports2.BuilderSymbol = Symbol.for("@angular-devkit/architect:builder");
@@ -386921,13 +386017,6 @@ var require_package3 = __commonJS({
386921
386017
  var require_create_builder = __commonJS({
386922
386018
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/create-builder.js"(exports2) {
386923
386019
  "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
- */
386931
386020
  Object.defineProperty(exports2, "__esModule", { value: true });
386932
386021
  exports2.createBuilder = void 0;
386933
386022
  var core_1 = require_src2();
@@ -387094,13 +386183,6 @@ var require_create_builder = __commonJS({
387094
386183
  var require_src4 = __commonJS({
387095
386184
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/index.js"(exports2) {
387096
386185
  "use strict";
387097
- /**
387098
- * @license
387099
- * Copyright Google LLC All Rights Reserved.
387100
- *
387101
- * Use of this source code is governed by an MIT-style license that can be
387102
- * found in the LICENSE file at https://angular.io/license
387103
- */
387104
386186
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
387105
386187
  if (k23 === void 0)
387106
386188
  k23 = k6;
@@ -396156,7 +395238,6 @@ var require_out5 = __commonJS({
396156
395238
  // node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
396157
395239
  var require_queue_microtask2 = __commonJS({
396158
395240
  "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> */
396160
395241
  var promise;
396161
395242
  module2.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
396162
395243
  throw err;
@@ -396167,7 +395248,6 @@ var require_queue_microtask2 = __commonJS({
396167
395248
  // node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
396168
395249
  var require_run_parallel2 = __commonJS({
396169
395250
  "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> */
396171
395251
  module2.exports = runParallel;
396172
395252
  var queueMicrotask2 = require_queue_microtask2();
396173
395253
  function runParallel(tasks, cb) {
@@ -434352,15 +433432,6 @@ If this is important to you, please consider supporting Rollup to make a native
434352
433432
  var require_parseAst = __commonJS({
434353
433433
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/parseAst.js"(exports2) {
434354
433434
  "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
- */
434364
433435
  var native_js = require_native();
434365
433436
  var node_path = require("node:path");
434366
433437
  function rangeContains(range, index) {
@@ -436676,15 +435747,6 @@ ${smallChunks} are below minChunkSize.`
436676
435747
  var require_rollup = __commonJS({
436677
435748
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/rollup.js"(exports2) {
436678
435749
  "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
- */
436688
435750
  var parseAst_js = require_parseAst();
436689
435751
  var process$1 = require("node:process");
436690
435752
  var tty2 = require("tty");
@@ -454384,15 +453446,6 @@ ${outro}`;
454384
453446
  var require_fsevents_importer = __commonJS({
454385
453447
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/fsevents-importer.js"(exports2) {
454386
453448
  "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
- */
454396
453449
  var fsEvents;
454397
453450
  var fsEventsImportError;
454398
453451
  async function loadFsEvents() {
@@ -454421,15 +453474,6 @@ var require_fsevents_importer = __commonJS({
454421
453474
  var require_shared = __commonJS({
454422
453475
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/index.js"(exports2) {
454423
453476
  "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
- */
454433
453477
  var rollup = require_rollup();
454434
453478
  var require$$0$1 = require("fs");
454435
453479
  var require$$2 = require("util");
@@ -454670,12 +453714,6 @@ var require_shared = __commonJS({
454670
453714
  readdirp$1.default = readdirp$1;
454671
453715
  var readdirp_1 = readdirp$1;
454672
453716
  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
- */
454679
453717
  var normalizePath$2 = function(path16, stripTrailing) {
454680
453718
  if (typeof path16 !== "string") {
454681
453719
  throw new TypeError("expected path to be a string");
@@ -454761,12 +453799,6 @@ var require_shared = __commonJS({
454761
453799
  anymatch$1.default = anymatch$1;
454762
453800
  anymatch$2.exports = anymatch$1;
454763
453801
  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
- */
454770
453802
  var isExtglob$1 = function isExtglob2(str2) {
454771
453803
  if (typeof str2 !== "string" || str2 === "") {
454772
453804
  return false;
@@ -454779,12 +453811,6 @@ var require_shared = __commonJS({
454779
453811
  }
454780
453812
  return false;
454781
453813
  };
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
- */
454788
453814
  var isExtglob = isExtglob$1;
454789
453815
  var chars = { "{": "}", "(": ")", "[": "]" };
454790
453816
  var strictCheck = function(str2) {
@@ -455036,12 +454062,6 @@ var require_shared = __commonJS({
455036
454062
  };
455037
454063
  return stringify2(ast);
455038
454064
  };
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
- */
455045
454065
  var isNumber$2 = function(num) {
455046
454066
  if (typeof num === "number") {
455047
454067
  return num - num === 0;
@@ -455051,12 +454071,6 @@ var require_shared = __commonJS({
455051
454071
  }
455052
454072
  return false;
455053
454073
  };
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
- */
455060
454074
  var isNumber$1 = isNumber$2;
455061
454075
  var toRegexRange$1 = (min2, max, options8) => {
455062
454076
  if (isNumber$1(min2) === false) {
@@ -455262,12 +454276,6 @@ var require_shared = __commonJS({
455262
454276
  toRegexRange$1.cache = {};
455263
454277
  toRegexRange$1.clearCache = () => toRegexRange$1.cache = {};
455264
454278
  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
- */
455271
454279
  var util3 = require$$2;
455272
454280
  var toRegexRange = toRegexRange_1;
455273
454281
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -458033,15 +457041,6 @@ var require_shared = __commonJS({
458033
457041
  var require_watch = __commonJS({
458034
457042
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/shared/watch.js"(exports2) {
458035
457043
  "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
- */
458045
457044
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
458046
457045
  var node_path = require("node:path");
458047
457046
  var process4 = require("node:process");
@@ -458341,15 +457340,6 @@ var require_watch = __commonJS({
458341
457340
  var require_rollup2 = __commonJS({
458342
457341
  "node_modules/.pnpm/rollup@4.10.0/node_modules/rollup/dist/rollup.js"(exports2) {
458343
457342
  "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
- */
458353
457343
  Object.defineProperty(exports2, Symbol.toStringTag, { value: "Module" });
458354
457344
  var rollup = require_rollup();
458355
457345
  var parseAst_js = require_parseAst();
@@ -496630,3 +495620,1297 @@ var WorkspaceStorage = class {
496630
495620
  withRunExecutor,
496631
495621
  withRunGenerator
496632
495622
  });
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
+ */