@storm-software/workspace-tools 1.60.8 → 1.60.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/base/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 ts8 = (() => {
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(path13) {
210783
210766
  try {
210784
210767
  const stat2 = await fs_1.promises.stat(path13);
@@ -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(path13) {
210796
210778
  try {
210797
210779
  const stat2 = fs_1.default.statSync(path13);
@@ -210908,7 +210890,6 @@ ${[...importStack, fullPath].map((path13, i3) => `${i3 + 1}. ${path13}`).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((path13, i3) => `${i3 + 1}. ${path13}`).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 path13 = 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 path13 = 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(path13, stripTrailing) {
372499
371969
  if (typeof path13 !== "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) {
@@ -402497,3 +401577,1195 @@ async function normalizeOptions2(tree, options8) {
402497
401577
  withRunExecutor,
402498
401578
  withRunGenerator
402499
401579
  });
401580
+ /*! Bundled license information:
401581
+
401582
+ typescript/lib/typescript.js:
401583
+ (*! *****************************************************************************
401584
+ Copyright (c) Microsoft Corporation. All rights reserved.
401585
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
401586
+ this file except in compliance with the License. You may obtain a copy of the
401587
+ License at http://www.apache.org/licenses/LICENSE-2.0
401588
+
401589
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
401590
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
401591
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
401592
+ MERCHANTABLITY OR NON-INFRINGEMENT.
401593
+
401594
+ See the Apache Version 2.0 License for specific language governing permissions
401595
+ and limitations under the License.
401596
+ ***************************************************************************** *)
401597
+
401598
+ cosmiconfig/dist/loaders.js:
401599
+ (* istanbul ignore next -- @preserve *)
401600
+
401601
+ cosmiconfig/dist/util.js:
401602
+ (* istanbul ignore next -- @preserve *)
401603
+
401604
+ cosmiconfig/dist/ExplorerBase.js:
401605
+ (* istanbul ignore if -- @preserve *)
401606
+ (* istanbul ignore next -- @preserve *)
401607
+
401608
+ cosmiconfig/dist/Explorer.js:
401609
+ (* istanbul ignore if -- @preserve *)
401610
+
401611
+ cosmiconfig/dist/ExplorerSync.js:
401612
+ (* istanbul ignore if -- @preserve *)
401613
+
401614
+ ejs/lib/ejs.js:
401615
+ (**
401616
+ * @file Embedded JavaScript templating engine. {@link http://ejs.co}
401617
+ * @author Matthew Eernisse <mde@fleegix.org>
401618
+ * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
401619
+ * @project EJS
401620
+ * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
401621
+ *)
401622
+
401623
+ tmp/lib/tmp.js:
401624
+ (*!
401625
+ * Tmp
401626
+ *
401627
+ * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
401628
+ *
401629
+ * MIT Licensed
401630
+ *)
401631
+
401632
+ @angular-devkit/core/src/json/utils.js:
401633
+ (**
401634
+ * @license
401635
+ * Copyright Google LLC All Rights Reserved.
401636
+ *
401637
+ * Use of this source code is governed by an MIT-style license that can be
401638
+ * found in the LICENSE file at https://angular.io/license
401639
+ *)
401640
+
401641
+ @angular-devkit/core/src/json/schema/utility.js:
401642
+ (**
401643
+ * @license
401644
+ * Copyright Google LLC All Rights Reserved.
401645
+ *
401646
+ * Use of this source code is governed by an MIT-style license that can be
401647
+ * found in the LICENSE file at https://angular.io/license
401648
+ *)
401649
+
401650
+ @angular-devkit/core/src/json/schema/transforms.js:
401651
+ (**
401652
+ * @license
401653
+ * Copyright Google LLC All Rights Reserved.
401654
+ *
401655
+ * Use of this source code is governed by an MIT-style license that can be
401656
+ * found in the LICENSE file at https://angular.io/license
401657
+ *)
401658
+
401659
+ @angular-devkit/core/src/json/schema/interface.js:
401660
+ (**
401661
+ * @license
401662
+ * Copyright Google LLC All Rights Reserved.
401663
+ *
401664
+ * Use of this source code is governed by an MIT-style license that can be
401665
+ * found in the LICENSE file at https://angular.io/license
401666
+ *)
401667
+
401668
+ @angular-devkit/core/src/json/schema/pointer.js:
401669
+ (**
401670
+ * @license
401671
+ * Copyright Google LLC All Rights Reserved.
401672
+ *
401673
+ * Use of this source code is governed by an MIT-style license that can be
401674
+ * found in the LICENSE file at https://angular.io/license
401675
+ *)
401676
+
401677
+ uri-js/dist/es5/uri.all.js:
401678
+ (** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js *)
401679
+
401680
+ @angular-devkit/core/src/exception.js:
401681
+ (**
401682
+ * @license
401683
+ * Copyright Google LLC All Rights Reserved.
401684
+ *
401685
+ * Use of this source code is governed by an MIT-style license that can be
401686
+ * found in the LICENSE file at https://angular.io/license
401687
+ *)
401688
+
401689
+ @angular-devkit/core/src/utils/literals.js:
401690
+ (**
401691
+ * @license
401692
+ * Copyright Google LLC All Rights Reserved.
401693
+ *
401694
+ * Use of this source code is governed by an MIT-style license that can be
401695
+ * found in the LICENSE file at https://angular.io/license
401696
+ *)
401697
+
401698
+ @angular-devkit/core/src/utils/strings.js:
401699
+ (**
401700
+ * @license
401701
+ * Copyright Google LLC All Rights Reserved.
401702
+ *
401703
+ * Use of this source code is governed by an MIT-style license that can be
401704
+ * found in the LICENSE file at https://angular.io/license
401705
+ *)
401706
+
401707
+ @angular-devkit/core/src/utils/object.js:
401708
+ (**
401709
+ * @license
401710
+ * Copyright Google LLC All Rights Reserved.
401711
+ *
401712
+ * Use of this source code is governed by an MIT-style license that can be
401713
+ * found in the LICENSE file at https://angular.io/license
401714
+ *)
401715
+
401716
+ @angular-devkit/core/src/utils/template.js:
401717
+ (**
401718
+ * @license
401719
+ * Copyright Google LLC All Rights Reserved.
401720
+ *
401721
+ * Use of this source code is governed by an MIT-style license that can be
401722
+ * found in the LICENSE file at https://angular.io/license
401723
+ *)
401724
+
401725
+ @angular-devkit/core/src/utils/partially-ordered-set.js:
401726
+ (**
401727
+ * @license
401728
+ * Copyright Google LLC All Rights Reserved.
401729
+ *
401730
+ * Use of this source code is governed by an MIT-style license that can be
401731
+ * found in the LICENSE file at https://angular.io/license
401732
+ *)
401733
+
401734
+ @angular-devkit/core/src/utils/priority-queue.js:
401735
+ (**
401736
+ * @license
401737
+ * Copyright Google LLC All Rights Reserved.
401738
+ *
401739
+ * Use of this source code is governed by an MIT-style license that can be
401740
+ * found in the LICENSE file at https://angular.io/license
401741
+ *)
401742
+
401743
+ @angular-devkit/core/src/utils/lang.js:
401744
+ (**
401745
+ * @license
401746
+ * Copyright Google LLC All Rights Reserved.
401747
+ *
401748
+ * Use of this source code is governed by an MIT-style license that can be
401749
+ * found in the LICENSE file at https://angular.io/license
401750
+ *)
401751
+
401752
+ @angular-devkit/core/src/utils/index.js:
401753
+ (**
401754
+ * @license
401755
+ * Copyright Google LLC All Rights Reserved.
401756
+ *
401757
+ * Use of this source code is governed by an MIT-style license that can be
401758
+ * found in the LICENSE file at https://angular.io/license
401759
+ *)
401760
+
401761
+ @angular-devkit/core/src/json/schema/visitor.js:
401762
+ (**
401763
+ * @license
401764
+ * Copyright Google LLC All Rights Reserved.
401765
+ *
401766
+ * Use of this source code is governed by an MIT-style license that can be
401767
+ * found in the LICENSE file at https://angular.io/license
401768
+ *)
401769
+
401770
+ @angular-devkit/core/src/json/schema/registry.js:
401771
+ (**
401772
+ * @license
401773
+ * Copyright Google LLC All Rights Reserved.
401774
+ *
401775
+ * Use of this source code is governed by an MIT-style license that can be
401776
+ * found in the LICENSE file at https://angular.io/license
401777
+ *)
401778
+
401779
+ @angular-devkit/core/src/json/schema/schema.js:
401780
+ (**
401781
+ * @license
401782
+ * Copyright Google LLC All Rights Reserved.
401783
+ *
401784
+ * Use of this source code is governed by an MIT-style license that can be
401785
+ * found in the LICENSE file at https://angular.io/license
401786
+ *)
401787
+
401788
+ @angular-devkit/core/src/json/schema/index.js:
401789
+ (**
401790
+ * @license
401791
+ * Copyright Google LLC All Rights Reserved.
401792
+ *
401793
+ * Use of this source code is governed by an MIT-style license that can be
401794
+ * found in the LICENSE file at https://angular.io/license
401795
+ *)
401796
+
401797
+ @angular-devkit/core/src/json/index.js:
401798
+ (**
401799
+ * @license
401800
+ * Copyright Google LLC All Rights Reserved.
401801
+ *
401802
+ * Use of this source code is governed by an MIT-style license that can be
401803
+ * found in the LICENSE file at https://angular.io/license
401804
+ *)
401805
+
401806
+ @angular-devkit/core/src/logger/logger.js:
401807
+ (**
401808
+ * @license
401809
+ * Copyright Google LLC All Rights Reserved.
401810
+ *
401811
+ * Use of this source code is governed by an MIT-style license that can be
401812
+ * found in the LICENSE file at https://angular.io/license
401813
+ *)
401814
+
401815
+ @angular-devkit/core/src/logger/indent.js:
401816
+ (**
401817
+ * @license
401818
+ * Copyright Google LLC All Rights Reserved.
401819
+ *
401820
+ * Use of this source code is governed by an MIT-style license that can be
401821
+ * found in the LICENSE file at https://angular.io/license
401822
+ *)
401823
+
401824
+ @angular-devkit/core/src/logger/level.js:
401825
+ (**
401826
+ * @license
401827
+ * Copyright Google LLC All Rights Reserved.
401828
+ *
401829
+ * Use of this source code is governed by an MIT-style license that can be
401830
+ * found in the LICENSE file at https://angular.io/license
401831
+ *)
401832
+
401833
+ @angular-devkit/core/src/logger/null-logger.js:
401834
+ (**
401835
+ * @license
401836
+ * Copyright Google LLC All Rights Reserved.
401837
+ *
401838
+ * Use of this source code is governed by an MIT-style license that can be
401839
+ * found in the LICENSE file at https://angular.io/license
401840
+ *)
401841
+
401842
+ @angular-devkit/core/src/logger/transform-logger.js:
401843
+ (**
401844
+ * @license
401845
+ * Copyright Google LLC All Rights Reserved.
401846
+ *
401847
+ * Use of this source code is governed by an MIT-style license that can be
401848
+ * found in the LICENSE file at https://angular.io/license
401849
+ *)
401850
+
401851
+ @angular-devkit/core/src/logger/index.js:
401852
+ (**
401853
+ * @license
401854
+ * Copyright Google LLC All Rights Reserved.
401855
+ *
401856
+ * Use of this source code is governed by an MIT-style license that can be
401857
+ * found in the LICENSE file at https://angular.io/license
401858
+ *)
401859
+
401860
+ @angular-devkit/core/src/workspace/definitions.js:
401861
+ (**
401862
+ * @license
401863
+ * Copyright Google LLC All Rights Reserved.
401864
+ *
401865
+ * Use of this source code is governed by an MIT-style license that can be
401866
+ * found in the LICENSE file at https://angular.io/license
401867
+ *)
401868
+
401869
+ @angular-devkit/core/src/virtual-fs/path.js:
401870
+ (**
401871
+ * @license
401872
+ * Copyright Google LLC All Rights Reserved.
401873
+ *
401874
+ * Use of this source code is governed by an MIT-style license that can be
401875
+ * found in the LICENSE file at https://angular.io/license
401876
+ *)
401877
+
401878
+ @angular-devkit/core/src/virtual-fs/host/buffer.js:
401879
+ (**
401880
+ * @license
401881
+ * Copyright Google LLC All Rights Reserved.
401882
+ *
401883
+ * Use of this source code is governed by an MIT-style license that can be
401884
+ * found in the LICENSE file at https://angular.io/license
401885
+ *)
401886
+
401887
+ @angular-devkit/core/src/virtual-fs/host/interface.js:
401888
+ (**
401889
+ * @license
401890
+ * Copyright Google LLC All Rights Reserved.
401891
+ *
401892
+ * Use of this source code is governed by an MIT-style license that can be
401893
+ * found in the LICENSE file at https://angular.io/license
401894
+ *)
401895
+
401896
+ @angular-devkit/core/src/virtual-fs/host/memory.js:
401897
+ (**
401898
+ * @license
401899
+ * Copyright Google LLC All Rights Reserved.
401900
+ *
401901
+ * Use of this source code is governed by an MIT-style license that can be
401902
+ * found in the LICENSE file at https://angular.io/license
401903
+ *)
401904
+
401905
+ @angular-devkit/core/src/virtual-fs/host/sync.js:
401906
+ (**
401907
+ * @license
401908
+ * Copyright Google LLC All Rights Reserved.
401909
+ *
401910
+ * Use of this source code is governed by an MIT-style license that can be
401911
+ * found in the LICENSE file at https://angular.io/license
401912
+ *)
401913
+
401914
+ @angular-devkit/core/src/virtual-fs/host/test.js:
401915
+ (**
401916
+ * @license
401917
+ * Copyright Google LLC All Rights Reserved.
401918
+ *
401919
+ * Use of this source code is governed by an MIT-style license that can be
401920
+ * found in the LICENSE file at https://angular.io/license
401921
+ *)
401922
+
401923
+ @angular-devkit/core/src/virtual-fs/host/resolver.js:
401924
+ (**
401925
+ * @license
401926
+ * Copyright Google LLC All Rights Reserved.
401927
+ *
401928
+ * Use of this source code is governed by an MIT-style license that can be
401929
+ * found in the LICENSE file at https://angular.io/license
401930
+ *)
401931
+
401932
+ @angular-devkit/core/src/virtual-fs/host/alias.js:
401933
+ (**
401934
+ * @license
401935
+ * Copyright Google LLC All Rights Reserved.
401936
+ *
401937
+ * Use of this source code is governed by an MIT-style license that can be
401938
+ * found in the LICENSE file at https://angular.io/license
401939
+ *)
401940
+
401941
+ @angular-devkit/core/src/virtual-fs/host/create.js:
401942
+ (**
401943
+ * @license
401944
+ * Copyright Google LLC All Rights Reserved.
401945
+ *
401946
+ * Use of this source code is governed by an MIT-style license that can be
401947
+ * found in the LICENSE file at https://angular.io/license
401948
+ *)
401949
+
401950
+ @angular-devkit/core/src/virtual-fs/host/empty.js:
401951
+ (**
401952
+ * @license
401953
+ * Copyright Google LLC All Rights Reserved.
401954
+ *
401955
+ * Use of this source code is governed by an MIT-style license that can be
401956
+ * found in the LICENSE file at https://angular.io/license
401957
+ *)
401958
+
401959
+ @angular-devkit/core/src/virtual-fs/host/pattern.js:
401960
+ (**
401961
+ * @license
401962
+ * Copyright Google LLC All Rights Reserved.
401963
+ *
401964
+ * Use of this source code is governed by an MIT-style license that can be
401965
+ * found in the LICENSE file at https://angular.io/license
401966
+ *)
401967
+
401968
+ @angular-devkit/core/src/virtual-fs/host/record.js:
401969
+ (**
401970
+ * @license
401971
+ * Copyright Google LLC All Rights Reserved.
401972
+ *
401973
+ * Use of this source code is governed by an MIT-style license that can be
401974
+ * found in the LICENSE file at https://angular.io/license
401975
+ *)
401976
+
401977
+ @angular-devkit/core/src/virtual-fs/host/safe.js:
401978
+ (**
401979
+ * @license
401980
+ * Copyright Google LLC All Rights Reserved.
401981
+ *
401982
+ * Use of this source code is governed by an MIT-style license that can be
401983
+ * found in the LICENSE file at https://angular.io/license
401984
+ *)
401985
+
401986
+ @angular-devkit/core/src/virtual-fs/host/scoped.js:
401987
+ (**
401988
+ * @license
401989
+ * Copyright Google LLC All Rights Reserved.
401990
+ *
401991
+ * Use of this source code is governed by an MIT-style license that can be
401992
+ * found in the LICENSE file at https://angular.io/license
401993
+ *)
401994
+
401995
+ @angular-devkit/core/src/virtual-fs/host/index.js:
401996
+ (**
401997
+ * @license
401998
+ * Copyright Google LLC All Rights Reserved.
401999
+ *
402000
+ * Use of this source code is governed by an MIT-style license that can be
402001
+ * found in the LICENSE file at https://angular.io/license
402002
+ *)
402003
+
402004
+ @angular-devkit/core/src/virtual-fs/index.js:
402005
+ (**
402006
+ * @license
402007
+ * Copyright Google LLC All Rights Reserved.
402008
+ *
402009
+ * Use of this source code is governed by an MIT-style license that can be
402010
+ * found in the LICENSE file at https://angular.io/license
402011
+ *)
402012
+
402013
+ @angular-devkit/core/src/workspace/host.js:
402014
+ (**
402015
+ * @license
402016
+ * Copyright Google LLC All Rights Reserved.
402017
+ *
402018
+ * Use of this source code is governed by an MIT-style license that can be
402019
+ * found in the LICENSE file at https://angular.io/license
402020
+ *)
402021
+
402022
+ @angular-devkit/core/src/workspace/json/metadata.js:
402023
+ (**
402024
+ * @license
402025
+ * Copyright Google LLC All Rights Reserved.
402026
+ *
402027
+ * Use of this source code is governed by an MIT-style license that can be
402028
+ * found in the LICENSE file at https://angular.io/license
402029
+ *)
402030
+
402031
+ @angular-devkit/core/src/workspace/json/utilities.js:
402032
+ (**
402033
+ * @license
402034
+ * Copyright Google LLC All Rights Reserved.
402035
+ *
402036
+ * Use of this source code is governed by an MIT-style license that can be
402037
+ * found in the LICENSE file at https://angular.io/license
402038
+ *)
402039
+
402040
+ @angular-devkit/core/src/workspace/json/reader.js:
402041
+ (**
402042
+ * @license
402043
+ * Copyright Google LLC All Rights Reserved.
402044
+ *
402045
+ * Use of this source code is governed by an MIT-style license that can be
402046
+ * found in the LICENSE file at https://angular.io/license
402047
+ *)
402048
+
402049
+ @angular-devkit/core/src/workspace/json/writer.js:
402050
+ (**
402051
+ * @license
402052
+ * Copyright Google LLC All Rights Reserved.
402053
+ *
402054
+ * Use of this source code is governed by an MIT-style license that can be
402055
+ * found in the LICENSE file at https://angular.io/license
402056
+ *)
402057
+
402058
+ @angular-devkit/core/src/workspace/core.js:
402059
+ (**
402060
+ * @license
402061
+ * Copyright Google LLC All Rights Reserved.
402062
+ *
402063
+ * Use of this source code is governed by an MIT-style license that can be
402064
+ * found in the LICENSE file at https://angular.io/license
402065
+ *)
402066
+
402067
+ @angular-devkit/core/src/workspace/index.js:
402068
+ (**
402069
+ * @license
402070
+ * Copyright Google LLC All Rights Reserved.
402071
+ *
402072
+ * Use of this source code is governed by an MIT-style license that can be
402073
+ * found in the LICENSE file at https://angular.io/license
402074
+ *)
402075
+
402076
+ @angular-devkit/core/src/index.js:
402077
+ (**
402078
+ * @license
402079
+ * Copyright Google LLC All Rights Reserved.
402080
+ *
402081
+ * Use of this source code is governed by an MIT-style license that can be
402082
+ * found in the LICENSE file at https://angular.io/license
402083
+ *)
402084
+
402085
+ @angular-devkit/schematics/src/formats/html-selector.js:
402086
+ (**
402087
+ * @license
402088
+ * Copyright Google LLC All Rights Reserved.
402089
+ *
402090
+ * Use of this source code is governed by an MIT-style license that can be
402091
+ * found in the LICENSE file at https://angular.io/license
402092
+ *)
402093
+
402094
+ @angular-devkit/schematics/src/formats/path.js:
402095
+ (**
402096
+ * @license
402097
+ * Copyright Google LLC All Rights Reserved.
402098
+ *
402099
+ * Use of this source code is governed by an MIT-style license that can be
402100
+ * found in the LICENSE file at https://angular.io/license
402101
+ *)
402102
+
402103
+ @angular-devkit/schematics/src/formats/index.js:
402104
+ (**
402105
+ * @license
402106
+ * Copyright Google LLC All Rights Reserved.
402107
+ *
402108
+ * Use of this source code is governed by an MIT-style license that can be
402109
+ * found in the LICENSE file at https://angular.io/license
402110
+ *)
402111
+
402112
+ @angular-devkit/schematics/src/tree/interface.js:
402113
+ (**
402114
+ * @license
402115
+ * Copyright Google LLC All Rights Reserved.
402116
+ *
402117
+ * Use of this source code is governed by an MIT-style license that can be
402118
+ * found in the LICENSE file at https://angular.io/license
402119
+ *)
402120
+
402121
+ @angular-devkit/schematics/src/exception/exception.js:
402122
+ (**
402123
+ * @license
402124
+ * Copyright Google LLC All Rights Reserved.
402125
+ *
402126
+ * Use of this source code is governed by an MIT-style license that can be
402127
+ * found in the LICENSE file at https://angular.io/license
402128
+ *)
402129
+
402130
+ @angular-devkit/schematics/src/tree/delegate.js:
402131
+ (**
402132
+ * @license
402133
+ * Copyright Google LLC All Rights Reserved.
402134
+ *
402135
+ * Use of this source code is governed by an MIT-style license that can be
402136
+ * found in the LICENSE file at https://angular.io/license
402137
+ *)
402138
+
402139
+ @angular-devkit/schematics/src/tree/entry.js:
402140
+ (**
402141
+ * @license
402142
+ * Copyright Google LLC All Rights Reserved.
402143
+ *
402144
+ * Use of this source code is governed by an MIT-style license that can be
402145
+ * found in the LICENSE file at https://angular.io/license
402146
+ *)
402147
+
402148
+ @angular-devkit/schematics/src/utility/update-buffer.js:
402149
+ (**
402150
+ * @license
402151
+ * Copyright Google LLC All Rights Reserved.
402152
+ *
402153
+ * Use of this source code is governed by an MIT-style license that can be
402154
+ * found in the LICENSE file at https://angular.io/license
402155
+ *)
402156
+
402157
+ @angular-devkit/schematics/src/tree/recorder.js:
402158
+ (**
402159
+ * @license
402160
+ * Copyright Google LLC All Rights Reserved.
402161
+ *
402162
+ * Use of this source code is governed by an MIT-style license that can be
402163
+ * found in the LICENSE file at https://angular.io/license
402164
+ *)
402165
+
402166
+ @angular-devkit/schematics/src/tree/scoped.js:
402167
+ (**
402168
+ * @license
402169
+ * Copyright Google LLC All Rights Reserved.
402170
+ *
402171
+ * Use of this source code is governed by an MIT-style license that can be
402172
+ * found in the LICENSE file at https://angular.io/license
402173
+ *)
402174
+
402175
+ @angular-devkit/schematics/src/tree/host-tree.js:
402176
+ (**
402177
+ * @license
402178
+ * Copyright Google LLC All Rights Reserved.
402179
+ *
402180
+ * Use of this source code is governed by an MIT-style license that can be
402181
+ * found in the LICENSE file at https://angular.io/license
402182
+ *)
402183
+
402184
+ @angular-devkit/schematics/src/tree/static.js:
402185
+ (**
402186
+ * @license
402187
+ * Copyright Google LLC All Rights Reserved.
402188
+ *
402189
+ * Use of this source code is governed by an MIT-style license that can be
402190
+ * found in the LICENSE file at https://angular.io/license
402191
+ *)
402192
+
402193
+ @angular-devkit/schematics/src/tree/null.js:
402194
+ (**
402195
+ * @license
402196
+ * Copyright Google LLC All Rights Reserved.
402197
+ *
402198
+ * Use of this source code is governed by an MIT-style license that can be
402199
+ * found in the LICENSE file at https://angular.io/license
402200
+ *)
402201
+
402202
+ @angular-devkit/schematics/src/rules/call.js:
402203
+ (**
402204
+ * @license
402205
+ * Copyright Google LLC All Rights Reserved.
402206
+ *
402207
+ * Use of this source code is governed by an MIT-style license that can be
402208
+ * found in the LICENSE file at https://angular.io/license
402209
+ *)
402210
+
402211
+ @angular-devkit/schematics/src/engine/schematic.js:
402212
+ (**
402213
+ * @license
402214
+ * Copyright Google LLC All Rights Reserved.
402215
+ *
402216
+ * Use of this source code is governed by an MIT-style license that can be
402217
+ * found in the LICENSE file at https://angular.io/license
402218
+ *)
402219
+
402220
+ @angular-devkit/schematics/src/engine/engine.js:
402221
+ (**
402222
+ * @license
402223
+ * Copyright Google LLC All Rights Reserved.
402224
+ *
402225
+ * Use of this source code is governed by an MIT-style license that can be
402226
+ * found in the LICENSE file at https://angular.io/license
402227
+ *)
402228
+
402229
+ @angular-devkit/schematics/src/engine/interface.js:
402230
+ (**
402231
+ * @license
402232
+ * Copyright Google LLC All Rights Reserved.
402233
+ *
402234
+ * Use of this source code is governed by an MIT-style license that can be
402235
+ * found in the LICENSE file at https://angular.io/license
402236
+ *)
402237
+
402238
+ @angular-devkit/schematics/src/engine/index.js:
402239
+ (**
402240
+ * @license
402241
+ * Copyright Google LLC All Rights Reserved.
402242
+ *
402243
+ * Use of this source code is governed by an MIT-style license that can be
402244
+ * found in the LICENSE file at https://angular.io/license
402245
+ *)
402246
+
402247
+ @angular-devkit/core/node/cli-logger.js:
402248
+ (**
402249
+ * @license
402250
+ * Copyright Google LLC All Rights Reserved.
402251
+ *
402252
+ * Use of this source code is governed by an MIT-style license that can be
402253
+ * found in the LICENSE file at https://angular.io/license
402254
+ *)
402255
+
402256
+ normalize-path/index.js:
402257
+ (*!
402258
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
402259
+ *
402260
+ * Copyright (c) 2014-2018, Jon Schlinkert.
402261
+ * Released under the MIT License.
402262
+ *)
402263
+
402264
+ is-extglob/index.js:
402265
+ (*!
402266
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
402267
+ *
402268
+ * Copyright (c) 2014-2016, Jon Schlinkert.
402269
+ * Licensed under the MIT License.
402270
+ *)
402271
+
402272
+ is-glob/index.js:
402273
+ (*!
402274
+ * is-glob <https://github.com/jonschlinkert/is-glob>
402275
+ *
402276
+ * Copyright (c) 2014-2017, Jon Schlinkert.
402277
+ * Released under the MIT License.
402278
+ *)
402279
+
402280
+ is-number/index.js:
402281
+ (*!
402282
+ * is-number <https://github.com/jonschlinkert/is-number>
402283
+ *
402284
+ * Copyright (c) 2014-present, Jon Schlinkert.
402285
+ * Released under the MIT License.
402286
+ *)
402287
+
402288
+ to-regex-range/index.js:
402289
+ (*!
402290
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
402291
+ *
402292
+ * Copyright (c) 2015-present, Jon Schlinkert.
402293
+ * Released under the MIT License.
402294
+ *)
402295
+
402296
+ fill-range/index.js:
402297
+ (*!
402298
+ * fill-range <https://github.com/jonschlinkert/fill-range>
402299
+ *
402300
+ * Copyright (c) 2014-present, Jon Schlinkert.
402301
+ * Licensed under the MIT License.
402302
+ *)
402303
+
402304
+ @angular-devkit/core/node/host.js:
402305
+ (**
402306
+ * @license
402307
+ * Copyright Google LLC All Rights Reserved.
402308
+ *
402309
+ * Use of this source code is governed by an MIT-style license that can be
402310
+ * found in the LICENSE file at https://angular.io/license
402311
+ *)
402312
+
402313
+ @angular-devkit/core/node/index.js:
402314
+ (**
402315
+ * @license
402316
+ * Copyright Google LLC All Rights Reserved.
402317
+ *
402318
+ * Use of this source code is governed by an MIT-style license that can be
402319
+ * found in the LICENSE file at https://angular.io/license
402320
+ *)
402321
+
402322
+ @angular-devkit/schematics/src/tree/action.js:
402323
+ (**
402324
+ * @license
402325
+ * Copyright Google LLC All Rights Reserved.
402326
+ *
402327
+ * Use of this source code is governed by an MIT-style license that can be
402328
+ * found in the LICENSE file at https://angular.io/license
402329
+ *)
402330
+
402331
+ @angular-devkit/schematics/src/sink/sink.js:
402332
+ (**
402333
+ * @license
402334
+ * Copyright Google LLC All Rights Reserved.
402335
+ *
402336
+ * Use of this source code is governed by an MIT-style license that can be
402337
+ * found in the LICENSE file at https://angular.io/license
402338
+ *)
402339
+
402340
+ @angular-devkit/schematics/src/sink/host.js:
402341
+ (**
402342
+ * @license
402343
+ * Copyright Google LLC All Rights Reserved.
402344
+ *
402345
+ * Use of this source code is governed by an MIT-style license that can be
402346
+ * found in the LICENSE file at https://angular.io/license
402347
+ *)
402348
+
402349
+ @angular-devkit/schematics/src/sink/dryrun.js:
402350
+ (**
402351
+ * @license
402352
+ * Copyright Google LLC All Rights Reserved.
402353
+ *
402354
+ * Use of this source code is governed by an MIT-style license that can be
402355
+ * found in the LICENSE file at https://angular.io/license
402356
+ *)
402357
+
402358
+ @angular-devkit/schematics/src/workflow/base.js:
402359
+ (**
402360
+ * @license
402361
+ * Copyright Google LLC All Rights Reserved.
402362
+ *
402363
+ * Use of this source code is governed by an MIT-style license that can be
402364
+ * found in the LICENSE file at https://angular.io/license
402365
+ *)
402366
+
402367
+ @angular-devkit/schematics/src/workflow/interface.js:
402368
+ (**
402369
+ * @license
402370
+ * Copyright Google LLC All Rights Reserved.
402371
+ *
402372
+ * Use of this source code is governed by an MIT-style license that can be
402373
+ * found in the LICENSE file at https://angular.io/license
402374
+ *)
402375
+
402376
+ @angular-devkit/schematics/src/workflow/index.js:
402377
+ (**
402378
+ * @license
402379
+ * Copyright Google LLC All Rights Reserved.
402380
+ *
402381
+ * Use of this source code is governed by an MIT-style license that can be
402382
+ * found in the LICENSE file at https://angular.io/license
402383
+ *)
402384
+
402385
+ @angular-devkit/schematics/src/rules/base.js:
402386
+ (**
402387
+ * @license
402388
+ * Copyright Google LLC All Rights Reserved.
402389
+ *
402390
+ * Use of this source code is governed by an MIT-style license that can be
402391
+ * found in the LICENSE file at https://angular.io/license
402392
+ *)
402393
+
402394
+ @angular-devkit/schematics/src/rules/move.js:
402395
+ (**
402396
+ * @license
402397
+ * Copyright Google LLC All Rights Reserved.
402398
+ *
402399
+ * Use of this source code is governed by an MIT-style license that can be
402400
+ * found in the LICENSE file at https://angular.io/license
402401
+ *)
402402
+
402403
+ @angular-devkit/schematics/src/rules/random.js:
402404
+ (**
402405
+ * @license
402406
+ * Copyright Google LLC All Rights Reserved.
402407
+ *
402408
+ * Use of this source code is governed by an MIT-style license that can be
402409
+ * found in the LICENSE file at https://angular.io/license
402410
+ *)
402411
+
402412
+ @angular-devkit/schematics/src/rules/schematic.js:
402413
+ (**
402414
+ * @license
402415
+ * Copyright Google LLC All Rights Reserved.
402416
+ *
402417
+ * Use of this source code is governed by an MIT-style license that can be
402418
+ * found in the LICENSE file at https://angular.io/license
402419
+ *)
402420
+
402421
+ @angular-devkit/schematics/src/rules/template.js:
402422
+ (**
402423
+ * @license
402424
+ * Copyright Google LLC All Rights Reserved.
402425
+ *
402426
+ * Use of this source code is governed by an MIT-style license that can be
402427
+ * found in the LICENSE file at https://angular.io/license
402428
+ *)
402429
+
402430
+ @angular-devkit/schematics/src/rules/url.js:
402431
+ (**
402432
+ * @license
402433
+ * Copyright Google LLC All Rights Reserved.
402434
+ *
402435
+ * Use of this source code is governed by an MIT-style license that can be
402436
+ * found in the LICENSE file at https://angular.io/license
402437
+ *)
402438
+
402439
+ @angular-devkit/schematics/src/tree/empty.js:
402440
+ (**
402441
+ * @license
402442
+ * Copyright Google LLC All Rights Reserved.
402443
+ *
402444
+ * Use of this source code is governed by an MIT-style license that can be
402445
+ * found in the LICENSE file at https://angular.io/license
402446
+ *)
402447
+
402448
+ @angular-devkit/schematics/src/index.js:
402449
+ (**
402450
+ * @license
402451
+ * Copyright Google LLC All Rights Reserved.
402452
+ *
402453
+ * Use of this source code is governed by an MIT-style license that can be
402454
+ * found in the LICENSE file at https://angular.io/license
402455
+ *)
402456
+
402457
+ @angular-devkit/schematics/tasks/package-manager/options.js:
402458
+ (**
402459
+ * @license
402460
+ * Copyright Google LLC All Rights Reserved.
402461
+ *
402462
+ * Use of this source code is governed by an MIT-style license that can be
402463
+ * found in the LICENSE file at https://angular.io/license
402464
+ *)
402465
+
402466
+ @angular-devkit/schematics/tasks/repo-init/options.js:
402467
+ (**
402468
+ * @license
402469
+ * Copyright Google LLC All Rights Reserved.
402470
+ *
402471
+ * Use of this source code is governed by an MIT-style license that can be
402472
+ * found in the LICENSE file at https://angular.io/license
402473
+ *)
402474
+
402475
+ @angular-devkit/schematics/tasks/run-schematic/options.js:
402476
+ (**
402477
+ * @license
402478
+ * Copyright Google LLC All Rights Reserved.
402479
+ *
402480
+ * Use of this source code is governed by an MIT-style license that can be
402481
+ * found in the LICENSE file at https://angular.io/license
402482
+ *)
402483
+
402484
+ safe-buffer/index.js:
402485
+ (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
402486
+
402487
+ @angular-devkit/schematics/tasks/package-manager/executor.js:
402488
+ (**
402489
+ * @license
402490
+ * Copyright Google LLC All Rights Reserved.
402491
+ *
402492
+ * Use of this source code is governed by an MIT-style license that can be
402493
+ * found in the LICENSE file at https://angular.io/license
402494
+ *)
402495
+
402496
+ @angular-devkit/schematics/tasks/repo-init/executor.js:
402497
+ (**
402498
+ * @license
402499
+ * Copyright Google LLC All Rights Reserved.
402500
+ *
402501
+ * Use of this source code is governed by an MIT-style license that can be
402502
+ * found in the LICENSE file at https://angular.io/license
402503
+ *)
402504
+
402505
+ @angular-devkit/schematics/tasks/run-schematic/executor.js:
402506
+ (**
402507
+ * @license
402508
+ * Copyright Google LLC All Rights Reserved.
402509
+ *
402510
+ * Use of this source code is governed by an MIT-style license that can be
402511
+ * found in the LICENSE file at https://angular.io/license
402512
+ *)
402513
+
402514
+ @angular-devkit/schematics/tasks/node/index.js:
402515
+ (**
402516
+ * @license
402517
+ * Copyright Google LLC All Rights Reserved.
402518
+ *
402519
+ * Use of this source code is governed by an MIT-style license that can be
402520
+ * found in the LICENSE file at https://angular.io/license
402521
+ *)
402522
+
402523
+ @angular-devkit/schematics/tools/description.js:
402524
+ (**
402525
+ * @license
402526
+ * Copyright Google LLC All Rights Reserved.
402527
+ *
402528
+ * Use of this source code is governed by an MIT-style license that can be
402529
+ * found in the LICENSE file at https://angular.io/license
402530
+ *)
402531
+
402532
+ @angular-devkit/schematics/tools/export-ref.js:
402533
+ (**
402534
+ * @license
402535
+ * Copyright Google LLC All Rights Reserved.
402536
+ *
402537
+ * Use of this source code is governed by an MIT-style license that can be
402538
+ * found in the LICENSE file at https://angular.io/license
402539
+ *)
402540
+
402541
+ @angular-devkit/schematics/tools/file-system-utility.js:
402542
+ (**
402543
+ * @license
402544
+ * Copyright Google LLC All Rights Reserved.
402545
+ *
402546
+ * Use of this source code is governed by an MIT-style license that can be
402547
+ * found in the LICENSE file at https://angular.io/license
402548
+ *)
402549
+
402550
+ @angular-devkit/schematics/tools/file-system-engine-host-base.js:
402551
+ (**
402552
+ * @license
402553
+ * Copyright Google LLC All Rights Reserved.
402554
+ *
402555
+ * Use of this source code is governed by an MIT-style license that can be
402556
+ * found in the LICENSE file at https://angular.io/license
402557
+ *)
402558
+
402559
+ @angular-devkit/schematics/tools/node-module-engine-host.js:
402560
+ (**
402561
+ * @license
402562
+ * Copyright Google LLC All Rights Reserved.
402563
+ *
402564
+ * Use of this source code is governed by an MIT-style license that can be
402565
+ * found in the LICENSE file at https://angular.io/license
402566
+ *)
402567
+
402568
+ @angular-devkit/schematics/tools/schema-option-transform.js:
402569
+ (**
402570
+ * @license
402571
+ * Copyright Google LLC All Rights Reserved.
402572
+ *
402573
+ * Use of this source code is governed by an MIT-style license that can be
402574
+ * found in the LICENSE file at https://angular.io/license
402575
+ *)
402576
+
402577
+ @angular-devkit/schematics/tools/workflow/node-workflow.js:
402578
+ (**
402579
+ * @license
402580
+ * Copyright Google LLC All Rights Reserved.
402581
+ *
402582
+ * Use of this source code is governed by an MIT-style license that can be
402583
+ * found in the LICENSE file at https://angular.io/license
402584
+ *)
402585
+
402586
+ @angular-devkit/schematics/tools/file-system-engine-host.js:
402587
+ (**
402588
+ * @license
402589
+ * Copyright Google LLC All Rights Reserved.
402590
+ *
402591
+ * Use of this source code is governed by an MIT-style license that can be
402592
+ * found in the LICENSE file at https://angular.io/license
402593
+ *)
402594
+
402595
+ @angular-devkit/schematics/tools/node-modules-test-engine-host.js:
402596
+ (**
402597
+ * @license
402598
+ * Copyright Google LLC All Rights Reserved.
402599
+ *
402600
+ * Use of this source code is governed by an MIT-style license that can be
402601
+ * found in the LICENSE file at https://angular.io/license
402602
+ *)
402603
+
402604
+ @angular-devkit/schematics/tools/index.js:
402605
+ (**
402606
+ * @license
402607
+ * Copyright Google LLC All Rights Reserved.
402608
+ *
402609
+ * Use of this source code is governed by an MIT-style license that can be
402610
+ * found in the LICENSE file at https://angular.io/license
402611
+ *)
402612
+
402613
+ @angular-devkit/schematics/testing/schematic-test-runner.js:
402614
+ (**
402615
+ * @license
402616
+ * Copyright Google LLC All Rights Reserved.
402617
+ *
402618
+ * Use of this source code is governed by an MIT-style license that can be
402619
+ * found in the LICENSE file at https://angular.io/license
402620
+ *)
402621
+
402622
+ @angular-devkit/schematics/testing/index.js:
402623
+ (**
402624
+ * @license
402625
+ * Copyright Google LLC All Rights Reserved.
402626
+ *
402627
+ * Use of this source code is governed by an MIT-style license that can be
402628
+ * found in the LICENSE file at https://angular.io/license
402629
+ *)
402630
+
402631
+ @angular-devkit/architect/src/jobs/api.js:
402632
+ (**
402633
+ * @license
402634
+ * Copyright Google LLC All Rights Reserved.
402635
+ *
402636
+ * Use of this source code is governed by an MIT-style license that can be
402637
+ * found in the LICENSE file at https://angular.io/license
402638
+ *)
402639
+
402640
+ @angular-devkit/architect/src/jobs/strategy.js:
402641
+ (**
402642
+ * @license
402643
+ * Copyright Google LLC All Rights Reserved.
402644
+ *
402645
+ * Use of this source code is governed by an MIT-style license that can be
402646
+ * found in the LICENSE file at https://angular.io/license
402647
+ *)
402648
+
402649
+ @angular-devkit/architect/src/jobs/create-job-handler.js:
402650
+ (**
402651
+ * @license
402652
+ * Copyright Google LLC All Rights Reserved.
402653
+ *
402654
+ * Use of this source code is governed by an MIT-style license that can be
402655
+ * found in the LICENSE file at https://angular.io/license
402656
+ *)
402657
+
402658
+ @angular-devkit/architect/src/jobs/exception.js:
402659
+ (**
402660
+ * @license
402661
+ * Copyright Google LLC All Rights Reserved.
402662
+ *
402663
+ * Use of this source code is governed by an MIT-style license that can be
402664
+ * found in the LICENSE file at https://angular.io/license
402665
+ *)
402666
+
402667
+ @angular-devkit/architect/src/jobs/dispatcher.js:
402668
+ (**
402669
+ * @license
402670
+ * Copyright Google LLC All Rights Reserved.
402671
+ *
402672
+ * Use of this source code is governed by an MIT-style license that can be
402673
+ * found in the LICENSE file at https://angular.io/license
402674
+ *)
402675
+
402676
+ @angular-devkit/architect/src/jobs/fallback-registry.js:
402677
+ (**
402678
+ * @license
402679
+ * Copyright Google LLC All Rights Reserved.
402680
+ *
402681
+ * Use of this source code is governed by an MIT-style license that can be
402682
+ * found in the LICENSE file at https://angular.io/license
402683
+ *)
402684
+
402685
+ @angular-devkit/architect/src/jobs/simple-registry.js:
402686
+ (**
402687
+ * @license
402688
+ * Copyright Google LLC All Rights Reserved.
402689
+ *
402690
+ * Use of this source code is governed by an MIT-style license that can be
402691
+ * found in the LICENSE file at https://angular.io/license
402692
+ *)
402693
+
402694
+ @angular-devkit/architect/src/jobs/simple-scheduler.js:
402695
+ (**
402696
+ * @license
402697
+ * Copyright Google LLC All Rights Reserved.
402698
+ *
402699
+ * Use of this source code is governed by an MIT-style license that can be
402700
+ * found in the LICENSE file at https://angular.io/license
402701
+ *)
402702
+
402703
+ @angular-devkit/architect/src/jobs/index.js:
402704
+ (**
402705
+ * @license
402706
+ * Copyright Google LLC All Rights Reserved.
402707
+ *
402708
+ * Use of this source code is governed by an MIT-style license that can be
402709
+ * found in the LICENSE file at https://angular.io/license
402710
+ *)
402711
+
402712
+ @angular-devkit/architect/src/api.js:
402713
+ (**
402714
+ * @license
402715
+ * Copyright Google LLC All Rights Reserved.
402716
+ *
402717
+ * Use of this source code is governed by an MIT-style license that can be
402718
+ * found in the LICENSE file at https://angular.io/license
402719
+ *)
402720
+
402721
+ @angular-devkit/architect/src/schedule-by-name.js:
402722
+ (**
402723
+ * @license
402724
+ * Copyright Google LLC All Rights Reserved.
402725
+ *
402726
+ * Use of this source code is governed by an MIT-style license that can be
402727
+ * found in the LICENSE file at https://angular.io/license
402728
+ *)
402729
+
402730
+ @angular-devkit/architect/src/architect.js:
402731
+ (**
402732
+ * @license
402733
+ * Copyright Google LLC All Rights Reserved.
402734
+ *
402735
+ * Use of this source code is governed by an MIT-style license that can be
402736
+ * found in the LICENSE file at https://angular.io/license
402737
+ *)
402738
+
402739
+ @angular-devkit/architect/src/internal.js:
402740
+ (**
402741
+ * @license
402742
+ * Copyright Google LLC All Rights Reserved.
402743
+ *
402744
+ * Use of this source code is governed by an MIT-style license that can be
402745
+ * found in the LICENSE file at https://angular.io/license
402746
+ *)
402747
+
402748
+ @angular-devkit/architect/src/create-builder.js:
402749
+ (**
402750
+ * @license
402751
+ * Copyright Google LLC All Rights Reserved.
402752
+ *
402753
+ * Use of this source code is governed by an MIT-style license that can be
402754
+ * found in the LICENSE file at https://angular.io/license
402755
+ *)
402756
+
402757
+ @angular-devkit/architect/src/index.js:
402758
+ (**
402759
+ * @license
402760
+ * Copyright Google LLC All Rights Reserved.
402761
+ *
402762
+ * Use of this source code is governed by an MIT-style license that can be
402763
+ * found in the LICENSE file at https://angular.io/license
402764
+ *)
402765
+
402766
+ queue-microtask/index.js:
402767
+ (*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
402768
+
402769
+ run-parallel/index.js:
402770
+ (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
402771
+ */