@storm-software/workspace-tools 1.60.7 → 1.60.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ const require = (await import('node:module')).createRequire(import.meta.url);
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -9965,6 +9966,20 @@ var require_source_map_support = __commonJS({
9965
9966
  var require_typescript = __commonJS({
9966
9967
  "node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
9967
9968
  "use strict";
9969
+ /*! *****************************************************************************
9970
+ Copyright (c) Microsoft Corporation. All rights reserved.
9971
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
9972
+ this file except in compliance with the License. You may obtain a copy of the
9973
+ License at http://www.apache.org/licenses/LICENSE-2.0
9974
+
9975
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
9976
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9977
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
9978
+ MERCHANTABLITY OR NON-INFRINGEMENT.
9979
+
9980
+ See the Apache Version 2.0 License for specific language governing permissions
9981
+ and limitations under the License.
9982
+ ***************************************************************************** */
9968
9983
  var ts8 = (() => {
9969
9984
  var __defProp4 = Object.defineProperty;
9970
9985
  var __getOwnPropNames3 = Object.getOwnPropertyNames;
@@ -210451,6 +210466,7 @@ ${error.message}`;
210451
210466
  exports2.loadYaml = loadYaml2;
210452
210467
  var typescript;
210453
210468
  var loadTsSync = function loadTsSync2(filepath, content) {
210469
+ /* istanbul ignore next -- @preserve */
210454
210470
  if (typescript === void 0) {
210455
210471
  typescript = require_typescript();
210456
210472
  }
@@ -210762,6 +210778,7 @@ var require_util3 = __commonJS({
210762
210778
  return Object.fromEntries(Object.entries(options8).filter(([, value]) => value !== void 0));
210763
210779
  }
210764
210780
  exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
210781
+ /* istanbul ignore next -- @preserve */
210765
210782
  async function isDirectory2(path13) {
210766
210783
  try {
210767
210784
  const stat2 = await fs_1.promises.stat(path13);
@@ -210774,6 +210791,7 @@ var require_util3 = __commonJS({
210774
210791
  }
210775
210792
  }
210776
210793
  exports2.isDirectory = isDirectory2;
210794
+ /* istanbul ignore next -- @preserve */
210777
210795
  function isDirectorySync(path13) {
210778
210796
  try {
210779
210797
  const stat2 = fs_1.default.statSync(path13);
@@ -210890,6 +210908,7 @@ ${[...importStack, fullPath].map((path13, i3) => `${i3 + 1}. ${path13}`).join("\
210890
210908
  let currentDir = startDir;
210891
210909
  while (currentDir !== stopDir) {
210892
210910
  const parentDir = path_1.default.dirname(currentDir);
210911
+ /* istanbul ignore if -- @preserve */
210893
210912
  if (parentDir === currentDir) {
210894
210913
  break;
210895
210914
  }
@@ -210901,6 +210920,7 @@ ${[...importStack, fullPath].map((path13, i3) => `${i3 + 1}. ${path13}`).join("\
210901
210920
  };
210902
210921
  exports2.ExplorerBase = ExplorerBase;
210903
210922
  function getExtensionDescription(extension) {
210923
+ /* istanbul ignore next -- @preserve */
210904
210924
  return extension ? `extension "${extension}"` : "files without extensions";
210905
210925
  }
210906
210926
  exports2.getExtensionDescription = getExtensionDescription;
@@ -210981,11 +211001,13 @@ var require_Explorer = __commonJS({
210981
211001
  from = path_1.default.resolve(from);
210982
211002
  const dirs = this.#getDirs(from);
210983
211003
  const firstDirIter = await dirs.next();
211004
+ /* istanbul ignore if -- @preserve */
210984
211005
  if (firstDirIter.done) {
210985
211006
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
210986
211007
  }
210987
211008
  let currentDir = firstDirIter.value;
210988
211009
  const search = async () => {
211010
+ /* istanbul ignore if -- @preserve */
210989
211011
  if (await (0, util_js_1.isDirectory)(currentDir.path)) {
210990
211012
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
210991
211013
  try {
@@ -211084,6 +211106,7 @@ var require_Explorer = __commonJS({
211084
211106
  }
211085
211107
  }
211086
211108
  const parentDir = path_1.default.dirname(currentDir);
211109
+ /* istanbul ignore if -- @preserve */
211087
211110
  if (parentDir === currentDir) {
211088
211111
  break;
211089
211112
  }
@@ -211139,11 +211162,13 @@ var require_ExplorerSync = __commonJS({
211139
211162
  from = path_1.default.resolve(from);
211140
211163
  const dirs = this.#getDirs(from);
211141
211164
  const firstDirIter = dirs.next();
211165
+ /* istanbul ignore if -- @preserve */
211142
211166
  if (firstDirIter.done) {
211143
211167
  throw new Error(`Could not find any folders to iterate through (start from ${from})`);
211144
211168
  }
211145
211169
  let currentDir = firstDirIter.value;
211146
211170
  const search = () => {
211171
+ /* istanbul ignore if -- @preserve */
211147
211172
  if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
211148
211173
  for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
211149
211174
  try {
@@ -211242,6 +211267,7 @@ var require_ExplorerSync = __commonJS({
211242
211267
  }
211243
211268
  }
211244
211269
  const parentDir = path_1.default.dirname(currentDir);
211270
+ /* istanbul ignore if -- @preserve */
211245
211271
  if (parentDir === currentDir) {
211246
211272
  break;
211247
211273
  }
@@ -335112,6 +335138,13 @@ var require_package2 = __commonJS({
335112
335138
  var require_ejs = __commonJS({
335113
335139
  "node_modules/.pnpm/ejs@3.1.9/node_modules/ejs/lib/ejs.js"(exports2) {
335114
335140
  "use strict";
335141
+ /**
335142
+ * @file Embedded JavaScript templating engine. {@link http://ejs.co}
335143
+ * @author Matthew Eernisse <mde@fleegix.org>
335144
+ * @author Tiancheng "Timothy" Gu <timothygu99@gmail.com>
335145
+ * @project EJS
335146
+ * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
335147
+ */
335115
335148
  var fs7 = require("fs");
335116
335149
  var path13 = require("path");
335117
335150
  var utils2 = require_utils5();
@@ -340861,6 +340894,13 @@ var require_rimraf = __commonJS({
340861
340894
  // node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js
340862
340895
  var require_tmp = __commonJS({
340863
340896
  "node_modules/.pnpm/tmp@0.2.1/node_modules/tmp/lib/tmp.js"(exports2, module2) {
340897
+ /*!
340898
+ * Tmp
340899
+ *
340900
+ * Copyright (c) 2011-2017 KARASZI Istvan <github@spam.raszi.hu>
340901
+ *
340902
+ * MIT Licensed
340903
+ */
340864
340904
  var fs7 = require("fs");
340865
340905
  var os6 = require("os");
340866
340906
  var path13 = require("path");
@@ -342251,6 +342291,13 @@ var require_offset_from_root = __commonJS({
342251
342291
  var require_utils6 = __commonJS({
342252
342292
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/utils.js"(exports2) {
342253
342293
  "use strict";
342294
+ /**
342295
+ * @license
342296
+ * Copyright Google LLC All Rights Reserved.
342297
+ *
342298
+ * Use of this source code is governed by an MIT-style license that can be
342299
+ * found in the LICENSE file at https://angular.io/license
342300
+ */
342254
342301
  Object.defineProperty(exports2, "__esModule", { value: true });
342255
342302
  exports2.isJsonArray = exports2.isJsonObject = void 0;
342256
342303
  function isJsonObject(value) {
@@ -342268,6 +342315,13 @@ var require_utils6 = __commonJS({
342268
342315
  var require_utility = __commonJS({
342269
342316
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/utility.js"(exports2) {
342270
342317
  "use strict";
342318
+ /**
342319
+ * @license
342320
+ * Copyright Google LLC All Rights Reserved.
342321
+ *
342322
+ * Use of this source code is governed by an MIT-style license that can be
342323
+ * found in the LICENSE file at https://angular.io/license
342324
+ */
342271
342325
  Object.defineProperty(exports2, "__esModule", { value: true });
342272
342326
  exports2.getTypesOfSchema = void 0;
342273
342327
  var utils_1 = require_utils6();
@@ -342348,6 +342402,13 @@ var require_utility = __commonJS({
342348
342402
  var require_transforms = __commonJS({
342349
342403
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/transforms.js"(exports2) {
342350
342404
  "use strict";
342405
+ /**
342406
+ * @license
342407
+ * Copyright Google LLC All Rights Reserved.
342408
+ *
342409
+ * Use of this source code is governed by an MIT-style license that can be
342410
+ * found in the LICENSE file at https://angular.io/license
342411
+ */
342351
342412
  Object.defineProperty(exports2, "__esModule", { value: true });
342352
342413
  exports2.addUndefinedDefaults = void 0;
342353
342414
  var utils_1 = require_utils6();
@@ -342426,6 +342487,13 @@ var require_transforms = __commonJS({
342426
342487
  var require_interface = __commonJS({
342427
342488
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/interface.js"(exports2) {
342428
342489
  "use strict";
342490
+ /**
342491
+ * @license
342492
+ * Copyright Google LLC All Rights Reserved.
342493
+ *
342494
+ * Use of this source code is governed by an MIT-style license that can be
342495
+ * found in the LICENSE file at https://angular.io/license
342496
+ */
342429
342497
  Object.defineProperty(exports2, "__esModule", { value: true });
342430
342498
  }
342431
342499
  });
@@ -342434,6 +342502,13 @@ var require_interface = __commonJS({
342434
342502
  var require_pointer = __commonJS({
342435
342503
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/pointer.js"(exports2) {
342436
342504
  "use strict";
342505
+ /**
342506
+ * @license
342507
+ * Copyright Google LLC All Rights Reserved.
342508
+ *
342509
+ * Use of this source code is governed by an MIT-style license that can be
342510
+ * found in the LICENSE file at https://angular.io/license
342511
+ */
342437
342512
  Object.defineProperty(exports2, "__esModule", { value: true });
342438
342513
  exports2.parseJsonPointer = exports2.joinJsonPointer = exports2.buildJsonPointer = void 0;
342439
342514
  function buildJsonPointer(fragments) {
@@ -345537,6 +345612,7 @@ var require_data = __commonJS({
345537
345612
  // node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js
345538
345613
  var require_uri_all = __commonJS({
345539
345614
  "node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.js"(exports2, module2) {
345615
+ /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
345540
345616
  (function(global2, factory) {
345541
345617
  typeof exports2 === "object" && typeof module2 !== "undefined" ? factory(exports2) : typeof define === "function" && define.amd ? define(["exports"], factory) : factory(global2.URI = global2.URI || {});
345542
345618
  })(exports2, function(exports3) {
@@ -359102,6 +359178,13 @@ var require_cjs = __commonJS({
359102
359178
  var require_exception2 = __commonJS({
359103
359179
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/exception.js"(exports2) {
359104
359180
  "use strict";
359181
+ /**
359182
+ * @license
359183
+ * Copyright Google LLC All Rights Reserved.
359184
+ *
359185
+ * Use of this source code is governed by an MIT-style license that can be
359186
+ * found in the LICENSE file at https://angular.io/license
359187
+ */
359105
359188
  Object.defineProperty(exports2, "__esModule", { value: true });
359106
359189
  exports2.PathIsFileException = exports2.PathIsDirectoryException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.UnknownException = exports2.BaseException = void 0;
359107
359190
  var BaseException = class extends Error {
@@ -359147,6 +359230,13 @@ var require_exception2 = __commonJS({
359147
359230
  var require_literals = __commonJS({
359148
359231
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/literals.js"(exports2) {
359149
359232
  "use strict";
359233
+ /**
359234
+ * @license
359235
+ * Copyright Google LLC All Rights Reserved.
359236
+ *
359237
+ * Use of this source code is governed by an MIT-style license that can be
359238
+ * found in the LICENSE file at https://angular.io/license
359239
+ */
359150
359240
  Object.defineProperty(exports2, "__esModule", { value: true });
359151
359241
  exports2.trimNewlines = exports2.stripIndents = exports2.stripIndent = exports2.indentBy = exports2.oneLine = void 0;
359152
359242
  function oneLine(strings, ...values) {
@@ -359191,6 +359281,13 @@ var require_literals = __commonJS({
359191
359281
  var require_strings = __commonJS({
359192
359282
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/strings.js"(exports2) {
359193
359283
  "use strict";
359284
+ /**
359285
+ * @license
359286
+ * Copyright Google LLC All Rights Reserved.
359287
+ *
359288
+ * Use of this source code is governed by an MIT-style license that can be
359289
+ * found in the LICENSE file at https://angular.io/license
359290
+ */
359194
359291
  Object.defineProperty(exports2, "__esModule", { value: true });
359195
359292
  exports2.levenshtein = exports2.capitalize = exports2.underscore = exports2.classify = exports2.camelize = exports2.dasherize = exports2.decamelize = void 0;
359196
359293
  var STRING_DASHERIZE_REGEXP = /[ _]/g;
@@ -359263,6 +359360,13 @@ var require_strings = __commonJS({
359263
359360
  var require_object = __commonJS({
359264
359361
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/object.js"(exports2) {
359265
359362
  "use strict";
359363
+ /**
359364
+ * @license
359365
+ * Copyright Google LLC All Rights Reserved.
359366
+ *
359367
+ * Use of this source code is governed by an MIT-style license that can be
359368
+ * found in the LICENSE file at https://angular.io/license
359369
+ */
359266
359370
  Object.defineProperty(exports2, "__esModule", { value: true });
359267
359371
  exports2.deepCopy = void 0;
359268
359372
  var copySymbol = Symbol();
@@ -361614,6 +361718,13 @@ var require_source_map2 = __commonJS({
361614
361718
  var require_template = __commonJS({
361615
361719
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/template.js"(exports2) {
361616
361720
  "use strict";
361721
+ /**
361722
+ * @license
361723
+ * Copyright Google LLC All Rights Reserved.
361724
+ *
361725
+ * Use of this source code is governed by an MIT-style license that can be
361726
+ * found in the LICENSE file at https://angular.io/license
361727
+ */
361617
361728
  Object.defineProperty(exports2, "__esModule", { value: true });
361618
361729
  exports2.template = exports2.templateParser = void 0;
361619
361730
  var source_map_1 = require_source_map2();
@@ -361828,6 +361939,13 @@ var require_template = __commonJS({
361828
361939
  var require_partially_ordered_set = __commonJS({
361829
361940
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/partially-ordered-set.js"(exports2) {
361830
361941
  "use strict";
361942
+ /**
361943
+ * @license
361944
+ * Copyright Google LLC All Rights Reserved.
361945
+ *
361946
+ * Use of this source code is governed by an MIT-style license that can be
361947
+ * found in the LICENSE file at https://angular.io/license
361948
+ */
361831
361949
  Object.defineProperty(exports2, "__esModule", { value: true });
361832
361950
  exports2.PartiallyOrderedSet = exports2.CircularDependencyFoundException = exports2.DependencyNotFoundException = void 0;
361833
361951
  var exception_1 = require_exception2();
@@ -361962,6 +362080,13 @@ var require_partially_ordered_set = __commonJS({
361962
362080
  var require_priority_queue = __commonJS({
361963
362081
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/priority-queue.js"(exports2) {
361964
362082
  "use strict";
362083
+ /**
362084
+ * @license
362085
+ * Copyright Google LLC All Rights Reserved.
362086
+ *
362087
+ * Use of this source code is governed by an MIT-style license that can be
362088
+ * found in the LICENSE file at https://angular.io/license
362089
+ */
361965
362090
  Object.defineProperty(exports2, "__esModule", { value: true });
361966
362091
  exports2.PriorityQueue = void 0;
361967
362092
  var PriorityQueue = class {
@@ -362008,6 +362133,13 @@ var require_priority_queue = __commonJS({
362008
362133
  var require_lang = __commonJS({
362009
362134
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/lang.js"(exports2) {
362010
362135
  "use strict";
362136
+ /**
362137
+ * @license
362138
+ * Copyright Google LLC All Rights Reserved.
362139
+ *
362140
+ * Use of this source code is governed by an MIT-style license that can be
362141
+ * found in the LICENSE file at https://angular.io/license
362142
+ */
362011
362143
  Object.defineProperty(exports2, "__esModule", { value: true });
362012
362144
  exports2.isPromise = void 0;
362013
362145
  function isPromise(obj) {
@@ -362021,6 +362153,13 @@ var require_lang = __commonJS({
362021
362153
  var require_utils7 = __commonJS({
362022
362154
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/utils/index.js"(exports2) {
362023
362155
  "use strict";
362156
+ /**
362157
+ * @license
362158
+ * Copyright Google LLC All Rights Reserved.
362159
+ *
362160
+ * Use of this source code is governed by an MIT-style license that can be
362161
+ * found in the LICENSE file at https://angular.io/license
362162
+ */
362024
362163
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362025
362164
  if (k23 === void 0)
362026
362165
  k23 = k6;
@@ -362076,6 +362215,13 @@ var require_utils7 = __commonJS({
362076
362215
  var require_visitor = __commonJS({
362077
362216
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/visitor.js"(exports2) {
362078
362217
  "use strict";
362218
+ /**
362219
+ * @license
362220
+ * Copyright Google LLC All Rights Reserved.
362221
+ *
362222
+ * Use of this source code is governed by an MIT-style license that can be
362223
+ * found in the LICENSE file at https://angular.io/license
362224
+ */
362079
362225
  Object.defineProperty(exports2, "__esModule", { value: true });
362080
362226
  exports2.visitJsonSchema = exports2.visitJson = void 0;
362081
362227
  var rxjs_1 = require_cjs();
@@ -362196,6 +362342,13 @@ var require_visitor = __commonJS({
362196
362342
  var require_registry = __commonJS({
362197
362343
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/registry.js"(exports2) {
362198
362344
  "use strict";
362345
+ /**
362346
+ * @license
362347
+ * Copyright Google LLC All Rights Reserved.
362348
+ *
362349
+ * Use of this source code is governed by an MIT-style license that can be
362350
+ * found in the LICENSE file at https://angular.io/license
362351
+ */
362199
362352
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362200
362353
  if (k23 === void 0)
362201
362354
  k23 = k6;
@@ -362702,6 +362855,13 @@ var require_registry = __commonJS({
362702
362855
  var require_schema2 = __commonJS({
362703
362856
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/schema.js"(exports2) {
362704
362857
  "use strict";
362858
+ /**
362859
+ * @license
362860
+ * Copyright Google LLC All Rights Reserved.
362861
+ *
362862
+ * Use of this source code is governed by an MIT-style license that can be
362863
+ * found in the LICENSE file at https://angular.io/license
362864
+ */
362705
362865
  Object.defineProperty(exports2, "__esModule", { value: true });
362706
362866
  exports2.mergeSchemas = exports2.isJsonSchema = void 0;
362707
362867
  var utils_1 = require_utils6();
@@ -362741,6 +362901,13 @@ var require_schema2 = __commonJS({
362741
362901
  var require_schema3 = __commonJS({
362742
362902
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/schema/index.js"(exports2) {
362743
362903
  "use strict";
362904
+ /**
362905
+ * @license
362906
+ * Copyright Google LLC All Rights Reserved.
362907
+ *
362908
+ * Use of this source code is governed by an MIT-style license that can be
362909
+ * found in the LICENSE file at https://angular.io/license
362910
+ */
362744
362911
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362745
362912
  if (k23 === void 0)
362746
362913
  k23 = k6;
@@ -362795,6 +362962,13 @@ var require_schema3 = __commonJS({
362795
362962
  var require_json3 = __commonJS({
362796
362963
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/json/index.js"(exports2) {
362797
362964
  "use strict";
362965
+ /**
362966
+ * @license
362967
+ * Copyright Google LLC All Rights Reserved.
362968
+ *
362969
+ * Use of this source code is governed by an MIT-style license that can be
362970
+ * found in the LICENSE file at https://angular.io/license
362971
+ */
362798
362972
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
362799
362973
  if (k23 === void 0)
362800
362974
  k23 = k6;
@@ -362844,6 +363018,13 @@ var require_json3 = __commonJS({
362844
363018
  var require_logger = __commonJS({
362845
363019
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/logger.js"(exports2) {
362846
363020
  "use strict";
363021
+ /**
363022
+ * @license
363023
+ * Copyright Google LLC All Rights Reserved.
363024
+ *
363025
+ * Use of this source code is governed by an MIT-style license that can be
363026
+ * found in the LICENSE file at https://angular.io/license
363027
+ */
362847
363028
  Object.defineProperty(exports2, "__esModule", { value: true });
362848
363029
  exports2.Logger = void 0;
362849
363030
  var rxjs_1 = require_cjs();
@@ -362965,6 +363146,13 @@ var require_logger = __commonJS({
362965
363146
  var require_indent = __commonJS({
362966
363147
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/indent.js"(exports2) {
362967
363148
  "use strict";
363149
+ /**
363150
+ * @license
363151
+ * Copyright Google LLC All Rights Reserved.
363152
+ *
363153
+ * Use of this source code is governed by an MIT-style license that can be
363154
+ * found in the LICENSE file at https://angular.io/license
363155
+ */
362968
363156
  Object.defineProperty(exports2, "__esModule", { value: true });
362969
363157
  exports2.IndentLogger = void 0;
362970
363158
  var rxjs_1 = require_cjs();
@@ -362997,6 +363185,13 @@ var require_indent = __commonJS({
362997
363185
  var require_level = __commonJS({
362998
363186
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/level.js"(exports2) {
362999
363187
  "use strict";
363188
+ /**
363189
+ * @license
363190
+ * Copyright Google LLC All Rights Reserved.
363191
+ *
363192
+ * Use of this source code is governed by an MIT-style license that can be
363193
+ * found in the LICENSE file at https://angular.io/license
363194
+ */
363000
363195
  Object.defineProperty(exports2, "__esModule", { value: true });
363001
363196
  exports2.LevelCapLogger = exports2.LevelTransformLogger = void 0;
363002
363197
  var logger_1 = require_logger();
@@ -363046,6 +363241,13 @@ var require_level = __commonJS({
363046
363241
  var require_null_logger = __commonJS({
363047
363242
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/null-logger.js"(exports2) {
363048
363243
  "use strict";
363244
+ /**
363245
+ * @license
363246
+ * Copyright Google LLC All Rights Reserved.
363247
+ *
363248
+ * Use of this source code is governed by an MIT-style license that can be
363249
+ * found in the LICENSE file at https://angular.io/license
363250
+ */
363049
363251
  Object.defineProperty(exports2, "__esModule", { value: true });
363050
363252
  exports2.NullLogger = void 0;
363051
363253
  var rxjs_1 = require_cjs();
@@ -363081,6 +363283,13 @@ var require_null_logger = __commonJS({
363081
363283
  var require_transform_logger = __commonJS({
363082
363284
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/transform-logger.js"(exports2) {
363083
363285
  "use strict";
363286
+ /**
363287
+ * @license
363288
+ * Copyright Google LLC All Rights Reserved.
363289
+ *
363290
+ * Use of this source code is governed by an MIT-style license that can be
363291
+ * found in the LICENSE file at https://angular.io/license
363292
+ */
363084
363293
  Object.defineProperty(exports2, "__esModule", { value: true });
363085
363294
  exports2.TransformLogger = void 0;
363086
363295
  var logger_1 = require_logger();
@@ -363098,6 +363307,13 @@ var require_transform_logger = __commonJS({
363098
363307
  var require_logger2 = __commonJS({
363099
363308
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/logger/index.js"(exports2) {
363100
363309
  "use strict";
363310
+ /**
363311
+ * @license
363312
+ * Copyright Google LLC All Rights Reserved.
363313
+ *
363314
+ * Use of this source code is governed by an MIT-style license that can be
363315
+ * found in the LICENSE file at https://angular.io/license
363316
+ */
363101
363317
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
363102
363318
  if (k23 === void 0)
363103
363319
  k23 = k6;
@@ -363131,6 +363347,13 @@ var require_logger2 = __commonJS({
363131
363347
  var require_definitions = __commonJS({
363132
363348
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/definitions.js"(exports2) {
363133
363349
  "use strict";
363350
+ /**
363351
+ * @license
363352
+ * Copyright Google LLC All Rights Reserved.
363353
+ *
363354
+ * Use of this source code is governed by an MIT-style license that can be
363355
+ * found in the LICENSE file at https://angular.io/license
363356
+ */
363134
363357
  Object.defineProperty(exports2, "__esModule", { value: true });
363135
363358
  exports2.TargetDefinitionCollection = exports2.ProjectDefinitionCollection = void 0;
363136
363359
  var DefinitionCollection = class {
@@ -363297,6 +363520,13 @@ var require_definitions = __commonJS({
363297
363520
  var require_path2 = __commonJS({
363298
363521
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/path.js"(exports2) {
363299
363522
  "use strict";
363523
+ /**
363524
+ * @license
363525
+ * Copyright Google LLC All Rights Reserved.
363526
+ *
363527
+ * Use of this source code is governed by an MIT-style license that can be
363528
+ * found in the LICENSE file at https://angular.io/license
363529
+ */
363300
363530
  Object.defineProperty(exports2, "__esModule", { value: true });
363301
363531
  exports2.getSystemPath = exports2.asPosixPath = exports2.asWindowsPath = exports2.path = exports2.noCacheNormalize = exports2.normalize = exports2.resetNormalizeCache = exports2.fragment = exports2.resolve = exports2.relative = exports2.isAbsolute = exports2.join = exports2.dirname = exports2.basename = exports2.extname = exports2.split = exports2.NormalizedRoot = exports2.NormalizedSep = exports2.PathCannotBeFragmentException = exports2.PathMustBeAbsoluteException = exports2.InvalidPathException = void 0;
363302
363532
  var exception_1 = require_exception2();
@@ -363500,6 +363730,13 @@ var require_path2 = __commonJS({
363500
363730
  var require_buffer2 = __commonJS({
363501
363731
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/buffer.js"(exports2) {
363502
363732
  "use strict";
363733
+ /**
363734
+ * @license
363735
+ * Copyright Google LLC All Rights Reserved.
363736
+ *
363737
+ * Use of this source code is governed by an MIT-style license that can be
363738
+ * found in the LICENSE file at https://angular.io/license
363739
+ */
363503
363740
  Object.defineProperty(exports2, "__esModule", { value: true });
363504
363741
  exports2.fileBuffer = exports2.fileBufferToString = exports2.stringToFileBuffer = void 0;
363505
363742
  var node_util_1 = require("node:util");
@@ -363525,6 +363762,13 @@ var require_buffer2 = __commonJS({
363525
363762
  var require_interface2 = __commonJS({
363526
363763
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/interface.js"(exports2) {
363527
363764
  "use strict";
363765
+ /**
363766
+ * @license
363767
+ * Copyright Google LLC All Rights Reserved.
363768
+ *
363769
+ * Use of this source code is governed by an MIT-style license that can be
363770
+ * found in the LICENSE file at https://angular.io/license
363771
+ */
363528
363772
  Object.defineProperty(exports2, "__esModule", { value: true });
363529
363773
  exports2.HostWatchEventType = void 0;
363530
363774
  var HostWatchEventType;
@@ -363541,6 +363785,13 @@ var require_interface2 = __commonJS({
363541
363785
  var require_memory = __commonJS({
363542
363786
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/memory.js"(exports2) {
363543
363787
  "use strict";
363788
+ /**
363789
+ * @license
363790
+ * Copyright Google LLC All Rights Reserved.
363791
+ *
363792
+ * Use of this source code is governed by an MIT-style license that can be
363793
+ * found in the LICENSE file at https://angular.io/license
363794
+ */
363544
363795
  Object.defineProperty(exports2, "__esModule", { value: true });
363545
363796
  exports2.SimpleMemoryHost = void 0;
363546
363797
  var rxjs_1 = require_cjs();
@@ -363857,6 +364108,13 @@ var require_memory = __commonJS({
363857
364108
  var require_sync8 = __commonJS({
363858
364109
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/sync.js"(exports2) {
363859
364110
  "use strict";
364111
+ /**
364112
+ * @license
364113
+ * Copyright Google LLC All Rights Reserved.
364114
+ *
364115
+ * Use of this source code is governed by an MIT-style license that can be
364116
+ * found in the LICENSE file at https://angular.io/license
364117
+ */
363860
364118
  Object.defineProperty(exports2, "__esModule", { value: true });
363861
364119
  exports2.SyncDelegateHost = exports2.SynchronousDelegateExpectedException = void 0;
363862
364120
  var exception_1 = require_exception2();
@@ -363938,6 +364196,13 @@ var require_sync8 = __commonJS({
363938
364196
  var require_test = __commonJS({
363939
364197
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/test.js"(exports2) {
363940
364198
  "use strict";
364199
+ /**
364200
+ * @license
364201
+ * Copyright Google LLC All Rights Reserved.
364202
+ *
364203
+ * Use of this source code is governed by an MIT-style license that can be
364204
+ * found in the LICENSE file at https://angular.io/license
364205
+ */
363941
364206
  Object.defineProperty(exports2, "__esModule", { value: true });
363942
364207
  exports2.TestHost = void 0;
363943
364208
  var path_1 = require_path2();
@@ -364051,6 +364316,13 @@ var require_test = __commonJS({
364051
364316
  var require_resolver = __commonJS({
364052
364317
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/resolver.js"(exports2) {
364053
364318
  "use strict";
364319
+ /**
364320
+ * @license
364321
+ * Copyright Google LLC All Rights Reserved.
364322
+ *
364323
+ * Use of this source code is governed by an MIT-style license that can be
364324
+ * found in the LICENSE file at https://angular.io/license
364325
+ */
364054
364326
  Object.defineProperty(exports2, "__esModule", { value: true });
364055
364327
  exports2.ResolverHost = void 0;
364056
364328
  var ResolverHost = class {
@@ -364102,6 +364374,13 @@ var require_resolver = __commonJS({
364102
364374
  var require_alias = __commonJS({
364103
364375
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/alias.js"(exports2) {
364104
364376
  "use strict";
364377
+ /**
364378
+ * @license
364379
+ * Copyright Google LLC All Rights Reserved.
364380
+ *
364381
+ * Use of this source code is governed by an MIT-style license that can be
364382
+ * found in the LICENSE file at https://angular.io/license
364383
+ */
364105
364384
  Object.defineProperty(exports2, "__esModule", { value: true });
364106
364385
  exports2.AliasHost = void 0;
364107
364386
  var path_1 = require_path2();
@@ -364134,6 +364413,13 @@ var require_alias = __commonJS({
364134
364413
  var require_create = __commonJS({
364135
364414
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/create.js"(exports2) {
364136
364415
  "use strict";
364416
+ /**
364417
+ * @license
364418
+ * Copyright Google LLC All Rights Reserved.
364419
+ *
364420
+ * Use of this source code is governed by an MIT-style license that can be
364421
+ * found in the LICENSE file at https://angular.io/license
364422
+ */
364137
364423
  Object.defineProperty(exports2, "__esModule", { value: true });
364138
364424
  exports2.createSyncHost = void 0;
364139
364425
  var rxjs_1 = require_cjs();
@@ -364188,6 +364474,13 @@ var require_create = __commonJS({
364188
364474
  var require_empty3 = __commonJS({
364189
364475
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/empty.js"(exports2) {
364190
364476
  "use strict";
364477
+ /**
364478
+ * @license
364479
+ * Copyright Google LLC All Rights Reserved.
364480
+ *
364481
+ * Use of this source code is governed by an MIT-style license that can be
364482
+ * found in the LICENSE file at https://angular.io/license
364483
+ */
364191
364484
  Object.defineProperty(exports2, "__esModule", { value: true });
364192
364485
  exports2.Empty = void 0;
364193
364486
  var rxjs_1 = require_cjs();
@@ -365755,6 +366048,13 @@ var require_picomatch4 = __commonJS({
365755
366048
  var require_pattern3 = __commonJS({
365756
366049
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/pattern.js"(exports2) {
365757
366050
  "use strict";
366051
+ /**
366052
+ * @license
366053
+ * Copyright Google LLC All Rights Reserved.
366054
+ *
366055
+ * Use of this source code is governed by an MIT-style license that can be
366056
+ * found in the LICENSE file at https://angular.io/license
366057
+ */
365758
366058
  Object.defineProperty(exports2, "__esModule", { value: true });
365759
366059
  exports2.PatternMatchingHost = void 0;
365760
366060
  var picomatch_1 = require_picomatch4();
@@ -365786,6 +366086,13 @@ var require_pattern3 = __commonJS({
365786
366086
  var require_record = __commonJS({
365787
366087
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/record.js"(exports2) {
365788
366088
  "use strict";
366089
+ /**
366090
+ * @license
366091
+ * Copyright Google LLC All Rights Reserved.
366092
+ *
366093
+ * Use of this source code is governed by an MIT-style license that can be
366094
+ * found in the LICENSE file at https://angular.io/license
366095
+ */
365789
366096
  Object.defineProperty(exports2, "__esModule", { value: true });
365790
366097
  exports2.CordHost = void 0;
365791
366098
  var rxjs_1 = require_cjs();
@@ -366055,6 +366362,13 @@ var require_record = __commonJS({
366055
366362
  var require_safe = __commonJS({
366056
366363
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/safe.js"(exports2) {
366057
366364
  "use strict";
366365
+ /**
366366
+ * @license
366367
+ * Copyright Google LLC All Rights Reserved.
366368
+ *
366369
+ * Use of this source code is governed by an MIT-style license that can be
366370
+ * found in the LICENSE file at https://angular.io/license
366371
+ */
366058
366372
  Object.defineProperty(exports2, "__esModule", { value: true });
366059
366373
  exports2.SafeReadonlyHost = void 0;
366060
366374
  var rxjs_1 = require_cjs();
@@ -366095,6 +366409,13 @@ var require_safe = __commonJS({
366095
366409
  var require_scoped = __commonJS({
366096
366410
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/scoped.js"(exports2) {
366097
366411
  "use strict";
366412
+ /**
366413
+ * @license
366414
+ * Copyright Google LLC All Rights Reserved.
366415
+ *
366416
+ * Use of this source code is governed by an MIT-style license that can be
366417
+ * found in the LICENSE file at https://angular.io/license
366418
+ */
366098
366419
  Object.defineProperty(exports2, "__esModule", { value: true });
366099
366420
  exports2.ScopedHost = void 0;
366100
366421
  var path_1 = require_path2();
@@ -366117,6 +366438,13 @@ var require_scoped = __commonJS({
366117
366438
  var require_host = __commonJS({
366118
366439
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/host/index.js"(exports2) {
366119
366440
  "use strict";
366441
+ /**
366442
+ * @license
366443
+ * Copyright Google LLC All Rights Reserved.
366444
+ *
366445
+ * Use of this source code is governed by an MIT-style license that can be
366446
+ * found in the LICENSE file at https://angular.io/license
366447
+ */
366120
366448
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366121
366449
  if (k23 === void 0)
366122
366450
  k23 = k6;
@@ -366177,6 +366505,13 @@ var require_host = __commonJS({
366177
366505
  var require_virtual_fs = __commonJS({
366178
366506
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/virtual-fs/index.js"(exports2) {
366179
366507
  "use strict";
366508
+ /**
366509
+ * @license
366510
+ * Copyright Google LLC All Rights Reserved.
366511
+ *
366512
+ * Use of this source code is governed by an MIT-style license that can be
366513
+ * found in the LICENSE file at https://angular.io/license
366514
+ */
366180
366515
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
366181
366516
  if (k23 === void 0)
366182
366517
  k23 = k6;
@@ -366226,6 +366561,13 @@ var require_virtual_fs = __commonJS({
366226
366561
  var require_host2 = __commonJS({
366227
366562
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/host.js"(exports2) {
366228
366563
  "use strict";
366564
+ /**
366565
+ * @license
366566
+ * Copyright Google LLC All Rights Reserved.
366567
+ *
366568
+ * Use of this source code is governed by an MIT-style license that can be
366569
+ * found in the LICENSE file at https://angular.io/license
366570
+ */
366229
366571
  Object.defineProperty(exports2, "__esModule", { value: true });
366230
366572
  exports2.createWorkspaceHost = void 0;
366231
366573
  var rxjs_1 = require_cjs();
@@ -366413,6 +366755,13 @@ var require_main = __commonJS({
366413
366755
  var require_metadata2 = __commonJS({
366414
366756
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/metadata.js"(exports2) {
366415
366757
  "use strict";
366758
+ /**
366759
+ * @license
366760
+ * Copyright Google LLC All Rights Reserved.
366761
+ *
366762
+ * Use of this source code is governed by an MIT-style license that can be
366763
+ * found in the LICENSE file at https://angular.io/license
366764
+ */
366416
366765
  Object.defineProperty(exports2, "__esModule", { value: true });
366417
366766
  exports2.JsonWorkspaceMetadata = exports2.JsonWorkspaceSymbol = void 0;
366418
366767
  var jsonc_parser_1 = require_main();
@@ -366469,6 +366818,13 @@ var require_metadata2 = __commonJS({
366469
366818
  var require_utilities = __commonJS({
366470
366819
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/utilities.js"(exports2) {
366471
366820
  "use strict";
366821
+ /**
366822
+ * @license
366823
+ * Copyright Google LLC All Rights Reserved.
366824
+ *
366825
+ * Use of this source code is governed by an MIT-style license that can be
366826
+ * found in the LICENSE file at https://angular.io/license
366827
+ */
366472
366828
  Object.defineProperty(exports2, "__esModule", { value: true });
366473
366829
  exports2.createVirtualAstObject = void 0;
366474
366830
  var json_1 = require_json3();
@@ -366575,6 +366931,13 @@ var require_utilities = __commonJS({
366575
366931
  var require_reader3 = __commonJS({
366576
366932
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/reader.js"(exports2) {
366577
366933
  "use strict";
366934
+ /**
366935
+ * @license
366936
+ * Copyright Google LLC All Rights Reserved.
366937
+ *
366938
+ * Use of this source code is governed by an MIT-style license that can be
366939
+ * found in the LICENSE file at https://angular.io/license
366940
+ */
366578
366941
  Object.defineProperty(exports2, "__esModule", { value: true });
366579
366942
  exports2.readJsonWorkspace = void 0;
366580
366943
  var jsonc_parser_1 = require_main();
@@ -366789,6 +367152,13 @@ var require_reader3 = __commonJS({
366789
367152
  var require_writer = __commonJS({
366790
367153
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/json/writer.js"(exports2) {
366791
367154
  "use strict";
367155
+ /**
367156
+ * @license
367157
+ * Copyright Google LLC All Rights Reserved.
367158
+ *
367159
+ * Use of this source code is governed by an MIT-style license that can be
367160
+ * found in the LICENSE file at https://angular.io/license
367161
+ */
366792
367162
  Object.defineProperty(exports2, "__esModule", { value: true });
366793
367163
  exports2.writeJsonWorkspace = void 0;
366794
367164
  var jsonc_parser_1 = require_main();
@@ -366918,6 +367288,13 @@ var require_writer = __commonJS({
366918
367288
  var require_core4 = __commonJS({
366919
367289
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/core.js"(exports2) {
366920
367290
  "use strict";
367291
+ /**
367292
+ * @license
367293
+ * Copyright Google LLC All Rights Reserved.
367294
+ *
367295
+ * Use of this source code is governed by an MIT-style license that can be
367296
+ * found in the LICENSE file at https://angular.io/license
367297
+ */
366921
367298
  Object.defineProperty(exports2, "__esModule", { value: true });
366922
367299
  exports2.writeWorkspace = exports2.readWorkspace = exports2._test_removeWorkspaceFile = exports2._test_addWorkspaceFile = exports2.WorkspaceFormat = void 0;
366923
367300
  var virtual_fs_1 = require_virtual_fs();
@@ -367002,6 +367379,13 @@ var require_core4 = __commonJS({
367002
367379
  var require_workspace = __commonJS({
367003
367380
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/workspace/index.js"(exports2) {
367004
367381
  "use strict";
367382
+ /**
367383
+ * @license
367384
+ * Copyright Google LLC All Rights Reserved.
367385
+ *
367386
+ * Use of this source code is governed by an MIT-style license that can be
367387
+ * found in the LICENSE file at https://angular.io/license
367388
+ */
367005
367389
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367006
367390
  if (k23 === void 0)
367007
367391
  k23 = k6;
@@ -367046,6 +367430,13 @@ var require_workspace = __commonJS({
367046
367430
  var require_src2 = __commonJS({
367047
367431
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/src/index.js"(exports2) {
367048
367432
  "use strict";
367433
+ /**
367434
+ * @license
367435
+ * Copyright Google LLC All Rights Reserved.
367436
+ *
367437
+ * Use of this source code is governed by an MIT-style license that can be
367438
+ * found in the LICENSE file at https://angular.io/license
367439
+ */
367049
367440
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
367050
367441
  if (k23 === void 0)
367051
367442
  k23 = k6;
@@ -367102,6 +367493,13 @@ var require_src2 = __commonJS({
367102
367493
  var require_html_selector = __commonJS({
367103
367494
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/html-selector.js"(exports2) {
367104
367495
  "use strict";
367496
+ /**
367497
+ * @license
367498
+ * Copyright Google LLC All Rights Reserved.
367499
+ *
367500
+ * Use of this source code is governed by an MIT-style license that can be
367501
+ * found in the LICENSE file at https://angular.io/license
367502
+ */
367105
367503
  Object.defineProperty(exports2, "__esModule", { value: true });
367106
367504
  exports2.htmlSelectorFormat = void 0;
367107
367505
  var unicodeRanges = [
@@ -367141,6 +367539,13 @@ var require_html_selector = __commonJS({
367141
367539
  var require_path3 = __commonJS({
367142
367540
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/path.js"(exports2) {
367143
367541
  "use strict";
367542
+ /**
367543
+ * @license
367544
+ * Copyright Google LLC All Rights Reserved.
367545
+ *
367546
+ * Use of this source code is governed by an MIT-style license that can be
367547
+ * found in the LICENSE file at https://angular.io/license
367548
+ */
367144
367549
  Object.defineProperty(exports2, "__esModule", { value: true });
367145
367550
  exports2.pathFormat = void 0;
367146
367551
  var core_1 = require_src2();
@@ -367160,6 +367565,13 @@ var require_path3 = __commonJS({
367160
367565
  var require_formats2 = __commonJS({
367161
367566
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/formats/index.js"(exports2) {
367162
367567
  "use strict";
367568
+ /**
367569
+ * @license
367570
+ * Copyright Google LLC All Rights Reserved.
367571
+ *
367572
+ * Use of this source code is governed by an MIT-style license that can be
367573
+ * found in the LICENSE file at https://angular.io/license
367574
+ */
367163
367575
  Object.defineProperty(exports2, "__esModule", { value: true });
367164
367576
  exports2.standardFormats = exports2.pathFormat = exports2.htmlSelectorFormat = void 0;
367165
367577
  var html_selector_1 = require_html_selector();
@@ -367180,6 +367592,13 @@ var require_formats2 = __commonJS({
367180
367592
  var require_interface3 = __commonJS({
367181
367593
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/interface.js"(exports2) {
367182
367594
  "use strict";
367595
+ /**
367596
+ * @license
367597
+ * Copyright Google LLC All Rights Reserved.
367598
+ *
367599
+ * Use of this source code is governed by an MIT-style license that can be
367600
+ * found in the LICENSE file at https://angular.io/license
367601
+ */
367183
367602
  Object.defineProperty(exports2, "__esModule", { value: true });
367184
367603
  exports2.Tree = exports2.TreeSymbol = exports2.FileVisitorCancelToken = exports2.MergeStrategy = void 0;
367185
367604
  var MergeStrategy;
@@ -367215,6 +367634,13 @@ var require_interface3 = __commonJS({
367215
367634
  var require_exception3 = __commonJS({
367216
367635
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/exception/exception.js"(exports2) {
367217
367636
  "use strict";
367637
+ /**
367638
+ * @license
367639
+ * Copyright Google LLC All Rights Reserved.
367640
+ *
367641
+ * Use of this source code is governed by an MIT-style license that can be
367642
+ * found in the LICENSE file at https://angular.io/license
367643
+ */
367218
367644
  Object.defineProperty(exports2, "__esModule", { value: true });
367219
367645
  exports2.UnimplementedException = exports2.UnsuccessfulWorkflowExecution = exports2.MergeConflictException = exports2.InvalidUpdateRecordException = exports2.ContentHasMutatedException = exports2.FileAlreadyExistException = exports2.FileDoesNotExistException = exports2.SchematicsException = void 0;
367220
367646
  var core_1 = require_src2();
@@ -367270,6 +367696,13 @@ var require_exception3 = __commonJS({
367270
367696
  var require_delegate = __commonJS({
367271
367697
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/delegate.js"(exports2) {
367272
367698
  "use strict";
367699
+ /**
367700
+ * @license
367701
+ * Copyright Google LLC All Rights Reserved.
367702
+ *
367703
+ * Use of this source code is governed by an MIT-style license that can be
367704
+ * found in the LICENSE file at https://angular.io/license
367705
+ */
367273
367706
  Object.defineProperty(exports2, "__esModule", { value: true });
367274
367707
  exports2.DelegateTree = void 0;
367275
367708
  var interface_1 = require_interface3();
@@ -367347,6 +367780,13 @@ var require_delegate = __commonJS({
367347
367780
  var require_entry3 = __commonJS({
367348
367781
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/entry.js"(exports2) {
367349
367782
  "use strict";
367783
+ /**
367784
+ * @license
367785
+ * Copyright Google LLC All Rights Reserved.
367786
+ *
367787
+ * Use of this source code is governed by an MIT-style license that can be
367788
+ * found in the LICENSE file at https://angular.io/license
367789
+ */
367350
367790
  Object.defineProperty(exports2, "__esModule", { value: true });
367351
367791
  exports2.LazyFileEntry = exports2.SimpleFileEntry = void 0;
367352
367792
  var SimpleFileEntry = class {
@@ -368810,6 +369250,13 @@ var require_magic_string_cjs = __commonJS({
368810
369250
  var require_update_buffer = __commonJS({
368811
369251
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/utility/update-buffer.js"(exports2) {
368812
369252
  "use strict";
369253
+ /**
369254
+ * @license
369255
+ * Copyright Google LLC All Rights Reserved.
369256
+ *
369257
+ * Use of this source code is governed by an MIT-style license that can be
369258
+ * found in the LICENSE file at https://angular.io/license
369259
+ */
368813
369260
  var __importDefault2 = exports2 && exports2.__importDefault || function(mod) {
368814
369261
  return mod && mod.__esModule ? mod : { "default": mod };
368815
369262
  };
@@ -368889,6 +369336,13 @@ var require_update_buffer = __commonJS({
368889
369336
  var require_recorder = __commonJS({
368890
369337
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/recorder.js"(exports2) {
368891
369338
  "use strict";
369339
+ /**
369340
+ * @license
369341
+ * Copyright Google LLC All Rights Reserved.
369342
+ *
369343
+ * Use of this source code is governed by an MIT-style license that can be
369344
+ * found in the LICENSE file at https://angular.io/license
369345
+ */
368892
369346
  Object.defineProperty(exports2, "__esModule", { value: true });
368893
369347
  exports2.UpdateRecorderBom = exports2.UpdateRecorderBase = void 0;
368894
369348
  var exception_1 = require_exception3();
@@ -368963,6 +369417,13 @@ var require_recorder = __commonJS({
368963
369417
  var require_scoped2 = __commonJS({
368964
369418
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/scoped.js"(exports2) {
368965
369419
  "use strict";
369420
+ /**
369421
+ * @license
369422
+ * Copyright Google LLC All Rights Reserved.
369423
+ *
369424
+ * Use of this source code is governed by an MIT-style license that can be
369425
+ * found in the LICENSE file at https://angular.io/license
369426
+ */
368966
369427
  Object.defineProperty(exports2, "__esModule", { value: true });
368967
369428
  exports2.ScopedTree = void 0;
368968
369429
  var core_1 = require_src2();
@@ -369140,6 +369601,13 @@ var require_scoped2 = __commonJS({
369140
369601
  var require_host_tree = __commonJS({
369141
369602
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/host-tree.js"(exports2) {
369142
369603
  "use strict";
369604
+ /**
369605
+ * @license
369606
+ * Copyright Google LLC All Rights Reserved.
369607
+ *
369608
+ * Use of this source code is governed by an MIT-style license that can be
369609
+ * found in the LICENSE file at https://angular.io/license
369610
+ */
369143
369611
  Object.defineProperty(exports2, "__esModule", { value: true });
369144
369612
  exports2.FilterHostTree = exports2.HostCreateTree = exports2.HostTree = exports2.HostDirEntry = void 0;
369145
369613
  var core_1 = require_src2();
@@ -369555,6 +370023,13 @@ var require_host_tree = __commonJS({
369555
370023
  var require_static = __commonJS({
369556
370024
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/static.js"(exports2) {
369557
370025
  "use strict";
370026
+ /**
370027
+ * @license
370028
+ * Copyright Google LLC All Rights Reserved.
370029
+ *
370030
+ * Use of this source code is governed by an MIT-style license that can be
370031
+ * found in the LICENSE file at https://angular.io/license
370032
+ */
369558
370033
  Object.defineProperty(exports2, "__esModule", { value: true });
369559
370034
  exports2.partition = exports2.merge = exports2.branch = exports2.empty = void 0;
369560
370035
  var exception_1 = require_exception3();
@@ -369591,6 +370066,13 @@ var require_static = __commonJS({
369591
370066
  var require_null2 = __commonJS({
369592
370067
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/null.js"(exports2) {
369593
370068
  "use strict";
370069
+ /**
370070
+ * @license
370071
+ * Copyright Google LLC All Rights Reserved.
370072
+ *
370073
+ * Use of this source code is governed by an MIT-style license that can be
370074
+ * found in the LICENSE file at https://angular.io/license
370075
+ */
369594
370076
  Object.defineProperty(exports2, "__esModule", { value: true });
369595
370077
  exports2.NullTree = exports2.NullTreeDirEntry = exports2.CannotCreateFileException = void 0;
369596
370078
  var core_1 = require_src2();
@@ -369691,6 +370173,13 @@ var require_null2 = __commonJS({
369691
370173
  var require_call = __commonJS({
369692
370174
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/call.js"(exports2) {
369693
370175
  "use strict";
370176
+ /**
370177
+ * @license
370178
+ * Copyright Google LLC All Rights Reserved.
370179
+ *
370180
+ * Use of this source code is governed by an MIT-style license that can be
370181
+ * found in the LICENSE file at https://angular.io/license
370182
+ */
369694
370183
  Object.defineProperty(exports2, "__esModule", { value: true });
369695
370184
  exports2.callRule = exports2.callSource = exports2.InvalidSourceResultException = exports2.InvalidRuleResultException = void 0;
369696
370185
  var core_1 = require_src2();
@@ -369771,6 +370260,13 @@ var require_call = __commonJS({
369771
370260
  var require_schematic = __commonJS({
369772
370261
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/schematic.js"(exports2) {
369773
370262
  "use strict";
370263
+ /**
370264
+ * @license
370265
+ * Copyright Google LLC All Rights Reserved.
370266
+ *
370267
+ * Use of this source code is governed by an MIT-style license that can be
370268
+ * found in the LICENSE file at https://angular.io/license
370269
+ */
369774
370270
  Object.defineProperty(exports2, "__esModule", { value: true });
369775
370271
  exports2.SchematicImpl = exports2.InvalidSchematicsNameException = void 0;
369776
370272
  var core_1 = require_src2();
@@ -369835,6 +370331,13 @@ var require_schematic = __commonJS({
369835
370331
  var require_engine = __commonJS({
369836
370332
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/engine.js"(exports2) {
369837
370333
  "use strict";
370334
+ /**
370335
+ * @license
370336
+ * Copyright Google LLC All Rights Reserved.
370337
+ *
370338
+ * Use of this source code is governed by an MIT-style license that can be
370339
+ * found in the LICENSE file at https://angular.io/license
370340
+ */
369838
370341
  Object.defineProperty(exports2, "__esModule", { value: true });
369839
370342
  exports2.SchematicEngine = exports2.TaskScheduler = exports2.CollectionImpl = exports2.UnknownTaskDependencyException = exports2.UnregisteredTaskException = exports2.SchematicEngineConflictingException = exports2.PrivateSchematicException = exports2.UnknownSchematicException = exports2.CircularCollectionException = exports2.UnknownCollectionException = exports2.UnknownUrlSourceProtocol = void 0;
369840
370343
  var core_1 = require_src2();
@@ -370129,6 +370632,13 @@ var require_engine = __commonJS({
370129
370632
  var require_interface4 = __commonJS({
370130
370633
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/interface.js"(exports2) {
370131
370634
  "use strict";
370635
+ /**
370636
+ * @license
370637
+ * Copyright Google LLC All Rights Reserved.
370638
+ *
370639
+ * Use of this source code is governed by an MIT-style license that can be
370640
+ * found in the LICENSE file at https://angular.io/license
370641
+ */
370132
370642
  Object.defineProperty(exports2, "__esModule", { value: true });
370133
370643
  }
370134
370644
  });
@@ -370137,6 +370647,13 @@ var require_interface4 = __commonJS({
370137
370647
  var require_engine2 = __commonJS({
370138
370648
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/engine/index.js"(exports2) {
370139
370649
  "use strict";
370650
+ /**
370651
+ * @license
370652
+ * Copyright Google LLC All Rights Reserved.
370653
+ *
370654
+ * Use of this source code is governed by an MIT-style license that can be
370655
+ * found in the LICENSE file at https://angular.io/license
370656
+ */
370140
370657
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
370141
370658
  if (k23 === void 0)
370142
370659
  k23 = k6;
@@ -370168,6 +370685,13 @@ var require_engine2 = __commonJS({
370168
370685
  var require_cli_logger = __commonJS({
370169
370686
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/cli-logger.js"(exports2) {
370170
370687
  "use strict";
370688
+ /**
370689
+ * @license
370690
+ * Copyright Google LLC All Rights Reserved.
370691
+ *
370692
+ * Use of this source code is governed by an MIT-style license that can be
370693
+ * found in the LICENSE file at https://angular.io/license
370694
+ */
370171
370695
  Object.defineProperty(exports2, "__esModule", { value: true });
370172
370696
  exports2.createConsoleLogger = void 0;
370173
370697
  var rxjs_1 = require_cjs();
@@ -371965,6 +372489,12 @@ var require_readdirp = __commonJS({
371965
372489
  // node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js
371966
372490
  var require_normalize_path = __commonJS({
371967
372491
  "node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path/index.js"(exports2, module2) {
372492
+ /*!
372493
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
372494
+ *
372495
+ * Copyright (c) 2014-2018, Jon Schlinkert.
372496
+ * Released under the MIT License.
372497
+ */
371968
372498
  module2.exports = function(path13, stripTrailing) {
371969
372499
  if (typeof path13 !== "string") {
371970
372500
  throw new TypeError("expected path to be a string");
@@ -372061,6 +372591,12 @@ var require_anymatch = __commonJS({
372061
372591
  // node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
372062
372592
  var require_is_extglob2 = __commonJS({
372063
372593
  "node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js"(exports2, module2) {
372594
+ /*!
372595
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
372596
+ *
372597
+ * Copyright (c) 2014-2016, Jon Schlinkert.
372598
+ * Licensed under the MIT License.
372599
+ */
372064
372600
  module2.exports = function isExtglob(str2) {
372065
372601
  if (typeof str2 !== "string" || str2 === "") {
372066
372602
  return false;
@@ -372079,6 +372615,12 @@ var require_is_extglob2 = __commonJS({
372079
372615
  // node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
372080
372616
  var require_is_glob2 = __commonJS({
372081
372617
  "node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js"(exports2, module2) {
372618
+ /*!
372619
+ * is-glob <https://github.com/jonschlinkert/is-glob>
372620
+ *
372621
+ * Copyright (c) 2014-2017, Jon Schlinkert.
372622
+ * Released under the MIT License.
372623
+ */
372082
372624
  var isExtglob = require_is_extglob2();
372083
372625
  var chars = { "{": "}", "(": ")", "[": "]" };
372084
372626
  var strictCheck = function(str2) {
@@ -372355,6 +372897,12 @@ var require_stringify2 = __commonJS({
372355
372897
  var require_is_number2 = __commonJS({
372356
372898
  "node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports2, module2) {
372357
372899
  "use strict";
372900
+ /*!
372901
+ * is-number <https://github.com/jonschlinkert/is-number>
372902
+ *
372903
+ * Copyright (c) 2014-present, Jon Schlinkert.
372904
+ * Released under the MIT License.
372905
+ */
372358
372906
  module2.exports = function(num) {
372359
372907
  if (typeof num === "number") {
372360
372908
  return num - num === 0;
@@ -372371,6 +372919,12 @@ var require_is_number2 = __commonJS({
372371
372919
  var require_to_regex_range2 = __commonJS({
372372
372920
  "node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports2, module2) {
372373
372921
  "use strict";
372922
+ /*!
372923
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
372924
+ *
372925
+ * Copyright (c) 2015-present, Jon Schlinkert.
372926
+ * Released under the MIT License.
372927
+ */
372374
372928
  var isNumber = require_is_number2();
372375
372929
  var toRegexRange = (min, max, options8) => {
372376
372930
  if (isNumber(min) === false) {
@@ -372583,6 +373137,12 @@ var require_to_regex_range2 = __commonJS({
372583
373137
  var require_fill_range2 = __commonJS({
372584
373138
  "node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports2, module2) {
372585
373139
  "use strict";
373140
+ /*!
373141
+ * fill-range <https://github.com/jonschlinkert/fill-range>
373142
+ *
373143
+ * Copyright (c) 2014-present, Jon Schlinkert.
373144
+ * Licensed under the MIT License.
373145
+ */
372586
373146
  var util3 = require("util");
372587
373147
  var toRegexRange = require_to_regex_range2();
372588
373148
  var isObject3 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -375425,6 +375985,13 @@ var require_chokidar = __commonJS({
375425
375985
  var require_host3 = __commonJS({
375426
375986
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/host.js"(exports2) {
375427
375987
  "use strict";
375988
+ /**
375989
+ * @license
375990
+ * Copyright Google LLC All Rights Reserved.
375991
+ *
375992
+ * Use of this source code is governed by an MIT-style license that can be
375993
+ * found in the LICENSE file at https://angular.io/license
375994
+ */
375428
375995
  Object.defineProperty(exports2, "__esModule", { value: true });
375429
375996
  exports2.NodeJsSyncHost = exports2.NodeJsAsyncHost = void 0;
375430
375997
  var node_fs_1 = require("node:fs");
@@ -375615,6 +376182,13 @@ var require_host3 = __commonJS({
375615
376182
  var require_node = __commonJS({
375616
376183
  "node_modules/.pnpm/@angular-devkit+core@17.2.0/node_modules/@angular-devkit/core/node/index.js"(exports2) {
375617
376184
  "use strict";
376185
+ /**
376186
+ * @license
376187
+ * Copyright Google LLC All Rights Reserved.
376188
+ *
376189
+ * Use of this source code is governed by an MIT-style license that can be
376190
+ * found in the LICENSE file at https://angular.io/license
376191
+ */
375618
376192
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
375619
376193
  if (k23 === void 0)
375620
376194
  k23 = k6;
@@ -375645,6 +376219,13 @@ var require_node = __commonJS({
375645
376219
  var require_action = __commonJS({
375646
376220
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/action.js"(exports2) {
375647
376221
  "use strict";
376222
+ /**
376223
+ * @license
376224
+ * Copyright Google LLC All Rights Reserved.
376225
+ *
376226
+ * Use of this source code is governed by an MIT-style license that can be
376227
+ * found in the LICENSE file at https://angular.io/license
376228
+ */
375648
376229
  Object.defineProperty(exports2, "__esModule", { value: true });
375649
376230
  exports2.isContentAction = exports2.ActionList = exports2.UnknownActionException = void 0;
375650
376231
  var core_1 = require_src2();
@@ -375780,6 +376361,13 @@ var require_action = __commonJS({
375780
376361
  var require_sink = __commonJS({
375781
376362
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/sink.js"(exports2) {
375782
376363
  "use strict";
376364
+ /**
376365
+ * @license
376366
+ * Copyright Google LLC All Rights Reserved.
376367
+ *
376368
+ * Use of this source code is governed by an MIT-style license that can be
376369
+ * found in the LICENSE file at https://angular.io/license
376370
+ */
375783
376371
  Object.defineProperty(exports2, "__esModule", { value: true });
375784
376372
  exports2.SimpleSinkBase = void 0;
375785
376373
  var rxjs_1 = require_cjs();
@@ -375892,6 +376480,13 @@ var require_sink = __commonJS({
375892
376480
  var require_host4 = __commonJS({
375893
376481
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/host.js"(exports2) {
375894
376482
  "use strict";
376483
+ /**
376484
+ * @license
376485
+ * Copyright Google LLC All Rights Reserved.
376486
+ *
376487
+ * Use of this source code is governed by an MIT-style license that can be
376488
+ * found in the LICENSE file at https://angular.io/license
376489
+ */
375895
376490
  Object.defineProperty(exports2, "__esModule", { value: true });
375896
376491
  exports2.HostSink = void 0;
375897
376492
  var rxjs_1 = require_cjs();
@@ -375962,6 +376557,13 @@ var require_host4 = __commonJS({
375962
376557
  var require_dryrun = __commonJS({
375963
376558
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/sink/dryrun.js"(exports2) {
375964
376559
  "use strict";
376560
+ /**
376561
+ * @license
376562
+ * Copyright Google LLC All Rights Reserved.
376563
+ *
376564
+ * Use of this source code is governed by an MIT-style license that can be
376565
+ * found in the LICENSE file at https://angular.io/license
376566
+ */
375965
376567
  Object.defineProperty(exports2, "__esModule", { value: true });
375966
376568
  exports2.DryRunSink = void 0;
375967
376569
  var core_1 = require_src2();
@@ -376034,6 +376636,13 @@ var require_dryrun = __commonJS({
376034
376636
  var require_base2 = __commonJS({
376035
376637
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/base.js"(exports2) {
376036
376638
  "use strict";
376639
+ /**
376640
+ * @license
376641
+ * Copyright Google LLC All Rights Reserved.
376642
+ *
376643
+ * Use of this source code is governed by an MIT-style license that can be
376644
+ * found in the LICENSE file at https://angular.io/license
376645
+ */
376037
376646
  Object.defineProperty(exports2, "__esModule", { value: true });
376038
376647
  exports2.BaseWorkflow = void 0;
376039
376648
  var core_1 = require_src2();
@@ -376157,6 +376766,13 @@ var require_base2 = __commonJS({
376157
376766
  var require_interface5 = __commonJS({
376158
376767
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/interface.js"(exports2) {
376159
376768
  "use strict";
376769
+ /**
376770
+ * @license
376771
+ * Copyright Google LLC All Rights Reserved.
376772
+ *
376773
+ * Use of this source code is governed by an MIT-style license that can be
376774
+ * found in the LICENSE file at https://angular.io/license
376775
+ */
376160
376776
  Object.defineProperty(exports2, "__esModule", { value: true });
376161
376777
  }
376162
376778
  });
@@ -376165,6 +376781,13 @@ var require_interface5 = __commonJS({
376165
376781
  var require_workflow = __commonJS({
376166
376782
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/workflow/index.js"(exports2) {
376167
376783
  "use strict";
376784
+ /**
376785
+ * @license
376786
+ * Copyright Google LLC All Rights Reserved.
376787
+ *
376788
+ * Use of this source code is governed by an MIT-style license that can be
376789
+ * found in the LICENSE file at https://angular.io/license
376790
+ */
376168
376791
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376169
376792
  if (k23 === void 0)
376170
376793
  k23 = k6;
@@ -376195,6 +376818,13 @@ var require_workflow = __commonJS({
376195
376818
  var require_base3 = __commonJS({
376196
376819
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/base.js"(exports2) {
376197
376820
  "use strict";
376821
+ /**
376822
+ * @license
376823
+ * Copyright Google LLC All Rights Reserved.
376824
+ *
376825
+ * Use of this source code is governed by an MIT-style license that can be
376826
+ * found in the LICENSE file at https://angular.io/license
376827
+ */
376198
376828
  Object.defineProperty(exports2, "__esModule", { value: true });
376199
376829
  exports2.applyToSubtree = exports2.composeFileOperators = exports2.forEach = exports2.partitionApplyMerge = exports2.when = exports2.branchAndMerge = exports2.asSource = exports2.filter = exports2.noop = exports2.mergeWith = exports2.apply = exports2.chain = exports2.empty = exports2.source = void 0;
376200
376830
  var rxjs_1 = require_cjs();
@@ -376334,6 +376964,13 @@ var require_base3 = __commonJS({
376334
376964
  var require_move3 = __commonJS({
376335
376965
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/move.js"(exports2) {
376336
376966
  "use strict";
376967
+ /**
376968
+ * @license
376969
+ * Copyright Google LLC All Rights Reserved.
376970
+ *
376971
+ * Use of this source code is governed by an MIT-style license that can be
376972
+ * found in the LICENSE file at https://angular.io/license
376973
+ */
376337
376974
  Object.defineProperty(exports2, "__esModule", { value: true });
376338
376975
  exports2.move = void 0;
376339
376976
  var core_1 = require_src2();
@@ -376367,6 +377004,13 @@ var require_move3 = __commonJS({
376367
377004
  var require_random = __commonJS({
376368
377005
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/random.js"(exports2) {
376369
377006
  "use strict";
377007
+ /**
377008
+ * @license
377009
+ * Copyright Google LLC All Rights Reserved.
377010
+ *
377011
+ * Use of this source code is governed by an MIT-style license that can be
377012
+ * found in the LICENSE file at https://angular.io/license
377013
+ */
376370
377014
  Object.defineProperty(exports2, "__esModule", { value: true });
376371
377015
  var host_tree_1 = require_host_tree();
376372
377016
  function generateStringOfLength(l) {
@@ -376399,6 +377043,13 @@ var require_random = __commonJS({
376399
377043
  var require_schematic2 = __commonJS({
376400
377044
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/schematic.js"(exports2) {
376401
377045
  "use strict";
377046
+ /**
377047
+ * @license
377048
+ * Copyright Google LLC All Rights Reserved.
377049
+ *
377050
+ * Use of this source code is governed by an MIT-style license that can be
377051
+ * found in the LICENSE file at https://angular.io/license
377052
+ */
376402
377053
  Object.defineProperty(exports2, "__esModule", { value: true });
376403
377054
  exports2.schematic = exports2.externalSchematic = void 0;
376404
377055
  var rxjs_1 = require_cjs();
@@ -376433,6 +377084,13 @@ var require_schematic2 = __commonJS({
376433
377084
  var require_template2 = __commonJS({
376434
377085
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/template.js"(exports2) {
376435
377086
  "use strict";
377087
+ /**
377088
+ * @license
377089
+ * Copyright Google LLC All Rights Reserved.
377090
+ *
377091
+ * Use of this source code is governed by an MIT-style license that can be
377092
+ * found in the LICENSE file at https://angular.io/license
377093
+ */
376436
377094
  Object.defineProperty(exports2, "__esModule", { value: true });
376437
377095
  exports2.applyTemplates = exports2.template = exports2.renameTemplateFiles = exports2.pathTemplate = exports2.applyPathTemplate = exports2.contentTemplate = exports2.applyContentTemplate = exports2.InvalidPipeException = exports2.UnknownPipeException = exports2.OptionIsNotDefinedException = exports2.TEMPLATE_FILENAME_RE = void 0;
376438
377096
  var core_1 = require_src2();
@@ -376583,6 +377241,13 @@ var require_template2 = __commonJS({
376583
377241
  var require_url = __commonJS({
376584
377242
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/rules/url.js"(exports2) {
376585
377243
  "use strict";
377244
+ /**
377245
+ * @license
377246
+ * Copyright Google LLC All Rights Reserved.
377247
+ *
377248
+ * Use of this source code is governed by an MIT-style license that can be
377249
+ * found in the LICENSE file at https://angular.io/license
377250
+ */
376586
377251
  Object.defineProperty(exports2, "__esModule", { value: true });
376587
377252
  exports2.url = void 0;
376588
377253
  var url_1 = require("url");
@@ -376598,6 +377263,13 @@ var require_url = __commonJS({
376598
377263
  var require_empty4 = __commonJS({
376599
377264
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/tree/empty.js"(exports2) {
376600
377265
  "use strict";
377266
+ /**
377267
+ * @license
377268
+ * Copyright Google LLC All Rights Reserved.
377269
+ *
377270
+ * Use of this source code is governed by an MIT-style license that can be
377271
+ * found in the LICENSE file at https://angular.io/license
377272
+ */
376601
377273
  Object.defineProperty(exports2, "__esModule", { value: true });
376602
377274
  exports2.EmptyTree = void 0;
376603
377275
  var host_tree_1 = require_host_tree();
@@ -376614,6 +377286,13 @@ var require_empty4 = __commonJS({
376614
377286
  var require_src3 = __commonJS({
376615
377287
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/src/index.js"(exports2) {
376616
377288
  "use strict";
377289
+ /**
377290
+ * @license
377291
+ * Copyright Google LLC All Rights Reserved.
377292
+ *
377293
+ * Use of this source code is governed by an MIT-style license that can be
377294
+ * found in the LICENSE file at https://angular.io/license
377295
+ */
376617
377296
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
376618
377297
  if (k23 === void 0)
376619
377298
  k23 = k6;
@@ -376709,6 +377388,13 @@ var require_src3 = __commonJS({
376709
377388
  var require_options = __commonJS({
376710
377389
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/options.js"(exports2) {
376711
377390
  "use strict";
377391
+ /**
377392
+ * @license
377393
+ * Copyright Google LLC All Rights Reserved.
377394
+ *
377395
+ * Use of this source code is governed by an MIT-style license that can be
377396
+ * found in the LICENSE file at https://angular.io/license
377397
+ */
376712
377398
  Object.defineProperty(exports2, "__esModule", { value: true });
376713
377399
  exports2.NodePackageName = void 0;
376714
377400
  exports2.NodePackageName = "node-package";
@@ -376719,6 +377405,13 @@ var require_options = __commonJS({
376719
377405
  var require_options2 = __commonJS({
376720
377406
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/options.js"(exports2) {
376721
377407
  "use strict";
377408
+ /**
377409
+ * @license
377410
+ * Copyright Google LLC All Rights Reserved.
377411
+ *
377412
+ * Use of this source code is governed by an MIT-style license that can be
377413
+ * found in the LICENSE file at https://angular.io/license
377414
+ */
376722
377415
  Object.defineProperty(exports2, "__esModule", { value: true });
376723
377416
  exports2.RepositoryInitializerName = void 0;
376724
377417
  exports2.RepositoryInitializerName = "repo-init";
@@ -376729,6 +377422,13 @@ var require_options2 = __commonJS({
376729
377422
  var require_options3 = __commonJS({
376730
377423
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/options.js"(exports2) {
376731
377424
  "use strict";
377425
+ /**
377426
+ * @license
377427
+ * Copyright Google LLC All Rights Reserved.
377428
+ *
377429
+ * Use of this source code is governed by an MIT-style license that can be
377430
+ * found in the LICENSE file at https://angular.io/license
377431
+ */
376732
377432
  Object.defineProperty(exports2, "__esModule", { value: true });
376733
377433
  exports2.RunSchematicName = void 0;
376734
377434
  exports2.RunSchematicName = "run-schematic";
@@ -380202,6 +380902,7 @@ var require_stream_duplex = __commonJS({
380202
380902
  // node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js
380203
380903
  var require_safe_buffer = __commonJS({
380204
380904
  "node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js"(exports2, module2) {
380905
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
380205
380906
  var buffer2 = require("buffer");
380206
380907
  var Buffer2 = buffer2.Buffer;
380207
380908
  function copyProps(src, dst) {
@@ -382676,6 +383377,13 @@ var require_ora = __commonJS({
382676
383377
  var require_executor = __commonJS({
382677
383378
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/package-manager/executor.js"(exports2) {
382678
383379
  "use strict";
383380
+ /**
383381
+ * @license
383382
+ * Copyright Google LLC All Rights Reserved.
383383
+ *
383384
+ * Use of this source code is governed by an MIT-style license that can be
383385
+ * found in the LICENSE file at https://angular.io/license
383386
+ */
382679
383387
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382680
383388
  if (k23 === void 0)
382681
383389
  k23 = k6;
@@ -382847,6 +383555,13 @@ var require_executor = __commonJS({
382847
383555
  var require_executor2 = __commonJS({
382848
383556
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/repo-init/executor.js"(exports2) {
382849
383557
  "use strict";
383558
+ /**
383559
+ * @license
383560
+ * Copyright Google LLC All Rights Reserved.
383561
+ *
383562
+ * Use of this source code is governed by an MIT-style license that can be
383563
+ * found in the LICENSE file at https://angular.io/license
383564
+ */
382850
383565
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382851
383566
  if (k23 === void 0)
382852
383567
  k23 = k6;
@@ -382943,6 +383658,13 @@ var require_executor2 = __commonJS({
382943
383658
  var require_executor3 = __commonJS({
382944
383659
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/run-schematic/executor.js"(exports2) {
382945
383660
  "use strict";
383661
+ /**
383662
+ * @license
383663
+ * Copyright Google LLC All Rights Reserved.
383664
+ *
383665
+ * Use of this source code is governed by an MIT-style license that can be
383666
+ * found in the LICENSE file at https://angular.io/license
383667
+ */
382946
383668
  Object.defineProperty(exports2, "__esModule", { value: true });
382947
383669
  function default_1() {
382948
383670
  return (options8, context) => {
@@ -382971,6 +383693,13 @@ var require_executor3 = __commonJS({
382971
383693
  var require_node3 = __commonJS({
382972
383694
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tasks/node/index.js"(exports2) {
382973
383695
  "use strict";
383696
+ /**
383697
+ * @license
383698
+ * Copyright Google LLC All Rights Reserved.
383699
+ *
383700
+ * Use of this source code is governed by an MIT-style license that can be
383701
+ * found in the LICENSE file at https://angular.io/license
383702
+ */
382974
383703
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
382975
383704
  if (k23 === void 0)
382976
383705
  k23 = k6;
@@ -383030,6 +383759,13 @@ var require_node3 = __commonJS({
383030
383759
  var require_description = __commonJS({
383031
383760
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/description.js"(exports2) {
383032
383761
  "use strict";
383762
+ /**
383763
+ * @license
383764
+ * Copyright Google LLC All Rights Reserved.
383765
+ *
383766
+ * Use of this source code is governed by an MIT-style license that can be
383767
+ * found in the LICENSE file at https://angular.io/license
383768
+ */
383033
383769
  Object.defineProperty(exports2, "__esModule", { value: true });
383034
383770
  }
383035
383771
  });
@@ -383038,6 +383774,13 @@ var require_description = __commonJS({
383038
383774
  var require_export_ref = __commonJS({
383039
383775
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/export-ref.js"(exports2) {
383040
383776
  "use strict";
383777
+ /**
383778
+ * @license
383779
+ * Copyright Google LLC All Rights Reserved.
383780
+ *
383781
+ * Use of this source code is governed by an MIT-style license that can be
383782
+ * found in the LICENSE file at https://angular.io/license
383783
+ */
383041
383784
  Object.defineProperty(exports2, "__esModule", { value: true });
383042
383785
  exports2.ExportStringRef = void 0;
383043
383786
  var path_1 = require("path");
@@ -383074,6 +383817,13 @@ var require_export_ref = __commonJS({
383074
383817
  var require_file_system_utility = __commonJS({
383075
383818
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-utility.js"(exports2) {
383076
383819
  "use strict";
383820
+ /**
383821
+ * @license
383822
+ * Copyright Google LLC All Rights Reserved.
383823
+ *
383824
+ * Use of this source code is governed by an MIT-style license that can be
383825
+ * found in the LICENSE file at https://angular.io/license
383826
+ */
383077
383827
  Object.defineProperty(exports2, "__esModule", { value: true });
383078
383828
  exports2.readJsonFile = void 0;
383079
383829
  var schematics_1 = require_src3();
@@ -383099,6 +383849,13 @@ var require_file_system_utility = __commonJS({
383099
383849
  var require_file_system_engine_host_base = __commonJS({
383100
383850
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js"(exports2) {
383101
383851
  "use strict";
383852
+ /**
383853
+ * @license
383854
+ * Copyright Google LLC All Rights Reserved.
383855
+ *
383856
+ * Use of this source code is governed by an MIT-style license that can be
383857
+ * found in the LICENSE file at https://angular.io/license
383858
+ */
383102
383859
  Object.defineProperty(exports2, "__esModule", { value: true });
383103
383860
  exports2.FileSystemEngineHostBase = exports2.SchematicNameCollisionException = exports2.SchematicMissingDescriptionException = exports2.SchematicMissingFieldsException = exports2.CollectionMissingFieldsException = exports2.CollectionMissingSchematicsMapException = exports2.FactoryCannotBeResolvedException = exports2.SchematicMissingFactoryException = exports2.InvalidCollectionJsonException = exports2.CollectionCannotBeResolvedException = void 0;
383104
383861
  var core_1 = require_src2();
@@ -383333,6 +384090,13 @@ var require_file_system_engine_host_base = __commonJS({
383333
384090
  var require_node_module_engine_host = __commonJS({
383334
384091
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js"(exports2) {
383335
384092
  "use strict";
384093
+ /**
384094
+ * @license
384095
+ * Copyright Google LLC All Rights Reserved.
384096
+ *
384097
+ * Use of this source code is governed by an MIT-style license that can be
384098
+ * found in the LICENSE file at https://angular.io/license
384099
+ */
383336
384100
  Object.defineProperty(exports2, "__esModule", { value: true });
383337
384101
  exports2.NodeModulesEngineHost = exports2.NodePackageDoesNotSupportSchematics = void 0;
383338
384102
  var core_1 = require_src2();
@@ -383961,6 +384725,13 @@ var require_operators = __commonJS({
383961
384725
  var require_schema_option_transform = __commonJS({
383962
384726
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/schema-option-transform.js"(exports2) {
383963
384727
  "use strict";
384728
+ /**
384729
+ * @license
384730
+ * Copyright Google LLC All Rights Reserved.
384731
+ *
384732
+ * Use of this source code is governed by an MIT-style license that can be
384733
+ * found in the LICENSE file at https://angular.io/license
384734
+ */
383964
384735
  Object.defineProperty(exports2, "__esModule", { value: true });
383965
384736
  exports2.validateOptionsWithSchema = exports2.InvalidInputOptions = void 0;
383966
384737
  var core_1 = require_src2();
@@ -383997,6 +384768,13 @@ Errors:
383997
384768
  var require_node_workflow = __commonJS({
383998
384769
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js"(exports2) {
383999
384770
  "use strict";
384771
+ /**
384772
+ * @license
384773
+ * Copyright Google LLC All Rights Reserved.
384774
+ *
384775
+ * Use of this source code is governed by an MIT-style license that can be
384776
+ * found in the LICENSE file at https://angular.io/license
384777
+ */
384000
384778
  Object.defineProperty(exports2, "__esModule", { value: true });
384001
384779
  exports2.NodeWorkflow = void 0;
384002
384780
  var core_1 = require_src2();
@@ -384060,6 +384838,13 @@ var require_node_workflow = __commonJS({
384060
384838
  var require_file_system_engine_host = __commonJS({
384061
384839
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/file-system-engine-host.js"(exports2) {
384062
384840
  "use strict";
384841
+ /**
384842
+ * @license
384843
+ * Copyright Google LLC All Rights Reserved.
384844
+ *
384845
+ * Use of this source code is governed by an MIT-style license that can be
384846
+ * found in the LICENSE file at https://angular.io/license
384847
+ */
384063
384848
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384064
384849
  if (k23 === void 0)
384065
384850
  k23 = k6;
@@ -384177,6 +384962,13 @@ var require_file_system_engine_host = __commonJS({
384177
384962
  var require_node_modules_test_engine_host = __commonJS({
384178
384963
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/node-modules-test-engine-host.js"(exports2) {
384179
384964
  "use strict";
384965
+ /**
384966
+ * @license
384967
+ * Copyright Google LLC All Rights Reserved.
384968
+ *
384969
+ * Use of this source code is governed by an MIT-style license that can be
384970
+ * found in the LICENSE file at https://angular.io/license
384971
+ */
384180
384972
  Object.defineProperty(exports2, "__esModule", { value: true });
384181
384973
  exports2.NodeModulesTestEngineHost = void 0;
384182
384974
  var node_module_engine_host_1 = require_node_module_engine_host();
@@ -384216,6 +385008,13 @@ var require_node_modules_test_engine_host = __commonJS({
384216
385008
  var require_tools = __commonJS({
384217
385009
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/tools/index.js"(exports2) {
384218
385010
  "use strict";
385011
+ /**
385012
+ * @license
385013
+ * Copyright Google LLC All Rights Reserved.
385014
+ *
385015
+ * Use of this source code is governed by an MIT-style license that can be
385016
+ * found in the LICENSE file at https://angular.io/license
385017
+ */
384219
385018
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384220
385019
  if (k23 === void 0)
384221
385020
  k23 = k6;
@@ -384268,6 +385067,13 @@ var require_tools = __commonJS({
384268
385067
  var require_schematic_test_runner = __commonJS({
384269
385068
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/schematic-test-runner.js"(exports2) {
384270
385069
  "use strict";
385070
+ /**
385071
+ * @license
385072
+ * Copyright Google LLC All Rights Reserved.
385073
+ *
385074
+ * Use of this source code is governed by an MIT-style license that can be
385075
+ * found in the LICENSE file at https://angular.io/license
385076
+ */
384271
385077
  Object.defineProperty(exports2, "__esModule", { value: true });
384272
385078
  exports2.SchematicTestRunner = exports2.UnitTestTree = void 0;
384273
385079
  var core_1 = require_src2();
@@ -384349,6 +385155,13 @@ var require_schematic_test_runner = __commonJS({
384349
385155
  var require_testing = __commonJS({
384350
385156
  "node_modules/.pnpm/@angular-devkit+schematics@17.2.0/node_modules/@angular-devkit/schematics/testing/index.js"(exports2) {
384351
385157
  "use strict";
385158
+ /**
385159
+ * @license
385160
+ * Copyright Google LLC All Rights Reserved.
385161
+ *
385162
+ * Use of this source code is governed by an MIT-style license that can be
385163
+ * found in the LICENSE file at https://angular.io/license
385164
+ */
384352
385165
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
384353
385166
  if (k23 === void 0)
384354
385167
  k23 = k6;
@@ -384532,6 +385345,13 @@ var require_invoke_nx_generator = __commonJS({
384532
385345
  var require_api = __commonJS({
384533
385346
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/api.js"(exports2) {
384534
385347
  "use strict";
385348
+ /**
385349
+ * @license
385350
+ * Copyright Google LLC All Rights Reserved.
385351
+ *
385352
+ * Use of this source code is governed by an MIT-style license that can be
385353
+ * found in the LICENSE file at https://angular.io/license
385354
+ */
384535
385355
  Object.defineProperty(exports2, "__esModule", { value: true });
384536
385356
  exports2.isJobHandler = exports2.JobState = exports2.JobOutboundMessageKind = exports2.JobInboundMessageKind = void 0;
384537
385357
  var JobInboundMessageKind;
@@ -384572,6 +385392,13 @@ var require_api = __commonJS({
384572
385392
  var require_strategy = __commonJS({
384573
385393
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/strategy.js"(exports2) {
384574
385394
  "use strict";
385395
+ /**
385396
+ * @license
385397
+ * Copyright Google LLC All Rights Reserved.
385398
+ *
385399
+ * Use of this source code is governed by an MIT-style license that can be
385400
+ * found in the LICENSE file at https://angular.io/license
385401
+ */
384575
385402
  Object.defineProperty(exports2, "__esModule", { value: true });
384576
385403
  exports2.memoize = exports2.reuse = exports2.serialize = void 0;
384577
385404
  var core_1 = require_src2();
@@ -384647,6 +385474,13 @@ var require_strategy = __commonJS({
384647
385474
  var require_create_job_handler = __commonJS({
384648
385475
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/create-job-handler.js"(exports2) {
384649
385476
  "use strict";
385477
+ /**
385478
+ * @license
385479
+ * Copyright Google LLC All Rights Reserved.
385480
+ *
385481
+ * Use of this source code is governed by an MIT-style license that can be
385482
+ * found in the LICENSE file at https://angular.io/license
385483
+ */
384650
385484
  Object.defineProperty(exports2, "__esModule", { value: true });
384651
385485
  exports2.createLoggerJob = exports2.createJobFactory = exports2.createJobHandler = exports2.ChannelAlreadyExistException = void 0;
384652
385486
  var core_1 = require_src2();
@@ -384765,6 +385599,13 @@ var require_create_job_handler = __commonJS({
384765
385599
  var require_exception4 = __commonJS({
384766
385600
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/exception.js"(exports2) {
384767
385601
  "use strict";
385602
+ /**
385603
+ * @license
385604
+ * Copyright Google LLC All Rights Reserved.
385605
+ *
385606
+ * Use of this source code is governed by an MIT-style license that can be
385607
+ * found in the LICENSE file at https://angular.io/license
385608
+ */
384768
385609
  Object.defineProperty(exports2, "__esModule", { value: true });
384769
385610
  exports2.JobDoesNotExistException = exports2.JobNameAlreadyRegisteredException = void 0;
384770
385611
  var core_1 = require_src2();
@@ -384787,6 +385628,13 @@ var require_exception4 = __commonJS({
384787
385628
  var require_dispatcher = __commonJS({
384788
385629
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/dispatcher.js"(exports2) {
384789
385630
  "use strict";
385631
+ /**
385632
+ * @license
385633
+ * Copyright Google LLC All Rights Reserved.
385634
+ *
385635
+ * Use of this source code is governed by an MIT-style license that can be
385636
+ * found in the LICENSE file at https://angular.io/license
385637
+ */
384790
385638
  Object.defineProperty(exports2, "__esModule", { value: true });
384791
385639
  exports2.createDispatcher = void 0;
384792
385640
  var api_1 = require_api();
@@ -384830,6 +385678,13 @@ var require_dispatcher = __commonJS({
384830
385678
  var require_fallback_registry = __commonJS({
384831
385679
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/fallback-registry.js"(exports2) {
384832
385680
  "use strict";
385681
+ /**
385682
+ * @license
385683
+ * Copyright Google LLC All Rights Reserved.
385684
+ *
385685
+ * Use of this source code is governed by an MIT-style license that can be
385686
+ * found in the LICENSE file at https://angular.io/license
385687
+ */
384833
385688
  Object.defineProperty(exports2, "__esModule", { value: true });
384834
385689
  exports2.FallbackRegistry = void 0;
384835
385690
  var rxjs_1 = require_cjs();
@@ -384853,6 +385708,13 @@ var require_fallback_registry = __commonJS({
384853
385708
  var require_simple_registry = __commonJS({
384854
385709
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-registry.js"(exports2) {
384855
385710
  "use strict";
385711
+ /**
385712
+ * @license
385713
+ * Copyright Google LLC All Rights Reserved.
385714
+ *
385715
+ * Use of this source code is governed by an MIT-style license that can be
385716
+ * found in the LICENSE file at https://angular.io/license
385717
+ */
384856
385718
  Object.defineProperty(exports2, "__esModule", { value: true });
384857
385719
  exports2.SimpleJobRegistry = void 0;
384858
385720
  var core_1 = require_src2();
@@ -384916,6 +385778,13 @@ var require_simple_registry = __commonJS({
384916
385778
  var require_simple_scheduler = __commonJS({
384917
385779
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/simple-scheduler.js"(exports2) {
384918
385780
  "use strict";
385781
+ /**
385782
+ * @license
385783
+ * Copyright Google LLC All Rights Reserved.
385784
+ *
385785
+ * Use of this source code is governed by an MIT-style license that can be
385786
+ * found in the LICENSE file at https://angular.io/license
385787
+ */
384919
385788
  Object.defineProperty(exports2, "__esModule", { value: true });
384920
385789
  exports2.SimpleScheduler = exports2.JobOutputSchemaValidationError = exports2.JobInboundMessageSchemaValidationError = exports2.JobArgumentSchemaValidationError = void 0;
384921
385790
  var core_1 = require_src2();
@@ -385285,6 +386154,13 @@ var require_simple_scheduler = __commonJS({
385285
386154
  var require_jobs = __commonJS({
385286
386155
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/jobs/index.js"(exports2) {
385287
386156
  "use strict";
386157
+ /**
386158
+ * @license
386159
+ * Copyright Google LLC All Rights Reserved.
386160
+ *
386161
+ * Use of this source code is governed by an MIT-style license that can be
386162
+ * found in the LICENSE file at https://angular.io/license
386163
+ */
385288
386164
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
385289
386165
  if (k23 === void 0)
385290
386166
  k23 = k6;
@@ -385356,6 +386232,13 @@ var require_progress_schema = __commonJS({
385356
386232
  var require_api2 = __commonJS({
385357
386233
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/api.js"(exports2) {
385358
386234
  "use strict";
386235
+ /**
386236
+ * @license
386237
+ * Copyright Google LLC All Rights Reserved.
386238
+ *
386239
+ * Use of this source code is governed by an MIT-style license that can be
386240
+ * found in the LICENSE file at https://angular.io/license
386241
+ */
385359
386242
  Object.defineProperty(exports2, "__esModule", { value: true });
385360
386243
  exports2.scheduleTargetAndForget = exports2.targetFromTargetString = exports2.targetStringFromTarget = exports2.fromAsyncIterable = exports2.isBuilderOutput = exports2.BuilderProgressState = void 0;
385361
386244
  var rxjs_1 = require_cjs();
@@ -385518,6 +386401,13 @@ var require_progress_schema2 = __commonJS({
385518
386401
  var require_schedule_by_name = __commonJS({
385519
386402
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/schedule-by-name.js"(exports2) {
385520
386403
  "use strict";
386404
+ /**
386405
+ * @license
386406
+ * Copyright Google LLC All Rights Reserved.
386407
+ *
386408
+ * Use of this source code is governed by an MIT-style license that can be
386409
+ * found in the LICENSE file at https://angular.io/license
386410
+ */
385521
386411
  Object.defineProperty(exports2, "__esModule", { value: true });
385522
386412
  exports2.scheduleByTarget = exports2.scheduleByName = void 0;
385523
386413
  var rxjs_1 = require_cjs();
@@ -385699,6 +386589,13 @@ var require_output_schema = __commonJS({
385699
386589
  var require_architect = __commonJS({
385700
386590
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/architect.js"(exports2) {
385701
386591
  "use strict";
386592
+ /**
386593
+ * @license
386594
+ * Copyright Google LLC All Rights Reserved.
386595
+ *
386596
+ * Use of this source code is governed by an MIT-style license that can be
386597
+ * found in the LICENSE file at https://angular.io/license
386598
+ */
385702
386599
  Object.defineProperty(exports2, "__esModule", { value: true });
385703
386600
  exports2.Architect = void 0;
385704
386601
  var core_1 = require_src2();
@@ -385965,6 +386862,13 @@ var require_architect = __commonJS({
385965
386862
  var require_internal = __commonJS({
385966
386863
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/internal.js"(exports2) {
385967
386864
  "use strict";
386865
+ /**
386866
+ * @license
386867
+ * Copyright Google LLC All Rights Reserved.
386868
+ *
386869
+ * Use of this source code is governed by an MIT-style license that can be
386870
+ * found in the LICENSE file at https://angular.io/license
386871
+ */
385968
386872
  Object.defineProperty(exports2, "__esModule", { value: true });
385969
386873
  exports2.BuilderVersionSymbol = exports2.BuilderSymbol = void 0;
385970
386874
  exports2.BuilderSymbol = Symbol.for("@angular-devkit/architect:builder");
@@ -386017,6 +386921,13 @@ var require_package3 = __commonJS({
386017
386921
  var require_create_builder = __commonJS({
386018
386922
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/create-builder.js"(exports2) {
386019
386923
  "use strict";
386924
+ /**
386925
+ * @license
386926
+ * Copyright Google LLC All Rights Reserved.
386927
+ *
386928
+ * Use of this source code is governed by an MIT-style license that can be
386929
+ * found in the LICENSE file at https://angular.io/license
386930
+ */
386020
386931
  Object.defineProperty(exports2, "__esModule", { value: true });
386021
386932
  exports2.createBuilder = void 0;
386022
386933
  var core_1 = require_src2();
@@ -386183,6 +387094,13 @@ var require_create_builder = __commonJS({
386183
387094
  var require_src4 = __commonJS({
386184
387095
  "node_modules/.pnpm/@angular-devkit+architect@0.1702.0/node_modules/@angular-devkit/architect/src/index.js"(exports2) {
386185
387096
  "use strict";
387097
+ /**
387098
+ * @license
387099
+ * Copyright Google LLC All Rights Reserved.
387100
+ *
387101
+ * Use of this source code is governed by an MIT-style license that can be
387102
+ * found in the LICENSE file at https://angular.io/license
387103
+ */
386186
387104
  var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o2, m2, k6, k23) {
386187
387105
  if (k23 === void 0)
386188
387106
  k23 = k6;
@@ -395238,6 +396156,7 @@ var require_out5 = __commonJS({
395238
396156
  // node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
395239
396157
  var require_queue_microtask2 = __commonJS({
395240
396158
  "node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js"(exports2, module2) {
396159
+ /*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
395241
396160
  var promise;
395242
396161
  module2.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
395243
396162
  throw err;
@@ -395248,6 +396167,7 @@ var require_queue_microtask2 = __commonJS({
395248
396167
  // node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
395249
396168
  var require_run_parallel2 = __commonJS({
395250
396169
  "node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js"(exports2, module2) {
396170
+ /*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
395251
396171
  module2.exports = runParallel;
395252
396172
  var queueMicrotask2 = require_queue_microtask2();
395253
396173
  function runParallel(tasks, cb) {
@@ -401577,1195 +402497,3 @@ async function normalizeOptions2(tree, options8) {
401577
402497
  withRunExecutor,
401578
402498
  withRunGenerator
401579
402499
  });
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
- */