@yamato-daiwa/automation 0.3.0-alpha.2 → 0.3.0

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.
Files changed (2) hide show
  1. package/EntryPoint.js +895 -686
  2. package/package.json +13 -12
package/EntryPoint.js CHANGED
@@ -1549,14 +1549,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
1549
1549
  return (mod && mod.__esModule) ? mod : { "default": mod };
1550
1550
  };
1551
1551
  Object.defineProperty(exports, "__esModule", ({ value: true }));
1552
- /* --- Applied utils ------------------------------------------------------------------------------------------------ */
1552
+ /* ─── Applied utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
1553
1553
  const gulp_1 = __importDefault(__webpack_require__(/*! gulp */ "gulp"));
1554
1554
  const browser_sync_1 = __importDefault(__webpack_require__(/*! browser-sync */ "browser-sync"));
1555
- /* --- Third-party solutions specialises ---------------------------------------------------------------------------- */
1555
+ /* ─── Shared state ───────────────────────────────────────────────────────────────────────────────────────────────── */
1556
+ const CommonStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/CommonStore */ "./ProjectBuilding/Common/CommonStore.ts"));
1557
+ /* ─── Third-party solutions specialises ──────────────────────────────────────────────────────────────────────────── */
1556
1558
  const ChokidarSpecialist_1 = __importDefault(__webpack_require__(/*! @ThirdPartySolutionsSpecialists/Chokidar/ChokidarSpecialist */ "./ThirdPartySolutionsSpecialists/Chokidar/ChokidarSpecialist.ts"));
1557
1559
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
1558
1560
  const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
1559
- /* --- Localization ------------------------------------------------------------------------------------------------- */
1561
+ /* ─── Localization ───────────────────────────────────────────────────────────────────────────────────────────────── */
1560
1562
  const BrowserLiveReloaderLocalization_english_1 = __importDefault(__webpack_require__(/*! @BrowserLiveReloading/BrowserLiveReloaderLocalization.english */ "./ProjectBuilding/BrowserLiveReloading/BrowserLiveReloaderLocalization.english.ts"));
1561
1563
  class BrowserLiveReloader {
1562
1564
  static localization = BrowserLiveReloaderLocalization_english_1.default;
@@ -1598,7 +1600,6 @@ class BrowserLiveReloader {
1598
1600
  ...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.localServerCustomPort) ? {
1599
1601
  port: this.browserLiveReloadingSettingsRepresentative.localServerCustomPort
1600
1602
  } : null,
1601
- watch: true,
1602
1603
  ignore: this.browserLiveReloadingSettingsRepresentative.globSelectorsOfFilesAndDirectoriesWhichWillBeIgnored,
1603
1604
  /* [ Browsersync theory ] When value is empty array, no browsers will be opened. */
1604
1605
  ...this.browserLiveReloadingSettingsRepresentative.targetBrowsers.length > 0 ? {
@@ -1613,7 +1614,7 @@ class BrowserLiveReloader {
1613
1614
  logLevel: "warn",
1614
1615
  notify: this.browserLiveReloadingSettingsRepresentative.mustDisplayBrowsersyncConnectedPopupInBrowser,
1615
1616
  middleware: this.onRequest.bind(this)
1616
- });
1617
+ }, () => { CommonStore_1.default.triggerInitialBuildDoneEvent(); });
1617
1618
  }
1618
1619
  initializeOutputFilesWatcher() {
1619
1620
  let waitingForSubsequentFilesWillBeUpdatedCountdown;
@@ -2085,6 +2086,41 @@ const BrowserLiveReloadingSettingsNormalizerLocalization__English = {
2085
2086
  exports["default"] = BrowserLiveReloadingSettingsNormalizerLocalization__English;
2086
2087
 
2087
2088
 
2089
+ /***/ }),
2090
+
2091
+ /***/ "./ProjectBuilding/Common/CommonStore.ts":
2092
+ /*!***********************************************!*\
2093
+ !*** ./ProjectBuilding/Common/CommonStore.ts ***!
2094
+ \***********************************************/
2095
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2096
+
2097
+
2098
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
2099
+ const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
2100
+ class CommonSharedState {
2101
+ /* ━━━ Events ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
2102
+ /* ─── On initial build done ────────────────────────────────────────────────────────────────────────────────────── */
2103
+ static onInitialBuildDoneEventHandlers = new Map();
2104
+ static triggerInitialBuildDoneEvent() {
2105
+ for (const [handlerID, handler] of CommonSharedState.onInitialBuildDoneEventHandlers.entries()) {
2106
+ try {
2107
+ handler();
2108
+ }
2109
+ catch (error) {
2110
+ es_extensions_1.Logger.logError({
2111
+ errorType: "EventHandlerExecutionFailedError",
2112
+ title: "Event handler execution failed",
2113
+ description: `The error has occurred during the execution of on initial build done event handler with ID: "${handlerID}".`,
2114
+ occurrenceLocation: "CommonSharedState.triggerInitialBuildDoneEvent()",
2115
+ caughtError: error
2116
+ });
2117
+ }
2118
+ }
2119
+ }
2120
+ }
2121
+ exports["default"] = CommonSharedState;
2122
+
2123
+
2088
2124
  /***/ }),
2089
2125
 
2090
2126
  /***/ "./ProjectBuilding/Common/Defaults/AssetsProcessingGenericSettings__Default.ts":
@@ -2464,6 +2500,52 @@ var LintingSettings__FromFile__RawValid;
2464
2500
  exports["default"] = LintingSettings__FromFile__RawValid;
2465
2501
 
2466
2502
 
2503
+ /***/ }),
2504
+
2505
+ /***/ "./ProjectBuilding/Common/RawConfig/Reusables/OutputDirectoryPathTransformationsSettings__FromFile__RawValid.ts":
2506
+ /*!**********************************************************************************************************************!*\
2507
+ !*** ./ProjectBuilding/Common/RawConfig/Reusables/OutputDirectoryPathTransformationsSettings__FromFile__RawValid.ts ***!
2508
+ \**********************************************************************************************************************/
2509
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2510
+
2511
+
2512
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
2513
+ const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
2514
+ var OutputDirectoryPathTransformationsSettings__FromFile__RawValid;
2515
+ (function (OutputDirectoryPathTransformationsSettings__FromFile__RawValid) {
2516
+ function getLocalizedPropertiesSpecification(outputDirectoryPathTransformationsSettingsLocalization) {
2517
+ return {
2518
+ [outputDirectoryPathTransformationsSettingsLocalization.segmentsWhichMustBeRemoved.KEY]: {
2519
+ newName: "segmentsWhichMustBeRemoved",
2520
+ type: Array,
2521
+ required: false,
2522
+ element: {
2523
+ type: String,
2524
+ minimalCharactersCount: 1
2525
+ }
2526
+ },
2527
+ [outputDirectoryPathTransformationsSettingsLocalization.segmentsWhichLastDuplicatesMustBeRemoved.KEY]: {
2528
+ newName: "segmentsWhichLastDuplicatesMustBeRemoved",
2529
+ type: Array,
2530
+ required: false,
2531
+ element: {
2532
+ type: String,
2533
+ minimalCharactersCount: 1
2534
+ }
2535
+ },
2536
+ [outputDirectoryPathTransformationsSettingsLocalization.segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved.KEY]: {
2537
+ newName: "segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved",
2538
+ type: Number,
2539
+ numbersSet: es_extensions_1.RawObjectDataProcessor.NumbersSets.naturalNumber,
2540
+ required: false
2541
+ }
2542
+ };
2543
+ }
2544
+ OutputDirectoryPathTransformationsSettings__FromFile__RawValid.getLocalizedPropertiesSpecification = getLocalizedPropertiesSpecification;
2545
+ })(OutputDirectoryPathTransformationsSettings__FromFile__RawValid || (OutputDirectoryPathTransformationsSettings__FromFile__RawValid = {}));
2546
+ exports["default"] = OutputDirectoryPathTransformationsSettings__FromFile__RawValid;
2547
+
2548
+
2467
2549
  /***/ }),
2468
2550
 
2469
2551
  /***/ "./ProjectBuilding/Common/RawConfig/Reusables/ResourceFilesGroupBuildingModeDependentOutputGenericSettings__FromFile__RawValid.ts":
@@ -3308,6 +3390,53 @@ class GulpStreamBasedSourceCodeProcessingConfigRepresentative extends SourceCode
3308
3390
  exports["default"] = GulpStreamBasedSourceCodeProcessingConfigRepresentative;
3309
3391
 
3310
3392
 
3393
+ /***/ }),
3394
+
3395
+ /***/ "./ProjectBuilding/Common/SettingsRepresentatives/OutputDirectoryPathTransformationsSettingsRepresentative.ts":
3396
+ /*!********************************************************************************************************************!*\
3397
+ !*** ./ProjectBuilding/Common/SettingsRepresentatives/OutputDirectoryPathTransformationsSettingsRepresentative.ts ***!
3398
+ \********************************************************************************************************************/
3399
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3400
+
3401
+
3402
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
3403
+ /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
3404
+ const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
3405
+ class OutputDirectoryPathTransformationsSettingsRepresentative {
3406
+ static transform(targetPath, outputDirectoryPathTransformationsSettings) {
3407
+ let outputPath = targetPath;
3408
+ if (outputDirectoryPathTransformationsSettings.segmentsWhichMustBeRemoved.length > 0) {
3409
+ outputPath = (0, es_extensions_1.removeSpecificSegmentsFromURI_Path)({
3410
+ targetPath: outputPath,
3411
+ targetSegments: outputDirectoryPathTransformationsSettings.segmentsWhichMustBeRemoved,
3412
+ mustOutputAlwaysWithForwardSlashesPathSeparators: true
3413
+ });
3414
+ }
3415
+ if (outputDirectoryPathTransformationsSettings.segmentsWhichLastDuplicatesMustBeRemoved.length > 0) {
3416
+ const outputDirectoryAbsolutePathExplodedToSegmentsForTargetSourceFile = (0, es_extensions_1.explodeURI_PathToSegments)(outputPath);
3417
+ for (const pathSegmentWhichLastDuplicateMustBeRemoved of outputDirectoryPathTransformationsSettings.
3418
+ segmentsWhichLastDuplicatesMustBeRemoved) {
3419
+ const indexesOfDuplicatesOfTargetPathSegment = (0, es_extensions_1.getIndexesOfArrayElementsWhichSatisfiesThePredicate)(outputDirectoryAbsolutePathExplodedToSegmentsForTargetSourceFile, (outputDirectoryAbsolutePathSegment) => outputDirectoryAbsolutePathSegment === pathSegmentWhichLastDuplicateMustBeRemoved);
3420
+ (0, es_extensions_1.removeArrayElementsByIndexes)({
3421
+ targetArray: outputDirectoryAbsolutePathExplodedToSegmentsForTargetSourceFile,
3422
+ indexes: indexesOfDuplicatesOfTargetPathSegment[indexesOfDuplicatesOfTargetPathSegment.length - 1],
3423
+ mutably: true
3424
+ });
3425
+ outputPath = outputDirectoryAbsolutePathExplodedToSegmentsForTargetSourceFile.join("/");
3426
+ }
3427
+ }
3428
+ if ((0, es_extensions_1.isNumber)(outputDirectoryPathTransformationsSettings.segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved)) {
3429
+ outputPath =
3430
+ (0, es_extensions_1.explodeURI_PathToSegments)(outputPath).
3431
+ slice(0, -outputDirectoryPathTransformationsSettings.segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved).
3432
+ join("/");
3433
+ }
3434
+ return outputPath;
3435
+ }
3436
+ }
3437
+ exports["default"] = OutputDirectoryPathTransformationsSettingsRepresentative;
3438
+
3439
+
3311
3440
  /***/ }),
3312
3441
 
3313
3442
  /***/ "./ProjectBuilding/Common/SettingsRepresentatives/SourceCodeProcessingConfigRepresentative.ts":
@@ -3421,7 +3550,7 @@ class AssetsSourceFilesWatcher {
3421
3550
  this.onFileDeletedEventHandlers[handlerID] = handler;
3422
3551
  return this;
3423
3552
  }
3424
- initializeGulpWatcher() {
3553
+ startWatching() {
3425
3554
  gulp_1.default.
3426
3555
  watch([
3427
3556
  es_extensions_nodejs_1.ImprovedGlob.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
@@ -3578,7 +3707,7 @@ class CodeSourceFilesWatcher {
3578
3707
  this.onNonEntryPointFileDeletedEventHandlers[handlerID] = handler;
3579
3708
  return this;
3580
3709
  }
3581
- initializeGulpWatcher() {
3710
+ startWatching() {
3582
3711
  gulp_1.default.
3583
3712
  watch([
3584
3713
  es_extensions_nodejs_1.ImprovedGlob.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
@@ -4165,73 +4294,6 @@ class AssetVinylFile extends VinylFileClass_1.default {
4165
4294
  exports["default"] = AssetVinylFile;
4166
4295
 
4167
4296
 
4168
- /***/ }),
4169
-
4170
- /***/ "./ProjectBuilding/PlainCopying/PlainCopiedVinylFile.ts":
4171
- /*!**************************************************************!*\
4172
- !*** ./ProjectBuilding/PlainCopying/PlainCopiedVinylFile.ts ***!
4173
- \**************************************************************/
4174
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4175
-
4176
-
4177
- var __importDefault = (this && this.__importDefault) || function (mod) {
4178
- return (mod && mod.__esModule) ? mod : { "default": mod };
4179
- };
4180
- Object.defineProperty(exports, "__esModule", ({ value: true }));
4181
- /* --- Settings representative -------------------------------------------------------------------------------------- */
4182
- const PlainCopyingSettingsRepresentative_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopyingSettingsRepresentative */ "./ProjectBuilding/PlainCopying/PlainCopyingSettingsRepresentative.ts"));
4183
- const VinylFileClass_1 = __importDefault(__webpack_require__(/*! @Utils/VinylFileClass */ "./Utils/VinylFileClass.ts"));
4184
- /* --- Utils -------------------------------------------------------------------------------------------------------- */
4185
- const path_1 = __importDefault(__webpack_require__(/*! path */ "path"));
4186
- const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
4187
- const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
4188
- class PlainCopiedVinylFile extends VinylFileClass_1.default {
4189
- sourceAbsolutePath;
4190
- outputDirectoryAbsolutePath;
4191
- associatedFilesGroupSettings;
4192
- constructor(initialFile, associatedFilesGroupSettings) {
4193
- let newFileNameWithoutExtensionData;
4194
- if ("sourceFileAbsolutePath" in associatedFilesGroupSettings) {
4195
- if ((0, es_extensions_1.isNotUndefined)(associatedFilesGroupSettings.newFileNameWithExtension)) {
4196
- const parsedNewFileNameWithExtension = path_1.default.parse(associatedFilesGroupSettings.newFileNameWithExtension);
4197
- newFileNameWithoutExtensionData = {
4198
- stem: parsedNewFileNameWithExtension.name,
4199
- extname: parsedNewFileNameWithExtension.ext
4200
- };
4201
- }
4202
- }
4203
- else {
4204
- const newFileNameWithExtension = associatedFilesGroupSettings.filesRenamings.get(es_extensions_nodejs_1.ImprovedPath.computeRelativePath({
4205
- basePath: associatedFilesGroupSettings.sourceDirectoryAbsolutePath,
4206
- comparedPath: initialFile.path,
4207
- alwaysForwardSlashSeparators: true
4208
- }));
4209
- if ((0, es_extensions_1.isNotUndefined)(newFileNameWithExtension)) {
4210
- const parsedNewFileNameWithExtension = path_1.default.parse(newFileNameWithExtension);
4211
- newFileNameWithoutExtensionData = {
4212
- stem: parsedNewFileNameWithExtension.name,
4213
- extname: parsedNewFileNameWithExtension.ext
4214
- };
4215
- }
4216
- }
4217
- super({
4218
- explicitlySpecifiedPathPart: initialFile.base,
4219
- path: initialFile.path,
4220
- contents: Buffer.isBuffer(initialFile.contents) ? initialFile.contents : Buffer.from(""),
4221
- ...(0, es_extensions_1.isNotUndefined)(newFileNameWithoutExtensionData) ? newFileNameWithoutExtensionData : null
4222
- });
4223
- this.sourceAbsolutePath = es_extensions_nodejs_1.ImprovedPath.replacePathSeparatorsToForwardSlashes(initialFile.path);
4224
- this.outputDirectoryAbsolutePath = PlainCopyingSettingsRepresentative_1.default.
4225
- computeRelevantOutputDirectoryAbsolutePathForTargetSourceFile(initialFile.path, associatedFilesGroupSettings);
4226
- this.associatedFilesGroupSettings = associatedFilesGroupSettings;
4227
- }
4228
- static get outputDirectoryCalculatorForSpecificFile() {
4229
- return (targetFile) => VinylFileClass_1.default.getOutputDirectoryAbsolutePathOfExpectedToBeSelfInstance(targetFile);
4230
- }
4231
- }
4232
- exports["default"] = PlainCopiedVinylFile;
4233
-
4234
-
4235
4297
  /***/ }),
4236
4298
 
4237
4299
  /***/ "./ProjectBuilding/PlainCopying/PlainCopier.ts":
@@ -4245,51 +4307,40 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4245
4307
  return (mod && mod.__esModule) ? mod : { "default": mod };
4246
4308
  };
4247
4309
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4248
- /* --- Applied utils ------------------------------------------------------------------------------------------------ */
4310
+ /* ─── State management ───────────────────────────────────────────────────────────────────────────────────────────── */
4311
+ const PlainCopyingStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopyingStore */ "./ProjectBuilding/PlainCopying/PlainCopyingStore.ts"));
4312
+ /* ─── Applied utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
4249
4313
  const gulp_1 = __importDefault(__webpack_require__(/*! gulp */ "gulp"));
4250
4314
  const GulpStreamModifier_1 = __importDefault(__webpack_require__(/*! @Utils/GulpStreamModifier */ "./Utils/GulpStreamModifier.ts"));
4251
4315
  const createImmediatelyEndingEmptyStream_1 = __importDefault(__webpack_require__(/*! @Utils/createImmediatelyEndingEmptyStream */ "./Utils/createImmediatelyEndingEmptyStream.ts"));
4252
- const PlainCopiedVinylFile_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopiedVinylFile */ "./ProjectBuilding/PlainCopying/PlainCopiedVinylFile.ts"));
4253
- /* --- General utils ------------------------------------------------------------------------------------------------ */
4316
+ /* ─── General utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
4254
4317
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
4255
- const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
4318
+ const path_1 = __importDefault(__webpack_require__(/*! path */ "path"));
4256
4319
  class PlainCopier {
4257
- sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence;
4258
4320
  static providePlainCopierIfMust(masterConfigRepresentative) {
4259
4321
  if ((0, es_extensions_1.isUndefined)(masterConfigRepresentative.plainCopyingSettingsRepresentative) ||
4260
4322
  Object.entries(masterConfigRepresentative.plainCopyingSettingsRepresentative.filesGroups).length === 0) {
4261
4323
  return (0, createImmediatelyEndingEmptyStream_1.default)();
4262
4324
  }
4263
- return new PlainCopier(masterConfigRepresentative.plainCopyingSettingsRepresentative).copyFiles();
4264
- }
4265
- constructor(plainCopyingSettingsRepresentative) {
4266
- const sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence = {};
4267
- for (const filesGroupSettings of Object.values(plainCopyingSettingsRepresentative.filesGroups)) {
4268
- const absolutePathsOfFilesOfTargetGroup = "sourceFileAbsolutePath" in filesGroupSettings ?
4269
- [filesGroupSettings.sourceFileAbsolutePath] :
4270
- es_extensions_nodejs_1.ImprovedGlob.getFilesAbsolutePathsSynchronously([
4271
- es_extensions_nodejs_1.ImprovedGlob.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
4272
- basicDirectoryPath: filesGroupSettings.sourceDirectoryAbsolutePath,
4273
- fileNamesExtensions: filesGroupSettings.fileNameLastExtensions
4274
- })
4275
- ]);
4276
- for (const fileAbsolutePath of absolutePathsOfFilesOfTargetGroup) {
4277
- sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence[es_extensions_nodejs_1.ImprovedPath.replacePathSeparatorsToForwardSlashes(fileAbsolutePath)] = filesGroupSettings;
4278
- }
4325
+ const targetSourceFilesAbsolutePaths = Array.from(PlainCopyingStore_1.default.sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap.keys());
4326
+ if (targetSourceFilesAbsolutePaths.length === 0) {
4327
+ return (0, createImmediatelyEndingEmptyStream_1.default)();
4279
4328
  }
4280
- this.sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence =
4281
- sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence;
4282
- }
4283
- copyFiles() {
4284
- return () => gulp_1.default.src(Object.keys(this.sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence)).
4329
+ return () => gulp_1.default.src(targetSourceFilesAbsolutePaths).
4285
4330
  pipe(GulpStreamModifier_1.default.modify({
4286
- onStreamStartedEventCommonHandler: this.replacePlainVinylFileWithPlainCopiedVinylFile.bind(this)
4331
+ async onStreamStartedEventCommonHandler(vinylFile) {
4332
+ const outputAbsolutePathForTargetFile = PlainCopyingStore_1.default.
4333
+ sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap.
4334
+ get((0, es_extensions_1.replaceDoubleBackslashesWithForwardSlashes)(vinylFile.path));
4335
+ if ((0, es_extensions_1.isUndefined)(outputAbsolutePathForTargetFile)) {
4336
+ return Promise.resolve(GulpStreamModifier_1.default.CompletionSignals.REMOVING_FILE_FROM_STREAM);
4337
+ }
4338
+ vinylFile.path = outputAbsolutePathForTargetFile;
4339
+ vinylFile.base = path_1.default.dirname(outputAbsolutePathForTargetFile);
4340
+ return Promise.resolve(GulpStreamModifier_1.default.CompletionSignals.PASSING_ON);
4341
+ }
4287
4342
  })).
4288
- pipe(gulp_1.default.dest(PlainCopiedVinylFile_1.default.outputDirectoryCalculatorForSpecificFile));
4289
- }
4290
- async replacePlainVinylFileWithPlainCopiedVinylFile(plainVinylFile, addNewFileToStream) {
4291
- addNewFileToStream(new PlainCopiedVinylFile_1.default(plainVinylFile, this.sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondence[es_extensions_nodejs_1.ImprovedPath.replacePathSeparatorsToForwardSlashes(plainVinylFile.path)]));
4292
- return Promise.resolve(GulpStreamModifier_1.default.CompletionSignals.REMOVING_FILE_FROM_STREAM);
4343
+ pipe(gulp_1.default.dest((vinylFile) => vinylFile.base));
4293
4344
  }
4294
4345
  }
4295
4346
  exports["default"] = PlainCopier;
@@ -4301,92 +4352,180 @@ exports["default"] = PlainCopier;
4301
4352
  /*!***************************************************************************!*\
4302
4353
  !*** ./ProjectBuilding/PlainCopying/PlainCopyingRawSettingsNormalizer.ts ***!
4303
4354
  \***************************************************************************/
4304
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4355
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
4305
4356
 
4306
4357
 
4358
+ var __importDefault = (this && this.__importDefault) || function (mod) {
4359
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4360
+ };
4307
4361
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4308
- /* --- Utils -------------------------------------------------------------------------------------------------------- */
4362
+ /* ─── Default settings ───────────────────────────────────────────────────────────────────────────────────────────── */
4363
+ const PlainCopyingSettings__Default_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopyingSettings__Default */ "./ProjectBuilding/PlainCopying/PlainCopyingSettings__Default.ts"));
4364
+ /* ─── Settings normalizers ───────────────────────────────────────────────────────────────────────────────────────── */
4365
+ const OutputPathTransformationsSettingsNormalizer_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/RawSettingsNormalizers/Reusables/OutputPathTransformationsSettingsNormalizer */ "./ProjectBuilding/Common/RawSettingsNormalizers/Reusables/OutputPathTransformationsSettingsNormalizer.ts"));
4366
+ /* ─── Settings representatives ───────────────────────────────────────────────────────────────────────────────────── */
4367
+ const OutputDirectoryPathTransformationsSettingsRepresentative_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/SettingsRepresentatives/OutputDirectoryPathTransformationsSettingsRepresentative */ "./ProjectBuilding/Common/SettingsRepresentatives/OutputDirectoryPathTransformationsSettingsRepresentative.ts"));
4368
+ /* ─── Data stores ────────────────────────────────────────────────────────────────────────────────────────────────── */
4369
+ const PlainCopyingStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopyingStore */ "./ProjectBuilding/PlainCopying/PlainCopyingStore.ts"));
4370
+ /* ─── Applied utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
4371
+ const rev_hash_1 = __importDefault(__webpack_require__(/*! rev-hash */ "../node_modules/rev-hash/index.js"));
4372
+ /* ─── General utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
4373
+ const fs_1 = __importDefault(__webpack_require__(/*! fs */ "fs"));
4309
4374
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
4310
4375
  const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
4311
4376
  class PlainCopyingRawSettingsNormalizer {
4312
- static normalize({ plainCopyingSettings__fromFile__rawValid, preMadeCSS = {}, commonSettings__normalized }) {
4313
- const duplicatedGroupsIDs = Object.keys(plainCopyingSettings__fromFile__rawValid.filesGroups).
4314
- filter((filesGroupID) => filesGroupID in preMadeCSS);
4315
- if (duplicatedGroupsIDs.length > 0) {
4316
- /* [ Approach ] Although this issue is not fatal for the project building, the user can resolve it easily. */
4317
- es_extensions_1.Logger.throwErrorAndLog({
4318
- errorInstance: new es_extensions_1.InvalidExternalDataError({
4319
- customMessage: "Below groups of the files for the plain copying are presents on both plain copying settings and styles " +
4320
- " processing settings.\n" +
4321
- `${duplicatedGroupsIDs.map((fileGroupID) => `● ${fileGroupID}`).join("\n")}\n` +
4322
- "With such duplicating, the references to these groups could not be resolved unambiguously. " +
4323
- "Please eliminate these duplicates."
4324
- }),
4325
- title: es_extensions_1.InvalidExternalDataError.localization.defaultTitle,
4326
- occurrenceLocation: "PlainCopyingRawSettingsNormalizer.normalize(compoundParameter)"
4327
- });
4328
- }
4377
+ static normalize({ plainCopyingSettings__fromFile__rawValid, commonSettings__normalized }) {
4329
4378
  const explicitlySpecifiedActualFilesGroupsIDs = commonSettings__normalized.tasksAndSourceFilesSelection?.plainCopying ?? [];
4330
4379
  const filesGroups = {};
4331
- for (const [filesGroupID, filesGroup__rawValid__fromFile] of Object.entries(plainCopyingSettings__fromFile__rawValid.filesGroups).concat(Object.entries(preMadeCSS))) {
4380
+ for (const [filesGroupID, filesGroup__rawValid__fromFile] of Object.entries(plainCopyingSettings__fromFile__rawValid.filesGroups)) {
4332
4381
  if (explicitlySpecifiedActualFilesGroupsIDs.length > 0 &&
4333
4382
  !explicitlySpecifiedActualFilesGroupsIDs.includes(filesGroupID)) {
4334
4383
  continue;
4335
4384
  }
4336
4385
  const aliasName = filesGroup__rawValid__fromFile.aliasName ?? filesGroupID;
4337
4386
  if ("sourceFileRelativePath" in filesGroup__rawValid__fromFile) {
4338
- const singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile = filesGroup__rawValid__fromFile.buildingModeDependent[commonSettings__normalized.projectBuildingMode];
4339
- if ((0, es_extensions_1.isUndefined)(singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile)) {
4387
+ const filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile = filesGroup__rawValid__fromFile.buildingModeDependent[commonSettings__normalized.projectBuildingMode];
4388
+ if ((0, es_extensions_1.isUndefined)(filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile)) {
4340
4389
  continue;
4341
4390
  }
4342
- const outputTopDirectoryAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4343
- commonSettings__normalized.projectRootDirectoryAbsolutePath,
4344
- singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.outputTopDirectoryRelativePath
4345
- ], { alwaysForwardSlashSeparators: true });
4346
- filesGroups[filesGroupID] = {
4391
+ filesGroups[filesGroupID] = PlainCopyingRawSettingsNormalizer.normalizeFilesSingularGroupSettings({
4392
+ projectRootDirectoryAbsolutePath: commonSettings__normalized.projectRootDirectoryAbsolutePath,
4393
+ sourceFileRelativePath: filesGroup__rawValid__fromFile.sourceFileRelativePath,
4347
4394
  aliasName,
4348
- outputTopDirectoryAbsolutePath,
4349
- sourceFileAbsolutePath: es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4350
- commonSettings__normalized.projectRootDirectoryAbsolutePath,
4351
- filesGroup__rawValid__fromFile.sourceFileRelativePath
4352
- ], { alwaysForwardSlashSeparators: true }),
4353
- ...(0, es_extensions_1.isNotUndefined)(singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.newFileNameWithExtension) ?
4354
- {
4355
- newFileNameWithExtension: singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.
4356
- newFileNameWithExtension
4357
- } : null,
4358
- outputFileAbsolutePath: es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4359
- outputTopDirectoryAbsolutePath,
4360
- singularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.newFileNameWithExtension ??
4361
- (0, es_extensions_1.getLastElementOfArray)(es_extensions_nodejs_1.ImprovedPath.explodePathToSegments(filesGroup__rawValid__fromFile.sourceFileRelativePath), { mustThrowErrorIfArrayIsEmpty: true })
4362
- ], { alwaysForwardSlashSeparators: true })
4363
- };
4364
- continue;
4395
+ filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile
4396
+ });
4365
4397
  }
4366
- const pluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile = filesGroup__rawValid__fromFile.buildingModeDependent[commonSettings__normalized.projectBuildingMode];
4367
- if ((0, es_extensions_1.isUndefined)(pluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile)) {
4368
- continue;
4398
+ else {
4399
+ const filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile = filesGroup__rawValid__fromFile.buildingModeDependent[commonSettings__normalized.projectBuildingMode];
4400
+ if ((0, es_extensions_1.isUndefined)(filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile)) {
4401
+ continue;
4402
+ }
4403
+ filesGroups[filesGroupID] = PlainCopyingRawSettingsNormalizer.normalizeFilesPluralGroupSettings({
4404
+ projectRootDirectoryAbsolutePath: commonSettings__normalized.projectRootDirectoryAbsolutePath,
4405
+ sourceTopDirectoryRelativePath: filesGroup__rawValid__fromFile.sourceTopDirectoryRelativePath,
4406
+ fileNameLastExtensions: filesGroup__rawValid__fromFile.fileNameLastExtensions,
4407
+ aliasName,
4408
+ filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile
4409
+ });
4369
4410
  }
4370
- const outputTopDirectoryAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4371
- commonSettings__normalized.projectRootDirectoryAbsolutePath,
4372
- pluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.outputTopDirectoryRelativePath
4373
- ], { alwaysForwardSlashSeparators: true });
4374
- filesGroups[filesGroupID] = {
4375
- aliasName,
4376
- outputTopDirectoryAbsolutePath,
4377
- sourceDirectoryAbsolutePath: es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4378
- commonSettings__normalized.projectRootDirectoryAbsolutePath,
4379
- filesGroup__rawValid__fromFile.sourceDirectoryRelativePath
4380
- ], { alwaysForwardSlashSeparators: true }),
4381
- fileNameLastExtensions: filesGroup__rawValid__fromFile.fileNameLastExtensions,
4382
- filesRenamings: new Map([
4383
- ...(pluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.filesRenamings ?? []).
4384
- map((fileRenaming) => [fileRenaming.pathRelativeToSourceDirectory, fileRenaming.newFileNameWithExtension])
4385
- ])
4386
- };
4387
4411
  }
4388
4412
  return { filesGroups };
4389
4413
  }
4414
+ static normalizeFilesSingularGroupSettings({ aliasName, projectRootDirectoryAbsolutePath, sourceFileRelativePath, filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile }) {
4415
+ const sourceFileAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectRootDirectoryAbsolutePath, sourceFileRelativePath], { alwaysForwardSlashSeparators: true });
4416
+ const initialFileNameWithExtensions = (0, es_extensions_1.extractFileNameWithAllExtensionsFromPath)({
4417
+ targetPath: sourceFileAbsolutePath,
4418
+ mustThrowErrorIfLastPathSegmentHasNoDots: true
4419
+ });
4420
+ const outputFileNameWithExtensions = PlainCopyingRawSettingsNormalizer.computeOutputFileNameWithExtensions({
4421
+ initialFileNameWithExtensions,
4422
+ sourceFileAbsolutePath,
4423
+ revisioningSettings: filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.revisioning,
4424
+ ...(0, es_extensions_1.isNotUndefined)(filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.newFileNameWithExtension) ?
4425
+ {
4426
+ fileRenamings: [
4427
+ {
4428
+ pathRelativeToSourceDirectory: initialFileNameWithExtensions,
4429
+ newFileNameWithExtension: filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.newFileNameWithExtension
4430
+ }
4431
+ ]
4432
+ } :
4433
+ null
4434
+ });
4435
+ const outputFileAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4436
+ projectRootDirectoryAbsolutePath,
4437
+ filesSingularGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.outputDirectoryRelativePath,
4438
+ outputFileNameWithExtensions
4439
+ ], { alwaysForwardSlashSeparators: true });
4440
+ PlainCopyingStore_1.default.
4441
+ sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap.
4442
+ set(sourceFileAbsolutePath, outputFileAbsolutePath);
4443
+ return {
4444
+ aliasName,
4445
+ sourceFileAbsolutePath,
4446
+ outputFileAbsolutePath
4447
+ };
4448
+ }
4449
+ static normalizeFilesPluralGroupSettings({ projectRootDirectoryAbsolutePath, sourceTopDirectoryRelativePath, fileNameLastExtensions, aliasName, filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile }) {
4450
+ const sourceTopDirectoryAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectRootDirectoryAbsolutePath, sourceTopDirectoryRelativePath], { alwaysForwardSlashSeparators: true });
4451
+ const outputTopDirectoryAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4452
+ projectRootDirectoryAbsolutePath,
4453
+ filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.outputTopDirectoryRelativePath
4454
+ ], { alwaysForwardSlashSeparators: true });
4455
+ const sourceAndOutputFilesAbsolutePathsCorrespondenceMapForCurrentGroup = new Map();
4456
+ for (const sourceFileAbsolutePath of es_extensions_nodejs_1.ImprovedGlob.getFilesAbsolutePathsSynchronously([
4457
+ es_extensions_nodejs_1.ImprovedGlob.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
4458
+ basicDirectoryPath: sourceTopDirectoryAbsolutePath,
4459
+ fileNamesExtensions: fileNameLastExtensions
4460
+ })
4461
+ ], { alwaysForwardSlashSeparators: true })) {
4462
+ const outputDirectoryAbsolutePath = OutputDirectoryPathTransformationsSettingsRepresentative_1.default.transform(es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4463
+ outputTopDirectoryAbsolutePath,
4464
+ es_extensions_nodejs_1.ImprovedPath.computeRelativePath({
4465
+ basePath: sourceTopDirectoryAbsolutePath,
4466
+ comparedPath: es_extensions_nodejs_1.ImprovedPath.extractDirectoryFromFilePath({
4467
+ targetPath: sourceFileAbsolutePath,
4468
+ ambiguitiesResolution: {
4469
+ mustConsiderLastSegmentStartingWithDotAsDirectory: false,
4470
+ mustConsiderLastSegmentWithNonLeadingDotAsDirectory: false,
4471
+ mustConsiderLastSegmentWihtoutDotsAsFileNameWithoutExtension: false
4472
+ }
4473
+ })
4474
+ })
4475
+ ], { alwaysForwardSlashSeparators: true }), OutputPathTransformationsSettingsNormalizer_1.default.normalize(filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.outputDirectoryPathTransformations));
4476
+ const outputFileNameWithExtensions = PlainCopyingRawSettingsNormalizer.computeOutputFileNameWithExtensions({
4477
+ initialFileNameWithExtensions: (0, es_extensions_1.extractFileNameWithAllExtensionsFromPath)({
4478
+ targetPath: sourceFileAbsolutePath,
4479
+ mustThrowErrorIfLastPathSegmentHasNoDots: true
4480
+ }),
4481
+ sourceTopDirectoryAbsolutePath,
4482
+ sourceFileAbsolutePath,
4483
+ revisioningSettings: filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.revisioning,
4484
+ fileRenamings: filesPluralGroupSettingsActualForCurrentProjectBuildingMode__rawValid__fromFile.filesRenamings
4485
+ });
4486
+ const outputFileAbsolutePath = es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4487
+ outputDirectoryAbsolutePath,
4488
+ outputFileNameWithExtensions
4489
+ ], { alwaysForwardSlashSeparators: true });
4490
+ sourceAndOutputFilesAbsolutePathsCorrespondenceMapForCurrentGroup.set(sourceFileAbsolutePath, outputFileAbsolutePath);
4491
+ }
4492
+ (0, es_extensions_1.addMultiplePairsToMap)(PlainCopyingStore_1.default.sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap, sourceAndOutputFilesAbsolutePathsCorrespondenceMapForCurrentGroup);
4493
+ return {
4494
+ aliasName,
4495
+ sourceTopDirectoryAbsolutePath,
4496
+ outputTopDirectoryAbsolutePath,
4497
+ sourceAndOutputFilesAbsolutePathsCorrespondenceMap: sourceAndOutputFilesAbsolutePathsCorrespondenceMapForCurrentGroup
4498
+ };
4499
+ }
4500
+ static computeOutputFileNameWithExtensions({ initialFileNameWithExtensions, sourceTopDirectoryAbsolutePath, sourceFileAbsolutePath, revisioningSettings, fileRenamings = [] }) {
4501
+ let finalOutputFileNameWithExtensions = initialFileNameWithExtensions;
4502
+ for (const fileRenaming of fileRenamings) {
4503
+ if (fileRenaming.pathRelativeToSourceDirectory ===
4504
+ ((0, es_extensions_1.isUndefined)(sourceTopDirectoryAbsolutePath) ?
4505
+ sourceFileAbsolutePath :
4506
+ es_extensions_nodejs_1.ImprovedPath.computeRelativePath({
4507
+ basePath: sourceTopDirectoryAbsolutePath,
4508
+ comparedPath: sourceFileAbsolutePath,
4509
+ alwaysForwardSlashSeparators: true
4510
+ }))) {
4511
+ finalOutputFileNameWithExtensions = fileRenaming.newFileNameWithExtension;
4512
+ break;
4513
+ }
4514
+ }
4515
+ const mustAppendContentHashPostfixSeparator = revisioningSettings?.enable === true ||
4516
+ PlainCopyingSettings__Default_1.default.revisioning.mustExecute;
4517
+ if (mustAppendContentHashPostfixSeparator) {
4518
+ const fileContent = fs_1.default.readFileSync(sourceFileAbsolutePath, "utf-8");
4519
+ const fileNameWihtoutExtensions = (0, es_extensions_1.removeAllFileNameExtensions)(finalOutputFileNameWithExtensions);
4520
+ finalOutputFileNameWithExtensions = [
4521
+ fileNameWihtoutExtensions,
4522
+ revisioningSettings?.contentHashPostfixSeparator ?? PlainCopyingSettings__Default_1.default.revisioning.contentHashPostfixSeparator,
4523
+ (0, rev_hash_1.default)(fileContent),
4524
+ `.${(0, es_extensions_1.extractAllFileNameExtensions)({ targetPath: finalOutputFileNameWithExtensions, withLeadingDots: false }).join(".")}`
4525
+ ].join("");
4526
+ }
4527
+ return finalOutputFileNameWithExtensions;
4528
+ }
4390
4529
  }
4391
4530
  exports["default"] = PlainCopyingRawSettingsNormalizer;
4392
4531
 
@@ -4404,34 +4543,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4404
4543
  return (mod && mod.__esModule) ? mod : { "default": mod };
4405
4544
  };
4406
4545
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4546
+ /* ─── Shared state ───────────────────────────────────────────────────────────────────────────────────────────────── */
4547
+ const PlainCopyingStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/PlainCopying/PlainCopyingStore */ "./ProjectBuilding/PlainCopying/PlainCopyingStore.ts"));
4548
+ /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
4407
4549
  const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
4408
4550
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
4409
- const replaceLastURI_PathSegment_1 = __importDefault(__webpack_require__(/*! @UtilsIncubator/Strings/replaceLastURI_PathSegment */ "./UtilsIncubator/Strings/replaceLastURI_PathSegment.ts"));
4410
4551
  class PlainCopyingSettingsRepresentative {
4411
4552
  singularGroupsMappedByAliases = new Map();
4412
4553
  pluralGroupsMappedByAliases = new Map();
4413
4554
  filesGroups;
4414
- static computeRelevantOutputDirectoryAbsolutePathForTargetSourceFile(sourceFileAbsolutePath, actualFilesGroupSettings) {
4415
- if ("sourceFileAbsolutePath" in actualFilesGroupSettings) {
4416
- return actualFilesGroupSettings.outputTopDirectoryAbsolutePath;
4417
- }
4418
- return "sourceFileAbsolutePath" in actualFilesGroupSettings ?
4419
- actualFilesGroupSettings.outputTopDirectoryAbsolutePath :
4420
- es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4421
- actualFilesGroupSettings.outputTopDirectoryAbsolutePath,
4422
- es_extensions_nodejs_1.ImprovedPath.computeRelativePath({
4423
- basePath: actualFilesGroupSettings.sourceDirectoryAbsolutePath,
4424
- comparedPath: es_extensions_nodejs_1.ImprovedPath.extractDirectoryFromFilePath({
4425
- targetPath: sourceFileAbsolutePath,
4426
- ambiguitiesResolution: {
4427
- mustConsiderLastSegmentStartingWithDotAsDirectory: false,
4428
- mustConsiderLastSegmentWithNonLeadingDotAsDirectory: false,
4429
- mustConsiderLastSegmentWihtoutDotsAsFileNameWithoutExtension: false
4430
- }
4431
- })
4432
- })
4433
- ], { alwaysForwardSlashSeparators: true });
4434
- }
4435
4555
  constructor(plainCopyingSettings__normalized) {
4436
4556
  this.filesGroups = plainCopyingSettings__normalized.filesGroups;
4437
4557
  for (const filesGroup of Object.values(plainCopyingSettings__normalized.filesGroups)) {
@@ -4443,31 +4563,54 @@ class PlainCopyingSettingsRepresentative {
4443
4563
  }
4444
4564
  }
4445
4565
  }
4446
- //- TODO Не учитываются переименования. С использованием метода computeRelevantOutputDirectoryAbsolutePathForTargetSourceFile
4447
- // это не должно быть сложно
4448
- getAbsolutePathOfOutputFileOfSingularGroup(singularGroupAlias) {
4449
- return this.singularGroupsMappedByAliases.get(singularGroupAlias)?.outputFileAbsolutePath ?? null;
4450
- }
4451
- computeOutputAbsolutePathOfFileOfPluralGroup(pluralGroupAlias, pathRelativeToGroupTopDirectory) {
4452
- const targetFilesGroup = this.pluralGroupsMappedByAliases.get(pluralGroupAlias);
4453
- if ((0, es_extensions_1.isUndefined)(targetFilesGroup)) {
4566
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath) {
4567
+ if (segmentsOfPickedPath.length === 1) {
4568
+ const sourceFileAbsolutePath = this.singularGroupsMappedByAliases.
4569
+ get(segmentsOfPickedPath[0])?.sourceFileAbsolutePath;
4570
+ if ((0, es_extensions_1.isUndefined)(sourceFileAbsolutePath)) {
4571
+ return null;
4572
+ }
4573
+ return PlainCopyingStore_1.default.
4574
+ sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap.
4575
+ get(sourceFileAbsolutePath) ??
4576
+ null;
4577
+ }
4578
+ const sourceDirectoryAbsolutePath = this.pluralGroupsMappedByAliases.
4579
+ get(segmentsOfPickedPath[0])?.sourceTopDirectoryAbsolutePath;
4580
+ if ((0, es_extensions_1.isUndefined)(sourceDirectoryAbsolutePath)) {
4454
4581
  return null;
4455
4582
  }
4456
- const newFileNameWithExtension = targetFilesGroup.filesRenamings.get(pathRelativeToGroupTopDirectory);
4457
- return es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4458
- targetFilesGroup.outputTopDirectoryAbsolutePath,
4459
- (0, es_extensions_1.isUndefined)(newFileNameWithExtension) ?
4460
- pathRelativeToGroupTopDirectory :
4461
- (0, replaceLastURI_PathSegment_1.default)({
4462
- targetURI: pathRelativeToGroupTopDirectory,
4463
- newLastPathSegment: newFileNameWithExtension
4464
- })
4465
- ], { alwaysForwardSlashSeparators: true });
4583
+ return PlainCopyingStore_1.default.
4584
+ sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap.
4585
+ get(es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
4586
+ sourceDirectoryAbsolutePath,
4587
+ ...segmentsOfPickedPath.slice(1)
4588
+ ], { alwaysForwardSlashSeparators: true })) ??
4589
+ null;
4466
4590
  }
4467
4591
  }
4468
4592
  exports["default"] = PlainCopyingSettingsRepresentative;
4469
4593
 
4470
4594
 
4595
+ /***/ }),
4596
+
4597
+ /***/ "./ProjectBuilding/PlainCopying/PlainCopyingSettings__Default.ts":
4598
+ /*!***********************************************************************!*\
4599
+ !*** ./ProjectBuilding/PlainCopying/PlainCopyingSettings__Default.ts ***!
4600
+ \***********************************************************************/
4601
+ /***/ ((__unused_webpack_module, exports) => {
4602
+
4603
+
4604
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4605
+ const PlainCopyingSettings__Default = {
4606
+ revisioning: {
4607
+ mustExecute: false,
4608
+ contentHashPostfixSeparator: "--"
4609
+ }
4610
+ };
4611
+ exports["default"] = PlainCopyingSettings__Default;
4612
+
4613
+
4471
4614
  /***/ }),
4472
4615
 
4473
4616
  /***/ "./ProjectBuilding/PlainCopying/PlainCopyingSettings__FromFile__RawValid.ts":
@@ -4487,7 +4630,7 @@ const ConsumingProjectBuildingModes_1 = __importDefault(__webpack_require__(/*!
4487
4630
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
4488
4631
  var PlainCopyingSettings__FromFile__RawValid;
4489
4632
  (function (PlainCopyingSettings__FromFile__RawValid) {
4490
- function getLocalizedPropertiesSpecification({ plainCopyingLocalization, consumingProjectLocalizedPreDefinedBuildingModes }) {
4633
+ function getLocalizedPropertiesSpecification({ plainCopyingLocalization, consumingProjectLocalizedPreDefinedBuildingModes, outputDirectoryPathTransformationsPropertiesLocalizedSpecification }) {
4491
4634
  return {
4492
4635
  [plainCopyingLocalization.filesGroups.KEY]: {
4493
4636
  newName: "filesGroups",
@@ -4497,17 +4640,27 @@ var PlainCopyingSettings__FromFile__RawValid;
4497
4640
  value: {
4498
4641
  type: Object,
4499
4642
  properties: {
4643
+ /* ─── Common ─────────────────────────────────────────────────────────────────────────────────────────── */
4644
+ [plainCopyingLocalization.aliasName.KEY]: {
4645
+ newName: "aliasName",
4646
+ preValidationModifications: es_extensions_1.nullToUndefined,
4647
+ type: String,
4648
+ required: false
4649
+ },
4650
+ /* ─── Singular ───────────────────────────────────────────────────────────────────────────────────────── */
4500
4651
  [plainCopyingLocalization.sourceFileRelativePath.KEY]: {
4501
4652
  newName: "sourceFileRelativePath",
4502
4653
  type: String,
4503
4654
  required: false
4504
4655
  },
4505
- [plainCopyingLocalization.sourceDirectoryRelativePath.KEY]: {
4506
- newName: "sourceDirectoryRelativePath",
4656
+ /* ─── Plural ─────────────────────────────────────────────────────────────────────────────────────────── */
4657
+ [plainCopyingLocalization.sourceTopDirectoryRelativePath.KEY]: {
4658
+ newName: "sourceTopDirectoryRelativePath",
4507
4659
  type: String,
4508
4660
  requiredIf: {
4509
4661
  predicate: (filesGroup) => (0, es_extensions_1.isUndefined)(filesGroup[plainCopyingLocalization.sourceFileRelativePath.KEY]),
4510
- descriptionForLogging: plainCopyingLocalization.sourceDirectoryRelativePath.REQUIREMENT_CONDITION_DESCRIPTION
4662
+ descriptionForLogging: plainCopyingLocalization.sourceTopDirectoryRelativePath.
4663
+ REQUIREMENT_CONDITION_DESCRIPTION
4511
4664
  }
4512
4665
  },
4513
4666
  [plainCopyingLocalization.fileNameLastExtensions.KEY]: {
@@ -4519,12 +4672,6 @@ var PlainCopyingSettings__FromFile__RawValid;
4519
4672
  minimalCharactersCount: 1
4520
4673
  }
4521
4674
  },
4522
- [plainCopyingLocalization.aliasName.KEY]: {
4523
- newName: "aliasName",
4524
- preValidationModifications: es_extensions_1.nullToUndefined,
4525
- type: String,
4526
- required: false
4527
- },
4528
4675
  [plainCopyingLocalization.buildingModeDependent.KEY]: {
4529
4676
  newName: "buildingModeDependent",
4530
4677
  type: es_extensions_1.RawObjectDataProcessor.ValuesTypesIDs.associativeArrayOfUniformTypeValues,
@@ -4541,10 +4688,31 @@ var PlainCopyingSettings__FromFile__RawValid;
4541
4688
  value: {
4542
4689
  type: Object,
4543
4690
  properties: {
4544
- [plainCopyingLocalization.buildingModeDependent.outputTopDirectoryRelativePath.KEY]: {
4545
- newName: "outputTopDirectoryRelativePath",
4691
+ /* ─── Common ───────────────────────────────────────────────────────────────────────────────────── */
4692
+ [plainCopyingLocalization.buildingModeDependent.revisioning.KEY]: {
4693
+ newName: "revisioning",
4694
+ type: Object,
4695
+ required: false,
4696
+ preValidationModifications: es_extensions_1.nullToUndefined,
4697
+ properties: {
4698
+ [plainCopyingLocalization.buildingModeDependent.revisioning.enable.KEY]: {
4699
+ newName: "enable",
4700
+ type: Boolean,
4701
+ required: false
4702
+ },
4703
+ [plainCopyingLocalization.buildingModeDependent.revisioning.contentHashPostfixSeparator.KEY]: {
4704
+ newName: "contentHashPostfixSeparator",
4705
+ type: String,
4706
+ required: false,
4707
+ minimalCharactersCount: 1
4708
+ }
4709
+ }
4710
+ },
4711
+ /* ─── Singular ─────────────────────────────────────────────────────────────────────────────────── */
4712
+ [plainCopyingLocalization.buildingModeDependent.outputDirectoryRelativePath.KEY]: {
4713
+ newName: "outputDirectoryRelativePath",
4546
4714
  type: String,
4547
- required: true
4715
+ required: false
4548
4716
  },
4549
4717
  [plainCopyingLocalization.buildingModeDependent.newFileNameWithExtension.KEY]: {
4550
4718
  newName: "newFileNameWithExtension",
@@ -4552,6 +4720,12 @@ var PlainCopyingSettings__FromFile__RawValid;
4552
4720
  required: false,
4553
4721
  minimalCharactersCount: 1
4554
4722
  },
4723
+ /* ─── Plural ───────────────────────────────────────────────────────────────────────────────────── */
4724
+ [plainCopyingLocalization.buildingModeDependent.outputTopDirectoryRelativePath.KEY]: {
4725
+ newName: "outputTopDirectoryRelativePath",
4726
+ type: String,
4727
+ required: false
4728
+ },
4555
4729
  [plainCopyingLocalization.buildingModeDependent.filesRenamings.KEY]: {
4556
4730
  newName: "filesRenamings",
4557
4731
  type: Array,
@@ -4574,6 +4748,13 @@ var PlainCopyingSettings__FromFile__RawValid;
4574
4748
  }
4575
4749
  }
4576
4750
  }
4751
+ },
4752
+ [plainCopyingLocalization.buildingModeDependent.outputDirectoryPathTransformations.KEY]: {
4753
+ newName: "outputDirectoryPathTransformations",
4754
+ type: Object,
4755
+ required: false,
4756
+ preValidationModifications: es_extensions_1.nullToUndefined,
4757
+ properties: outputDirectoryPathTransformationsPropertiesLocalizedSpecification
4577
4758
  }
4578
4759
  }
4579
4760
  }
@@ -4588,6 +4769,22 @@ var PlainCopyingSettings__FromFile__RawValid;
4588
4769
  exports["default"] = PlainCopyingSettings__FromFile__RawValid;
4589
4770
 
4590
4771
 
4772
+ /***/ }),
4773
+
4774
+ /***/ "./ProjectBuilding/PlainCopying/PlainCopyingStore.ts":
4775
+ /*!***********************************************************!*\
4776
+ !*** ./ProjectBuilding/PlainCopying/PlainCopyingStore.ts ***!
4777
+ \***********************************************************/
4778
+ /***/ ((__unused_webpack_module, exports) => {
4779
+
4780
+
4781
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
4782
+ class PlainCopyingStore {
4783
+ static sourceFilesAbsolutePathsAndRespectiveFilesGroupSettingsCorrespondenceMap = new Map();
4784
+ }
4785
+ exports["default"] = PlainCopyingStore;
4786
+
4787
+
4591
4788
  /***/ }),
4592
4789
 
4593
4790
  /***/ "./ProjectBuilding/ProjectBuilderRawConfigNormalizer.ts":
@@ -4765,7 +4962,6 @@ class ProjectBuilderRawConfigNormalizer {
4765
4962
  return {
4766
4963
  plainCopying: PlainCopyingRawSettingsNormalizer_1.default.normalize({
4767
4964
  plainCopyingSettings__fromFile__rawValid: plainCopyingSettings__rawValid__fromFile,
4768
- preMadeCSS: projectBuildingConfig__fromFile__rawValid[ProjectBuildingTasksIDsForConfigFile_1.ProjectBuildingTasksIDsForConfigFile.stylesProcessing]?.preMadeCSS,
4769
4965
  commonSettings__normalized
4770
4966
  })
4771
4967
  };
@@ -4919,6 +5115,13 @@ const ProjectBuildingConfigFromFileDefaultLocalization = {
4919
5115
  lintingCommonSettings: {
4920
5116
  presetFileRelativePath: { KEY: "presetFileRelativePath" },
4921
5117
  disable: { KEY: "enabled" }
5118
+ },
5119
+ outputPathTransformationsSettings: {
5120
+ segmentsWhichMustBeRemoved: { KEY: "segmentsWhichMustBeRemoved" },
5121
+ segmentsWhichLastDuplicatesMustBeRemoved: { KEY: "segmentsWhichLastDuplicatesMustBeRemoved" },
5122
+ segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved: {
5123
+ KEY: "segmentsCountRelativeToGroupTopDirectoryWhichMustBeRemoved"
5124
+ }
4922
5125
  }
4923
5126
  },
4924
5127
  commonSettings: {
@@ -5036,25 +5239,6 @@ const ProjectBuildingConfigFromFileDefaultLocalization = {
5036
5239
  revisioning: { KEY: "revisioning" }
5037
5240
  }
5038
5241
  },
5039
- preMadeCSS: {
5040
- KEY: "preMadeCSS",
5041
- sourceFileRelativePath: { KEY: "sourceFileRelativePath" },
5042
- sourceDirectoryRelativePath: {
5043
- KEY: "sourceDirectoryRelativePath",
5044
- REQUIREMENT_CONDITION_DESCRIPTION: "\"sourceFileRelativePath\" is not specified"
5045
- },
5046
- aliasName: { KEY: "aliasName" },
5047
- buildingModeDependent: {
5048
- KEY: "buildingModeDependent",
5049
- outputTopDirectoryRelativePath: { KEY: "outputTopDirectoryRelativePath" },
5050
- newFileNameWithExtension: { KEY: "newFileNameWithExtension" },
5051
- filesRenamings: {
5052
- KEY: "filesRenamings",
5053
- pathRelativeToSourceDirectory: { KEY: "pathRelativeToSourceDirectory" },
5054
- newFileNameWithExtension: { KEY: "newFileNameWithExtension" }
5055
- }
5056
- }
5057
- },
5058
5242
  logging: {
5059
5243
  KEY: "logging",
5060
5244
  filesPaths: { KEY: "filesPaths" },
@@ -5255,21 +5439,28 @@ const ProjectBuildingConfigFromFileDefaultLocalization = {
5255
5439
  plainCopying: {
5256
5440
  filesGroups: { KEY: "filesGroups" },
5257
5441
  sourceFileRelativePath: { KEY: "sourceFileRelativePath" },
5258
- sourceDirectoryRelativePath: {
5259
- KEY: "sourceDirectoryRelativePath",
5442
+ sourceTopDirectoryRelativePath: {
5443
+ KEY: "sourceTopDirectoryRelativePath",
5260
5444
  REQUIREMENT_CONDITION_DESCRIPTION: "\"sourceFileRelativePath\" is not specified"
5261
5445
  },
5262
5446
  fileNameLastExtensions: { KEY: "fileNameLastExtensions" },
5263
5447
  aliasName: { KEY: "aliasName" },
5264
5448
  buildingModeDependent: {
5265
5449
  KEY: "buildingModeDependent",
5450
+ outputDirectoryRelativePath: { KEY: "outputDirectoryRelativePath" },
5266
5451
  outputTopDirectoryRelativePath: { KEY: "outputTopDirectoryRelativePath" },
5452
+ revisioning: {
5453
+ KEY: "revisioning",
5454
+ enable: { KEY: "enable" },
5455
+ contentHashPostfixSeparator: { KEY: "contentHashPostfixSeparator" }
5456
+ },
5267
5457
  newFileNameWithExtension: { KEY: "newFileNameWithExtension" },
5268
5458
  filesRenamings: {
5269
5459
  KEY: "filesRenamings",
5270
5460
  pathRelativeToSourceDirectory: { KEY: "pathRelativeToSourceDirectory" },
5271
5461
  newFileNameWithExtension: { KEY: "newFileNameWithExtension" }
5272
- }
5462
+ },
5463
+ outputDirectoryPathTransformations: { KEY: "outputDirectoryPathTransformations" }
5273
5464
  }
5274
5465
  },
5275
5466
  browserLiveReloading: {
@@ -5322,6 +5513,7 @@ const ProjectBuildingCommonSettings__FromFile__RawValid_1 = __importDefault(__we
5322
5513
  const ResourceFilesGroupBuildingModeDependentOutputGenericSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/RawConfig/Reusables/ResourceFilesGroupBuildingModeDependentOutputGenericSettings__FromFile__RawValid */ "./ProjectBuilding/Common/RawConfig/Reusables/ResourceFilesGroupBuildingModeDependentOutputGenericSettings__FromFile__RawValid.ts"));
5323
5514
  const RevisioningSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/RawConfig/Reusables/RevisioningSettings__FromFile__RawValid */ "./ProjectBuilding/Common/RawConfig/Reusables/RevisioningSettings__FromFile__RawValid.ts"));
5324
5515
  const LintingSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/RawConfig/Reusables/LintingSettings__FromFile__RawValid */ "./ProjectBuilding/Common/RawConfig/Reusables/LintingSettings__FromFile__RawValid.ts"));
5516
+ const OutputDirectoryPathTransformationsSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/RawConfig/Reusables/OutputDirectoryPathTransformationsSettings__FromFile__RawValid */ "./ProjectBuilding/Common/RawConfig/Reusables/OutputDirectoryPathTransformationsSettings__FromFile__RawValid.ts"));
5325
5517
  const MarkupProcessingSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @MarkupProcessing/MarkupProcessingSettings__FromFile__RawValid */ "./ProjectBuilding/SourceCodeProcessing/Markup/MarkupProcessingSettings__FromFile__RawValid.ts"));
5326
5518
  const StylesProcessingSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @StylesProcessing/StylesProcessingSettings__FromFile__RawValid */ "./ProjectBuilding/SourceCodeProcessing/Styles/StylesProcessingSettings__FromFile__RawValid.ts"));
5327
5519
  const ECMA_ScriptLogicProcessingSettings__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ECMA_ScriptProcessing/ECMA_ScriptLogicProcessingSettings__FromFile__RawValid */ "./ProjectBuilding/SourceCodeProcessing/ECMA_Script/ECMA_ScriptLogicProcessingSettings__FromFile__RawValid.ts"));
@@ -5343,6 +5535,7 @@ var ProjectBuildingConfig__FromFile__RawValid;
5343
5535
  const revisioningPropertiesLocalizedSpecification = RevisioningSettings__FromFile__RawValid_1.default.getLocalizedPropertiesSpecification(localization.reusables.revisioning);
5344
5536
  const lintingCommonSettingsLocalizedPropertiesSpecification = LintingSettings__FromFile__RawValid_1.default.
5345
5537
  getLocalizedPropertiesSpecification(localization.reusables.lintingCommonSettings);
5538
+ const outputDirectoryPathTransformationsPropertiesLocalizedSpecification = OutputDirectoryPathTransformationsSettings__FromFile__RawValid_1.default.getLocalizedPropertiesSpecification(localization.reusables.outputPathTransformationsSettings);
5346
5539
  return {
5347
5540
  nameForLogging: "ProjectBuildingConfig__FromFile__RawValid",
5348
5541
  subtype: es_extensions_1.RawObjectDataProcessor.ObjectSubtypes.fixedKeyAndValuePairsObject,
@@ -5458,7 +5651,8 @@ var ProjectBuildingConfig__FromFile__RawValid;
5458
5651
  preValidationModifications: es_extensions_1.nullToUndefined,
5459
5652
  properties: PlainCopyingSettings__FromFile__RawValid_1.default.getLocalizedPropertiesSpecification({
5460
5653
  plainCopyingLocalization: localization.tasks.plainCopying,
5461
- consumingProjectLocalizedPreDefinedBuildingModes
5654
+ consumingProjectLocalizedPreDefinedBuildingModes,
5655
+ outputDirectoryPathTransformationsPropertiesLocalizedSpecification
5462
5656
  })
5463
5657
  },
5464
5658
  [localization.enumerations.tasksIDs.browserLiveReloading]: {
@@ -6072,6 +6266,7 @@ var ECMA_ScriptLogicProcessingSettings__FromFile__RawValid;
6072
6266
  newName: "revisioning",
6073
6267
  type: Object,
6074
6268
  required: false,
6269
+ preValidationModifications: es_extensions_1.nullToUndefined,
6075
6270
  properties: revisioningSettingsLocalizedPropertiesSpecification
6076
6271
  },
6077
6272
  [ECMA_ScriptProcessingPropertiesLocalization.entryPointsGroups.buildingModeDependent.
@@ -6168,12 +6363,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
6168
6363
  };
6169
6364
  Object.defineProperty(exports, "__esModule", ({ value: true }));
6170
6365
  const ECMA_ScriptLogicProcessingStore_1 = __importDefault(__webpack_require__(/*! @ECMA_ScriptProcessing/ECMA_ScriptLogicProcessingStore */ "./ProjectBuilding/SourceCodeProcessing/ECMA_Script/ECMA_ScriptLogicProcessingStore.ts"));
6171
- /* --- Applied utils ------------------------------------------------------------------------------------------------- */
6366
+ /* ─── Shared state ───────────────────────────────────────────────────────────────────────────────────────────────── */
6367
+ const CommonStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/CommonStore */ "./ProjectBuilding/Common/CommonStore.ts"));
6368
+ /* ─── Applied utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
6369
+ const webpack_1 = __importDefault(__webpack_require__(/*! webpack */ "webpack"));
6172
6370
  const WebpackConfigGenerator_1 = __importDefault(__webpack_require__(/*! @ECMA_ScriptProcessing/Utils/WebpackConfigGenerator */ "./ProjectBuilding/SourceCodeProcessing/ECMA_Script/Utils/WebpackConfigGenerator.ts"));
6173
6371
  const ECMA_ScriptLogicEntryPointsSourceFilesAbsolutePathsAndOutputFilesActualPathsMapGenerator_1 = __importDefault(__webpack_require__(/*! @ECMA_ScriptProcessing/Utils/ECMA_ScriptLogicEntryPointsSourceFilesAbsolutePathsAndOutputFilesActualPathsMapGenerator */ "./ProjectBuilding/SourceCodeProcessing/ECMA_Script/Utils/ECMA_ScriptLogicEntryPointsSourceFilesAbsolutePathsAndOutputFilesActualPathsMapGenerator.ts"));
6174
- const webpack_1 = __importDefault(__webpack_require__(/*! webpack */ "webpack"));
6372
+ const ECMA_ScriptSourceFilesWatcher_1 = __importDefault(__webpack_require__(/*! @ECMA_ScriptProcessing/ECMA_ScriptSourceFilesWatcher */ "./ProjectBuilding/SourceCodeProcessing/ECMA_Script/ECMA_ScriptSourceFilesWatcher.ts"));
6175
6373
  const node_notifier_1 = __importDefault(__webpack_require__(/*! node-notifier */ "node-notifier"));
6176
- /* --- General Utils ------------------------------------------------------------------------------------------------ */
6374
+ /* ─── General utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
6177
6375
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
6178
6376
  class ECMA_ScriptLogicProcessor {
6179
6377
  TASK_NAME_FOR_LOGGING = "ECMAScript logic processing";
@@ -6214,6 +6412,19 @@ class ECMA_ScriptLogicProcessor {
6214
6412
  message: "Error has occurred. Please check the console."
6215
6413
  });
6216
6414
  }
6415
+ if (dataHoldingSelfInstance.masterConfigRepresentative.mustProvideIncrementalBuilding) {
6416
+ CommonStore_1.default.
6417
+ onInitialBuildDoneEventHandlers.
6418
+ set("BY_ECMA_SCRIPT_LOGIC_PROCESSOR", () => {
6419
+ ECMA_ScriptSourceFilesWatcher_1.default.
6420
+ initializeIfRequiredAndGetInstance({
6421
+ ecmaScriptLogicProcessingSettingsRepresentative: dataHoldingSelfInstance.
6422
+ ECMA_ScriptLogicProcessingConfigRepresentative,
6423
+ projectBuildingMasterConfigRepresentative: dataHoldingSelfInstance.masterConfigRepresentative
6424
+ }).
6425
+ startWatching();
6426
+ });
6427
+ }
6217
6428
  /** 〔 納品版のみ理由 〕 開発版で同じ事をすれば、gulpが落ちる */
6218
6429
  if (!dataHoldingSelfInstance.masterConfigRepresentative.mustProvideIncrementalBuilding &&
6219
6430
  (0, es_extensions_1.isNotUndefined)(finalErrorMessageDynamicPart)) {
@@ -6288,7 +6499,6 @@ class ECMA_ScriptSourceFilesWatcher extends CodeSourceFilesWatcher_1.default {
6288
6499
  });
6289
6500
  this.ecmaScriptLogicProcessingSettingsRepresentative = ecmaScriptLogicProcessingSettingsRepresentative;
6290
6501
  this.mustLogSourceFilesWatcherEvents = this.ecmaScriptLogicProcessingSettingsRepresentative.mustLogSourceFilesWatcherEvents;
6291
- this.initializeGulpWatcher();
6292
6502
  }
6293
6503
  isFileAbsolutePathRefersToEntryPoint(targetFileAbsolutePath) {
6294
6504
  return this.ecmaScriptLogicProcessingSettingsRepresentative.isEntryPoint(targetFileAbsolutePath);
@@ -7774,7 +7984,8 @@ const MarkupProcessingSettingsRepresentative_1 = __importDefault(__webpack_requi
7774
7984
  const MarkupSourceFilesWatcher_1 = __importDefault(__webpack_require__(/*! @MarkupProcessing/MarkupSourceFilesWatcher */ "./ProjectBuilding/SourceCodeProcessing/Markup/MarkupSourceFilesWatcher.ts"));
7775
7985
  /* ─── Superclass ─────────────────────────────────────────────────────────────────────────────────────────────────── */
7776
7986
  const GulpStreamsBasedTaskExecutor_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/TasksExecutors/GulpStreamsBased/GulpStreamsBasedTaskExecutor */ "./ProjectBuilding/Common/TasksExecutors/GulpStreamsBased/GulpStreamsBasedTaskExecutor.ts"));
7777
- /* ─── State management ───────────────────────────────────────────────────────────────────────────────────────────── */
7987
+ /* ─── Shared state ───────────────────────────────────────────────────────────────────────────────────────────────── */
7988
+ const CommonStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/CommonStore */ "./ProjectBuilding/Common/CommonStore.ts"));
7778
7989
  const MarkupProcessingStore_1 = __importDefault(__webpack_require__(/*! @MarkupProcessing/MarkupProcessingStore */ "./ProjectBuilding/SourceCodeProcessing/Markup/MarkupProcessingStore.ts"));
7779
7990
  /* ─── Gulp & plugins ─────────────────────────────────────────────────────────────────────────────────────────────── */
7780
7991
  const gulp_1 = __importDefault(__webpack_require__(/*! gulp */ "gulp"));
@@ -7866,7 +8077,7 @@ class MarkupProcessor extends GulpStreamsBasedTaskExecutor_1.default {
7866
8077
  MarkupProcessor.ENTRY_POINTS_AND_PARTIAL_FILES_MAPPING_CACHE_FILE_NAME_WITH_EXTENSION
7867
8078
  ])
7868
8079
  });
7869
- MarkupSourceFilesWatcher_1.default.
8080
+ const markupSourceFilesWatcher = MarkupSourceFilesWatcher_1.default.
7870
8081
  initializeIfRequiredAndGetInstance({
7871
8082
  markupProcessingSettingsRepresentative,
7872
8083
  projectBuildingMasterConfigRepresentative
@@ -7883,6 +8094,9 @@ class MarkupProcessor extends GulpStreamsBasedTaskExecutor_1.default {
7883
8094
  handlerID: "ON_MARKUP_ENTRY_POINT_FILE_DELETED--BY_MARKUP_PROCESSOR",
7884
8095
  handler: MarkupProcessor.onEntryPointFileDeleted
7885
8096
  });
8097
+ CommonStore_1.default.
8098
+ onInitialBuildDoneEventHandlers.
8099
+ set("BY_MARKUP_PROCESSOR", () => { markupSourceFilesWatcher.startWatching(); });
7886
8100
  }
7887
8101
  return dataHoldingSelfInstance.processEntryPoints(markupProcessingSettingsRepresentative.relevantEntryPointsSourceFilesAbsolutePaths);
7888
8102
  }
@@ -8243,7 +8457,6 @@ class MarkupSourceFilesWatcher extends CodeSourceFilesWatcher_1.default {
8243
8457
  });
8244
8458
  this.markupProcessingSettingsRepresentative = markupProcessingSettingsRepresentative;
8245
8459
  this.mustLogSourceFilesWatcherEvents = this.markupProcessingSettingsRepresentative.mustLogSourceFilesWatcherEvents;
8246
- this.initializeGulpWatcher();
8247
8460
  }
8248
8461
  isFileAbsolutePathRefersToEntryPoint(targetFileAbsolutePath) {
8249
8462
  return this.markupProcessingSettingsRepresentative.isEntryPoint(targetFileAbsolutePath);
@@ -9843,24 +10056,24 @@ const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "
9843
10056
  const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
9844
10057
  class ResourcesReferencesResolverForHTML {
9845
10058
  static localization = ResourcesReferencesResolverForHTML_english_1.default;
10059
+ static aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap = new Map();
10060
+ static markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
10061
+ static aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap = new Map();
10062
+ static stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
10063
+ static aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap = new Map();
10064
+ static scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
10065
+ static aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap = new Map();
10066
+ static imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
10067
+ static aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap = new Map();
10068
+ static videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
10069
+ static aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap = new Map();
10070
+ static audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = new Map();
9846
10071
  rootHTML_Element;
9847
10072
  projectBuildingMasterConfigRepresentative;
9848
10073
  markupProcessingSettingsRepresentative;
9849
10074
  contextHTML_FileOutputDirectoryAbsolutePath;
9850
10075
  publicDirectoryAbsolutePath;
9851
10076
  plainCopyingSettingsRepresentative;
9852
- aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap = new Map();
9853
- markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9854
- aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap = new Map();
9855
- stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9856
- aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap = new Map();
9857
- scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9858
- aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap = new Map();
9859
- imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9860
- aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap = new Map();
9861
- videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9862
- aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap = new Map();
9863
- audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap;
9864
10077
  static resolve(sourceData) {
9865
10078
  return new ResourcesReferencesResolverForHTML(sourceData).
9866
10079
  resolveInternalLinks().
@@ -9880,85 +10093,117 @@ class ResourcesReferencesResolverForHTML {
9880
10093
  this.publicDirectoryAbsolutePath = this.projectBuildingMasterConfigRepresentative.actualPublicDirectoryAbsolutePath;
9881
10094
  }
9882
10095
  this.plainCopyingSettingsRepresentative = projectBuildingMasterConfigRepresentative.plainCopyingSettingsRepresentative;
9883
- this.markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(this.markupProcessingSettingsRepresentative.entryPointsGroupsNormalizedSettingsMappedByReferences, (pathAlias, markupEntryPointsGroupNormalizedSettings) => [
9884
- pathAlias,
9885
- markupEntryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
9886
- markupEntryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
9887
- markupEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
9888
- ]);
9889
- this.stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.stylesProcessingSettingsRepresentative?.
9890
- entryPointsGroupsNormalizedSettingsMappedByReferences ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [
9891
- pathAlias,
9892
- stylesEntryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
9893
- stylesEntryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
9894
- stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
9895
- ]);
9896
- this.scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.ECMA_ScriptLogicProcessingSettingsRepresentative?.
9897
- entryPointsGroupsNormalizedSettingsMappedByReferences ?? new Map(), (pathAlias, entryPointsGroupNormalizedSettings) => [
9898
- pathAlias,
9899
- entryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
9900
- entryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
9901
- entryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
9902
- ]);
9903
- this.imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.imagesProcessingSettingsRepresentative?.
9904
- relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
9905
- this.videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.fontsProcessingSettingsRepresentative?.
9906
- relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
9907
- this.audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap = (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.audiosProcessingSettingsRepresentative?.
9908
- relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
10096
+ if (ResourcesReferencesResolverForHTML.markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10097
+ ResourcesReferencesResolverForHTML.markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10098
+ (0, es_extensions_1.createMapBasedOnOtherMap)(this.markupProcessingSettingsRepresentative.entryPointsGroupsNormalizedSettingsMappedByReferences, (pathAlias, markupEntryPointsGroupNormalizedSettings) => [
10099
+ pathAlias,
10100
+ markupEntryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
10101
+ markupEntryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
10102
+ markupEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
10103
+ ]);
10104
+ }
10105
+ if (ResourcesReferencesResolverForHTML.stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10106
+ ResourcesReferencesResolverForHTML.stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10107
+ (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.stylesProcessingSettingsRepresentative?.
10108
+ entryPointsGroupsNormalizedSettingsMappedByReferences ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [
10109
+ pathAlias,
10110
+ stylesEntryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
10111
+ stylesEntryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
10112
+ stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
10113
+ ]);
10114
+ }
10115
+ if (ResourcesReferencesResolverForHTML.scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10116
+ ResourcesReferencesResolverForHTML.scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10117
+ (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.ECMA_ScriptLogicProcessingSettingsRepresentative?.
10118
+ entryPointsGroupsNormalizedSettingsMappedByReferences ?? new Map(), (pathAlias, entryPointsGroupNormalizedSettings) => [
10119
+ pathAlias,
10120
+ entryPointsGroupNormalizedSettings.isSingeEntryPointGroup ?
10121
+ entryPointsGroupNormalizedSettings.sourceFilesGlobSelectors[0] :
10122
+ entryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath
10123
+ ]);
10124
+ }
10125
+ if (ResourcesReferencesResolverForHTML.imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10126
+ ResourcesReferencesResolverForHTML.imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10127
+ (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.imagesProcessingSettingsRepresentative?.
10128
+ relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
10129
+ }
10130
+ if (ResourcesReferencesResolverForHTML.videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10131
+ ResourcesReferencesResolverForHTML.videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10132
+ (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.fontsProcessingSettingsRepresentative?.
10133
+ relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
10134
+ }
10135
+ if (ResourcesReferencesResolverForHTML.audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap.size === 0) {
10136
+ ResourcesReferencesResolverForHTML.audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap =
10137
+ (0, es_extensions_1.createMapBasedOnOtherMap)(projectBuildingMasterConfigRepresentative.audiosProcessingSettingsRepresentative?.
10138
+ relevantAssetsGroupsSettingsMappedBySourceFilesTopDirectoryAliasName ?? new Map(), (pathAlias, stylesEntryPointsGroupNormalizedSettings) => [pathAlias, stylesEntryPointsGroupNormalizedSettings.sourceFilesTopDirectoryAbsolutePath]);
10139
+ }
9909
10140
  }
9910
10141
  /* ━━━ By files type ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
9911
10142
  /* ─── HTML Files ──────────────────────────────────────────────────────────────────────────────────────────────── */
9912
10143
  resolveInternalLinks() {
9913
10144
  for (const anchorElement of this.rootHTML_Element.querySelectorAll("a")) {
9914
- const hrefAttributeValue = anchorElement.getAttribute("href");
9915
- if (!(0, es_extensions_1.isNonEmptyString)(hrefAttributeValue)) {
9916
- continue;
9917
- }
9918
- let resolvedAbsolutePath = this.aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.
9919
- get(hrefAttributeValue) ?? null;
9920
- if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
9921
- anchorElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
9922
- continue;
9923
- }
9924
- const segmentsOfPickedPath = es_extensions_nodejs_1.ImprovedPath.explodePathToSegments(hrefAttributeValue);
9925
- const firstSegmentOfPickedPath = segmentsOfPickedPath[0];
9926
- if (!(0, es_extensions_1.isNonEmptyString)(firstSegmentOfPickedPath)) {
9927
- continue;
9928
- }
9929
- if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
9930
- firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
9931
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
9932
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
9933
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
9934
- if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
9935
- continue;
9936
- }
9937
- this.aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.set(hrefAttributeValue, resolvedAbsolutePath);
9938
- anchorElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
9939
- continue;
9940
- }
9941
- resolvedAbsolutePath =
9942
- this.aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap.get(hrefAttributeValue) ??
9943
- this.resolveOutputResourceFileAbsolutePathIfPossible({
9944
- pickedPathOfTargetResourceFile: hrefAttributeValue,
9945
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
9946
- supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: this.markupProcessingSettingsRepresentative.
9947
- supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots,
9948
- sourceAndOutputFilesAbsolutePathsCorrespondenceMap: MarkupProcessingStore_1.default.
9949
- entryPointsSourceAndOutputFilesAbsolutePathsCorrespondenceMap,
9950
- fileTypeForLogging__singularForm: this.markupProcessingSettingsRepresentative.
9951
- TARGET_FILES_KIND_FOR_LOGGING__SINGULAR_FORM,
9952
- fileTypeForLogging__pluralForm: this.markupProcessingSettingsRepresentative.
9953
- TARGET_FILES_KIND_FOR_LOGGING__PLURAL_FORM
9954
- });
10145
+ this.resolveInternalLink({
10146
+ targetHTML_Element: anchorElement,
10147
+ targetHTML_ElementAttributeName: "href"
10148
+ });
10149
+ }
10150
+ for (const iFrameElement of this.rootHTML_Element.querySelectorAll("iframe")) {
10151
+ this.resolveInternalLink({
10152
+ targetHTML_Element: iFrameElement,
10153
+ targetHTML_ElementAttributeName: "src"
10154
+ });
10155
+ }
10156
+ return this;
10157
+ }
10158
+ resolveInternalLink({ targetHTML_Element, targetHTML_ElementAttributeName }) {
10159
+ const attributeValueContainingAliasedURI = targetHTML_Element.
10160
+ getAttribute(targetHTML_ElementAttributeName);
10161
+ if (!(0, es_extensions_1.isNonEmptyString)(attributeValueContainingAliasedURI)) {
10162
+ return;
10163
+ }
10164
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10165
+ aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap.
10166
+ get(attributeValueContainingAliasedURI) ??
10167
+ null;
10168
+ if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10169
+ targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, this.buildResourceFileFinalPath(resolvedAbsolutePath));
10170
+ return;
10171
+ }
10172
+ const segmentsOfPickedPath = es_extensions_nodejs_1.ImprovedPath.explodePathToSegments(attributeValueContainingAliasedURI);
10173
+ const firstSegmentOfPickedPath = segmentsOfPickedPath[0];
10174
+ if (!(0, es_extensions_1.isNonEmptyString)(firstSegmentOfPickedPath)) {
10175
+ return;
10176
+ }
10177
+ if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10178
+ firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10179
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10180
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
9955
10181
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
9956
- continue;
10182
+ return;
9957
10183
  }
9958
- this.aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap.set(hrefAttributeValue, resolvedAbsolutePath);
9959
- anchorElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10184
+ ResourcesReferencesResolverForHTML.aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap.
10185
+ set(attributeValueContainingAliasedURI, resolvedAbsolutePath);
10186
+ targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, this.buildResourceFileFinalPath(resolvedAbsolutePath));
10187
+ return;
9960
10188
  }
9961
- return this;
10189
+ resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10190
+ pickedPathOfTargetResourceFile: attributeValueContainingAliasedURI,
10191
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.markupSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10192
+ supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: this.markupProcessingSettingsRepresentative.
10193
+ supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots,
10194
+ sourceAndOutputFilesAbsolutePathsCorrespondenceMap: MarkupProcessingStore_1.default.
10195
+ entryPointsSourceAndOutputFilesAbsolutePathsCorrespondenceMap,
10196
+ fileTypeForLogging__singularForm: this.markupProcessingSettingsRepresentative.
10197
+ TARGET_FILES_KIND_FOR_LOGGING__SINGULAR_FORM,
10198
+ fileTypeForLogging__pluralForm: this.markupProcessingSettingsRepresentative.
10199
+ TARGET_FILES_KIND_FOR_LOGGING__PLURAL_FORM
10200
+ });
10201
+ if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10202
+ return;
10203
+ }
10204
+ ResourcesReferencesResolverForHTML.aliasedURIsAndOutputMarkupFilesAbsolutePathsCorrespondenceMap.
10205
+ set(attributeValueContainingAliasedURI, resolvedAbsolutePath);
10206
+ targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, this.buildResourceFileFinalPath(resolvedAbsolutePath));
9962
10207
  }
9963
10208
  /* ─── Stylesheets ──────────────────────────────────────────────────────────────────────────────────────────────── */
9964
10209
  resolveStylesheetsAliasedPaths() {
@@ -9971,8 +10216,10 @@ class ResourcesReferencesResolverForHTML {
9971
10216
  if (!(0, es_extensions_1.isNonEmptyString)(hrefAttributeValue)) {
9972
10217
  continue;
9973
10218
  }
9974
- let resolvedAbsolutePath = this.aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.
9975
- get(hrefAttributeValue) ?? null;
10219
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10220
+ aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.
10221
+ get(hrefAttributeValue) ??
10222
+ null;
9976
10223
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
9977
10224
  linkElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
9978
10225
  continue;
@@ -9984,13 +10231,14 @@ class ResourcesReferencesResolverForHTML {
9984
10231
  }
9985
10232
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
9986
10233
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
9987
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
9988
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
9989
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10234
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10235
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
9990
10236
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
9991
10237
  continue;
9992
10238
  }
9993
- this.aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.set(hrefAttributeValue, resolvedAbsolutePath);
10239
+ ResourcesReferencesResolverForHTML.
10240
+ aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.
10241
+ set(hrefAttributeValue, resolvedAbsolutePath);
9994
10242
  linkElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
9995
10243
  continue;
9996
10244
  }
@@ -9999,7 +10247,7 @@ class ResourcesReferencesResolverForHTML {
9999
10247
  }
10000
10248
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10001
10249
  pickedPathOfTargetResourceFile: hrefAttributeValue,
10002
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10250
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.stylesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10003
10251
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: stylesProcessingSettingsRepresentative.
10004
10252
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots,
10005
10253
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: StylesProcessingStore_1.default.
@@ -10010,7 +10258,9 @@ class ResourcesReferencesResolverForHTML {
10010
10258
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10011
10259
  continue;
10012
10260
  }
10013
- this.aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.set(hrefAttributeValue, resolvedAbsolutePath);
10261
+ ResourcesReferencesResolverForHTML.
10262
+ aliasedURIsAndOutputStylesFilesAbsolutePathsCorrespondenceMap.
10263
+ set(hrefAttributeValue, resolvedAbsolutePath);
10014
10264
  linkElement.setAttribute("href", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10015
10265
  }
10016
10266
  return this;
@@ -10026,8 +10276,10 @@ class ResourcesReferencesResolverForHTML {
10026
10276
  if (!(0, es_extensions_1.isNonEmptyString)(srcAttributeValue)) {
10027
10277
  continue;
10028
10278
  }
10029
- let resolvedAbsolutePath = this.aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.
10030
- get(srcAttributeValue) ?? null;
10279
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10280
+ aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.
10281
+ get(srcAttributeValue) ??
10282
+ null;
10031
10283
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10032
10284
  scriptElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10033
10285
  continue;
@@ -10039,13 +10291,14 @@ class ResourcesReferencesResolverForHTML {
10039
10291
  }
10040
10292
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10041
10293
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10042
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
10043
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
10044
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10294
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10295
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
10045
10296
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10046
10297
  continue;
10047
10298
  }
10048
- this.aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10299
+ ResourcesReferencesResolverForHTML.
10300
+ aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.
10301
+ set(srcAttributeValue, resolvedAbsolutePath);
10049
10302
  scriptElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10050
10303
  continue;
10051
10304
  }
@@ -10054,7 +10307,7 @@ class ResourcesReferencesResolverForHTML {
10054
10307
  }
10055
10308
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10056
10309
  pickedPathOfTargetResourceFile: srcAttributeValue,
10057
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.
10310
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.
10058
10311
  scriptsSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10059
10312
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: ECMA_ScriptLogicProcessingConfigRepresentative.supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots,
10060
10313
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: ECMA_ScriptLogicProcessingStore_1.default.sourceFilesAbsolutePathsAndOutputFilesActualPathsMap,
@@ -10066,7 +10319,9 @@ class ResourcesReferencesResolverForHTML {
10066
10319
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10067
10320
  continue;
10068
10321
  }
10069
- this.aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10322
+ ResourcesReferencesResolverForHTML.
10323
+ aliasedURIsAndOutputScriptsFilesAbsolutePathsCorrespondenceMap.
10324
+ set(srcAttributeValue, resolvedAbsolutePath);
10070
10325
  scriptElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10071
10326
  }
10072
10327
  return this;
@@ -10102,8 +10357,10 @@ class ResourcesReferencesResolverForHTML {
10102
10357
  regularExpressionWithCapturingGroups: /url\(["']?(?<possiblyAliasedPath>.+?)["']?\)/gu,
10103
10358
  replacer: (matching) => {
10104
10359
  const possiblyAliasedPath = matching.namedCapturingGroups.possiblyAliasedPath;
10105
- let resolvedAbsolutePath = this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10106
- get(possiblyAliasedPath) ?? null;
10360
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10361
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10362
+ get(possiblyAliasedPath) ??
10363
+ null;
10107
10364
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10108
10365
  return `url("${this.buildResourceFileFinalPath(resolvedAbsolutePath)}")`;
10109
10366
  }
@@ -10114,13 +10371,14 @@ class ResourcesReferencesResolverForHTML {
10114
10371
  }
10115
10372
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10116
10373
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10117
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
10118
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
10119
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10374
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10375
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
10120
10376
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10121
10377
  return null;
10122
10378
  }
10123
- this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.set(possiblyAliasedPath, resolvedAbsolutePath);
10379
+ ResourcesReferencesResolverForHTML.
10380
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10381
+ set(possiblyAliasedPath, resolvedAbsolutePath);
10124
10382
  return `url("${this.buildResourceFileFinalPath(resolvedAbsolutePath)}")`;
10125
10383
  }
10126
10384
  if ((0, es_extensions_1.isUndefined)(imagesProcessingSettingsRepresentative)) {
@@ -10128,7 +10386,7 @@ class ResourcesReferencesResolverForHTML {
10128
10386
  }
10129
10387
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10130
10388
  pickedPathOfTargetResourceFile: possiblyAliasedPath,
10131
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.
10389
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.
10132
10390
  imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10133
10391
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: imagesProcessingSettingsRepresentative.supportedSourceFilesNamesExtensionsWithoutLeadingDots,
10134
10392
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: ImagesProcessingStore_1.default.sourceFilesAbsolutePathsAndOutputFilesActualPathsMap,
@@ -10138,7 +10396,9 @@ class ResourcesReferencesResolverForHTML {
10138
10396
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10139
10397
  return null;
10140
10398
  }
10141
- this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.set(possiblyAliasedPath, resolvedAbsolutePath);
10399
+ ResourcesReferencesResolverForHTML.
10400
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10401
+ set(possiblyAliasedPath, resolvedAbsolutePath);
10142
10402
  return `url("${this.buildResourceFileFinalPath(resolvedAbsolutePath)}")`;
10143
10403
  }
10144
10404
  });
@@ -10152,8 +10412,10 @@ class ResourcesReferencesResolverForHTML {
10152
10412
  if (!(0, es_extensions_1.isNonEmptyString)(targetHTML_ElementAttributeValue)) {
10153
10413
  return;
10154
10414
  }
10155
- let resolvedAbsolutePath = this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10156
- get(targetHTML_ElementAttributeName) ?? null;
10415
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10416
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10417
+ get(targetHTML_ElementAttributeName) ??
10418
+ null;
10157
10419
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10158
10420
  targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, this.buildResourceFileFinalPath(resolvedAbsolutePath));
10159
10421
  return;
@@ -10165,13 +10427,13 @@ class ResourcesReferencesResolverForHTML {
10165
10427
  }
10166
10428
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10167
10429
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10168
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
10169
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
10170
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10430
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10431
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
10171
10432
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10172
10433
  return;
10173
10434
  }
10174
- this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10435
+ ResourcesReferencesResolverForHTML.
10436
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10175
10437
  set(targetHTML_ElementAttributeValue, resolvedAbsolutePath);
10176
10438
  targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, targetHTML_ElementAttributeValue);
10177
10439
  return;
@@ -10182,7 +10444,7 @@ class ResourcesReferencesResolverForHTML {
10182
10444
  }
10183
10445
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10184
10446
  pickedPathOfTargetResourceFile: targetHTML_ElementAttributeValue,
10185
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.
10447
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.
10186
10448
  imagesSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10187
10449
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: imagesProcessingSettingsRepresentative.supportedSourceFilesNamesExtensionsWithoutLeadingDots,
10188
10450
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: ImagesProcessingStore_1.default.sourceFilesAbsolutePathsAndOutputFilesActualPathsMap,
@@ -10192,7 +10454,8 @@ class ResourcesReferencesResolverForHTML {
10192
10454
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10193
10455
  return;
10194
10456
  }
10195
- this.aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10457
+ ResourcesReferencesResolverForHTML.
10458
+ aliasedURIsAndOutputImagesFilesAbsolutePathsCorrespondenceMap.
10196
10459
  set(targetHTML_ElementAttributeValue, resolvedAbsolutePath);
10197
10460
  targetHTML_Element.setAttribute(targetHTML_ElementAttributeName, this.buildResourceFileFinalPath(resolvedAbsolutePath));
10198
10461
  }
@@ -10207,8 +10470,10 @@ class ResourcesReferencesResolverForHTML {
10207
10470
  if (!(0, es_extensions_1.isNonEmptyString)(srcAttributeValue)) {
10208
10471
  continue;
10209
10472
  }
10210
- let resolvedAbsolutePath = this.aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.
10211
- get(srcAttributeValue) ?? null;
10473
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10474
+ aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.
10475
+ get(srcAttributeValue) ??
10476
+ null;
10212
10477
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10213
10478
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10214
10479
  continue;
@@ -10220,13 +10485,14 @@ class ResourcesReferencesResolverForHTML {
10220
10485
  }
10221
10486
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10222
10487
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10223
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
10224
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
10225
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10488
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10489
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
10226
10490
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10227
10491
  continue;
10228
10492
  }
10229
- this.aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10493
+ ResourcesReferencesResolverForHTML.
10494
+ aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.
10495
+ set(srcAttributeValue, resolvedAbsolutePath);
10230
10496
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10231
10497
  continue;
10232
10498
  }
@@ -10235,7 +10501,7 @@ class ResourcesReferencesResolverForHTML {
10235
10501
  }
10236
10502
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10237
10503
  pickedPathOfTargetResourceFile: srcAttributeValue,
10238
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.
10504
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.
10239
10505
  videosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10240
10506
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: videosProcessingSettingsRepresentative.supportedSourceFilesNamesExtensionsWithoutLeadingDots,
10241
10507
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: VideosProcessingStore_1.default.sourceFilesAbsolutePathsAndOutputFilesActualPathsMap,
@@ -10245,7 +10511,9 @@ class ResourcesReferencesResolverForHTML {
10245
10511
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10246
10512
  continue;
10247
10513
  }
10248
- this.aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10514
+ ResourcesReferencesResolverForHTML.
10515
+ aliasedURIsAndOutputVideosFilesAbsolutePathsCorrespondenceMap.
10516
+ set(srcAttributeValue, resolvedAbsolutePath);
10249
10517
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10250
10518
  }
10251
10519
  return this;
@@ -10261,8 +10529,10 @@ class ResourcesReferencesResolverForHTML {
10261
10529
  if (!(0, es_extensions_1.isNonEmptyString)(srcAttributeValue)) {
10262
10530
  continue;
10263
10531
  }
10264
- let resolvedAbsolutePath = this.aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.
10265
- get(srcAttributeValue) ?? null;
10532
+ let resolvedAbsolutePath = ResourcesReferencesResolverForHTML.
10533
+ aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.
10534
+ get(srcAttributeValue) ??
10535
+ null;
10266
10536
  if ((0, es_extensions_1.isNotNull)(resolvedAbsolutePath)) {
10267
10537
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10268
10538
  }
@@ -10273,13 +10543,14 @@ class ResourcesReferencesResolverForHTML {
10273
10543
  }
10274
10544
  if ((0, es_extensions_1.isNotUndefined)(this.plainCopyingSettingsRepresentative) &&
10275
10545
  firstSegmentOfPickedPath.startsWith(PLAIN_COPIED_FILES_ALIAS_PREFIX_1.default)) {
10276
- resolvedAbsolutePath = segmentsOfPickedPath.length === 1 ?
10277
- this.plainCopyingSettingsRepresentative.getAbsolutePathOfOutputFileOfSingularGroup(firstSegmentOfPickedPath) :
10278
- this.plainCopyingSettingsRepresentative.computeOutputAbsolutePathOfFileOfPluralGroup(firstSegmentOfPickedPath, segmentsOfPickedPath.slice(1).join("/"));
10546
+ resolvedAbsolutePath = this.plainCopyingSettingsRepresentative.
10547
+ getSourceFileAbsolutePathByAliasedPath(segmentsOfPickedPath);
10279
10548
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10280
10549
  continue;
10281
10550
  }
10282
- this.aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10551
+ ResourcesReferencesResolverForHTML.
10552
+ aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.
10553
+ set(srcAttributeValue, resolvedAbsolutePath);
10283
10554
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10284
10555
  continue;
10285
10556
  }
@@ -10288,7 +10559,7 @@ class ResourcesReferencesResolverForHTML {
10288
10559
  }
10289
10560
  resolvedAbsolutePath = this.resolveOutputResourceFileAbsolutePathIfPossible({
10290
10561
  pickedPathOfTargetResourceFile: srcAttributeValue,
10291
- sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: this.
10562
+ sourceFilesTopDirectoriesAliasesAndRespectiveAbsolutePathsMap: ResourcesReferencesResolverForHTML.
10292
10563
  audiosSourceFilesGroupsTopDirectoriesAliasesAndRespectiveAbsolutePathsMap,
10293
10564
  supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots: audiosProcessingSettingsRepresentative.supportedSourceFilesNamesExtensionsWithoutLeadingDots,
10294
10565
  sourceAndOutputFilesAbsolutePathsCorrespondenceMap: AudiosProcessingStore_1.default.sourceFilesAbsolutePathsAndOutputFilesActualPathsMap,
@@ -10298,7 +10569,9 @@ class ResourcesReferencesResolverForHTML {
10298
10569
  if ((0, es_extensions_1.isNull)(resolvedAbsolutePath)) {
10299
10570
  continue;
10300
10571
  }
10301
- this.aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.set(srcAttributeValue, resolvedAbsolutePath);
10572
+ ResourcesReferencesResolverForHTML.
10573
+ aliasedURIsAndOutputAudiosFilesAbsolutePathsCorrespondenceMap.
10574
+ set(srcAttributeValue, resolvedAbsolutePath);
10302
10575
  sourceElement.setAttribute("src", this.buildResourceFileFinalPath(resolvedAbsolutePath));
10303
10576
  }
10304
10577
  return this;
@@ -11595,8 +11868,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
11595
11868
  return (mod && mod.__esModule) ? mod : { "default": mod };
11596
11869
  };
11597
11870
  Object.defineProperty(exports, "__esModule", ({ value: true }));
11598
- /* ─── Restrictions ───────────────────────────────────────────────────────────────────────────────────────────────── */
11599
- const ConsumingProjectBuildingModes_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/Restrictions/ConsumingProjectBuildingModes */ "./ProjectBuilding/Common/Restrictions/ConsumingProjectBuildingModes.ts"));
11600
11871
  /* ─── Raw valid settings ─────────────────────────────────────────────────────────────────────────────────────────── */
11601
11872
  const SourceCodeProcessingSettingsGenericProperties__FromFile__RawValid_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding:Common/RawConfig/SourceCodeProcessingSettingsGenericProperties__FromFile__RawValid */ "./ProjectBuilding/Common/RawConfig/SourceCodeProcessingSettingsGenericProperties__FromFile__RawValid.ts"));
11602
11873
  /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
@@ -11640,133 +11911,47 @@ var StylesProcessingSettings__FromFile__RawValid;
11640
11911
  }
11641
11912
  }
11642
11913
  }),
11643
- [stylesProcessingPropertiesLocalization.preMadeCSS.KEY]: {
11644
- newName: "preMadeCSS",
11645
- type: es_extensions_1.RawObjectDataProcessor.ValuesTypesIDs.associativeArrayOfUniformTypeValues,
11914
+ [stylesProcessingPropertiesLocalization.logging.KEY]: {
11915
+ newName: "logging",
11916
+ type: Object,
11646
11917
  required: false,
11647
11918
  preValidationModifications: es_extensions_1.nullToUndefined,
11648
- value: {
11649
- type: Object,
11650
- properties: {
11651
- [stylesProcessingPropertiesLocalization.preMadeCSS.sourceFileRelativePath.KEY]: {
11652
- newName: "sourceFileRelativePath",
11653
- type: String,
11654
- required: false
11655
- },
11656
- [stylesProcessingPropertiesLocalization.preMadeCSS.sourceDirectoryRelativePath.KEY]: {
11657
- newName: "sourceDirectoryRelativePath",
11658
- type: String,
11659
- requiredIf: {
11660
- predicate: (filesGroup) => (0, es_extensions_1.isUndefined)(filesGroup[stylesProcessingPropertiesLocalization.preMadeCSS.sourceFileRelativePath.KEY]),
11661
- descriptionForLogging: stylesProcessingPropertiesLocalization.preMadeCSS.sourceDirectoryRelativePath.
11662
- REQUIREMENT_CONDITION_DESCRIPTION
11663
- }
11664
- },
11665
- [stylesProcessingPropertiesLocalization.preMadeCSS.aliasName.KEY]: {
11666
- newName: "aliasName",
11667
- preValidationModifications: es_extensions_1.nullToUndefined,
11668
- type: String,
11669
- required: false
11670
- },
11671
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.KEY]: {
11672
- newName: "buildingModeDependent",
11673
- type: es_extensions_1.RawObjectDataProcessor.ValuesTypesIDs.associativeArrayOfUniformTypeValues,
11674
- required: true,
11675
- allowedKeys: Object.values(ConsumingProjectBuildingModes_1.default),
11676
- minimalEntriesCount: 1,
11677
- keysRenamings: {
11678
- [localizedConsumingProjectLocalizedPreDefinedBuildingModes.staticPreview]: ConsumingProjectBuildingModes_1.default.staticPreview,
11679
- [localizedConsumingProjectLocalizedPreDefinedBuildingModes.localDevelopment]: ConsumingProjectBuildingModes_1.default.localDevelopment,
11680
- [localizedConsumingProjectLocalizedPreDefinedBuildingModes.testing]: ConsumingProjectBuildingModes_1.default.testing,
11681
- [localizedConsumingProjectLocalizedPreDefinedBuildingModes.staging]: ConsumingProjectBuildingModes_1.default.staging,
11682
- [localizedConsumingProjectLocalizedPreDefinedBuildingModes.production]: ConsumingProjectBuildingModes_1.default.production
11919
+ properties: {
11920
+ [stylesProcessingPropertiesLocalization.logging.filesPaths.KEY]: {
11921
+ newName: "filesPaths",
11922
+ type: Boolean,
11923
+ required: false
11924
+ },
11925
+ [stylesProcessingPropertiesLocalization.logging.filesCount.KEY]: {
11926
+ newName: "filesCount",
11927
+ type: Boolean,
11928
+ required: false
11929
+ },
11930
+ [stylesProcessingPropertiesLocalization.logging.partialFilesAndParentEntryPointsCorrespondence.KEY]: {
11931
+ newName: "partialFilesAndParentEntryPointsCorrespondence",
11932
+ type: Boolean,
11933
+ required: false
11934
+ },
11935
+ [stylesProcessingPropertiesLocalization.logging.filesWatcherEvents.KEY]: {
11936
+ newName: "filesWatcherEvents",
11937
+ type: Boolean,
11938
+ required: false
11939
+ },
11940
+ [stylesProcessingPropertiesLocalization.logging.linting.KEY]: {
11941
+ newName: "linting",
11942
+ type: Object,
11943
+ required: false,
11944
+ preValidationModifications: es_extensions_1.nullToUndefined,
11945
+ properties: {
11946
+ [stylesProcessingPropertiesLocalization.logging.linting.starting.KEY]: {
11947
+ newName: "starting",
11948
+ type: Boolean,
11949
+ required: false
11683
11950
  },
11684
- value: {
11685
- type: Object,
11686
- properties: {
11687
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.outputTopDirectoryRelativePath.KEY]: {
11688
- newName: "outputTopDirectoryRelativePath",
11689
- type: String,
11690
- required: true
11691
- },
11692
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.newFileNameWithExtension.KEY]: {
11693
- newName: "newFileNameWithExtension",
11694
- type: String,
11695
- required: false,
11696
- minimalCharactersCount: 1
11697
- },
11698
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.filesRenamings.KEY]: {
11699
- newName: "filesRenamings",
11700
- type: Array,
11701
- required: false,
11702
- preValidationModifications: es_extensions_1.nullToUndefined,
11703
- element: {
11704
- type: Object,
11705
- properties: {
11706
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.
11707
- filesRenamings.pathRelativeToSourceDirectory.KEY]: {
11708
- newName: "pathRelativeToSourceDirectory",
11709
- type: String,
11710
- required: true,
11711
- minimalCharactersCount: 1
11712
- },
11713
- [stylesProcessingPropertiesLocalization.preMadeCSS.buildingModeDependent.
11714
- filesRenamings.newFileNameWithExtension.KEY]: {
11715
- newName: "newFileNameWithExtension",
11716
- type: String,
11717
- required: true,
11718
- minimalCharactersCount: 1
11719
- }
11720
- }
11721
- }
11722
- }
11723
- }
11724
- }
11725
- },
11726
- [stylesProcessingPropertiesLocalization.logging.KEY]: {
11727
- newName: "logging",
11728
- type: Object,
11729
- required: false,
11730
- preValidationModifications: es_extensions_1.nullToUndefined,
11731
- properties: {
11732
- [stylesProcessingPropertiesLocalization.logging.filesPaths.KEY]: {
11733
- newName: "filesPaths",
11734
- type: Boolean,
11735
- required: false
11736
- },
11737
- [stylesProcessingPropertiesLocalization.logging.filesCount.KEY]: {
11738
- newName: "filesCount",
11739
- type: Boolean,
11740
- required: false
11741
- },
11742
- [stylesProcessingPropertiesLocalization.logging.partialFilesAndParentEntryPointsCorrespondence.KEY]: {
11743
- newName: "partialFilesAndParentEntryPointsCorrespondence",
11744
- type: Boolean,
11745
- required: false
11746
- },
11747
- [stylesProcessingPropertiesLocalization.logging.filesWatcherEvents.KEY]: {
11748
- newName: "filesWatcherEvents",
11749
- type: Boolean,
11750
- required: false
11751
- },
11752
- [stylesProcessingPropertiesLocalization.logging.linting.KEY]: {
11753
- newName: "linting",
11754
- type: Object,
11755
- required: false,
11756
- preValidationModifications: es_extensions_1.nullToUndefined,
11757
- properties: {
11758
- [stylesProcessingPropertiesLocalization.logging.linting.starting.KEY]: {
11759
- newName: "starting",
11760
- type: Boolean,
11761
- required: false
11762
- },
11763
- [stylesProcessingPropertiesLocalization.logging.linting.completionWithoutIssues.KEY]: {
11764
- newName: "completionWithoutIssues",
11765
- type: Boolean,
11766
- required: false
11767
- }
11768
- }
11769
- }
11951
+ [stylesProcessingPropertiesLocalization.logging.linting.completionWithoutIssues.KEY]: {
11952
+ newName: "completionWithoutIssues",
11953
+ type: Boolean,
11954
+ required: false
11770
11955
  }
11771
11956
  }
11772
11957
  }
@@ -11813,7 +11998,8 @@ const StylesProcessingSettingsRepresentative_1 = __importDefault(__webpack_requi
11813
11998
  const StylesSourceFilesWatcher_1 = __importDefault(__webpack_require__(/*! @StylesProcessing/StylesSourceFilesWatcher */ "./ProjectBuilding/SourceCodeProcessing/Styles/StylesSourceFilesWatcher.ts"));
11814
11999
  /* ─── Superclass ─────────────────────────────────────────────────────────────────────────────────────────────────── */
11815
12000
  const GulpStreamsBasedTaskExecutor_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/TasksExecutors/GulpStreamsBased/GulpStreamsBasedTaskExecutor */ "./ProjectBuilding/Common/TasksExecutors/GulpStreamsBased/GulpStreamsBasedTaskExecutor.ts"));
11816
- /* ─── State management ───────────────────────────────────────────────────────────────────────────────────────────── */
12001
+ /* ─── Shared state ───────────────────────────────────────────────────────────────────────────────────────────────── */
12002
+ const CommonStore_1 = __importDefault(__webpack_require__(/*! @ProjectBuilding/Common/CommonStore */ "./ProjectBuilding/Common/CommonStore.ts"));
11817
12003
  const StylesProcessingStore_1 = __importDefault(__webpack_require__(/*! @StylesProcessing/StylesProcessingStore */ "./ProjectBuilding/SourceCodeProcessing/Styles/StylesProcessingStore.ts"));
11818
12004
  /* ─── Gulp & plugins ─────────────────────────────────────────────────────────────────────────────────────────────── */
11819
12005
  const gulp_1 = __importDefault(__webpack_require__(/*! gulp */ "gulp"));
@@ -11872,7 +12058,7 @@ class StylesProcessor extends GulpStreamsBasedTaskExecutor_1.default {
11872
12058
  StylesProcessor.ENTRY_POINTS_AND_PARTIAL_FILES_MAPPING_CACHE_FILE_NAME_WITH_EXTENSION
11873
12059
  ])
11874
12060
  });
11875
- StylesSourceFilesWatcher_1.default.
12061
+ const stylesSourceFilesWatcher = StylesSourceFilesWatcher_1.default.
11876
12062
  initializeIfRequiredAndGetInstance({
11877
12063
  stylesProcessingSettingsRepresentative,
11878
12064
  projectBuildingMasterConfigRepresentative
@@ -11889,6 +12075,9 @@ class StylesProcessor extends GulpStreamsBasedTaskExecutor_1.default {
11889
12075
  handlerID: "ON_STYLES_ENTRY_POINT_FILE_DELETED--BY_STYLES_PROCESSOR",
11890
12076
  handler: dataHoldingSelfInstance.onEntryPointFileDeleted.bind(dataHoldingSelfInstance)
11891
12077
  });
12078
+ CommonStore_1.default.
12079
+ onInitialBuildDoneEventHandlers.
12080
+ set("BY_STYLES_PROCESSOR", () => { stylesSourceFilesWatcher.startWatching(); });
11892
12081
  }
11893
12082
  return dataHoldingSelfInstance.processEntryPoints(stylesProcessingSettingsRepresentative.relevantEntryPointsSourceFilesAbsolutePaths);
11894
12083
  }
@@ -12042,7 +12231,6 @@ class StylesSourceFilesWatcher extends CodeSourceFilesWatcher_1.default {
12042
12231
  });
12043
12232
  this.stylesProcessingSettingsRepresentative = stylesProcessingSettingsRepresentative;
12044
12233
  this.mustLogSourceFilesWatcherEvents = this.stylesProcessingSettingsRepresentative.mustLogSourceFilesWatcherEvents;
12045
- this.initializeGulpWatcher();
12046
12234
  }
12047
12235
  isFileAbsolutePathRefersToEntryPoint(targetFileAbsolutePath) {
12048
12236
  return this.stylesProcessingSettingsRepresentative.isEntryPoint(targetFileAbsolutePath);
@@ -12597,29 +12785,6 @@ function extractFileNameWithoutLastExtension(targetPath) {
12597
12785
  exports["default"] = extractFileNameWithoutLastExtension;
12598
12786
 
12599
12787
 
12600
- /***/ }),
12601
-
12602
- /***/ "./UtilsIncubator/Strings/replaceLastURI_PathSegment.ts":
12603
- /*!**************************************************************!*\
12604
- !*** ./UtilsIncubator/Strings/replaceLastURI_PathSegment.ts ***!
12605
- \**************************************************************/
12606
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
12607
-
12608
-
12609
- Object.defineProperty(exports, "__esModule", ({ value: true }));
12610
- const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
12611
- function replaceLastURI_PathSegment(compoundParameter) {
12612
- const { extractedMatching: targetPathFragmentWithLeadingHash } = (0, es_extensions_1.extractMatchingsWithRegularExpression)(compoundParameter.targetURI, /#.+$/u, { mustExpectOneOrZeroMatchings: true });
12613
- const pathSegments = (0, es_extensions_1.splitString)((0, es_extensions_1.replaceDoubleBackslashesWithForwardSlashes)(compoundParameter.targetURI), "/");
12614
- return [
12615
- ...pathSegments.slice(0, pathSegments.length - 1),
12616
- compoundParameter.newLastPathSegment,
12617
- ...targetPathFragmentWithLeadingHash ?? []
12618
- ].join("/");
12619
- }
12620
- exports["default"] = replaceLastURI_PathSegment;
12621
-
12622
-
12623
12788
  /***/ }),
12624
12789
 
12625
12790
  /***/ "./UtilsIncubator/Strings/surroundLabelByOrnament.ts":
@@ -19823,8 +19988,8 @@ const RawObjectDataProcessorLocalization__English = {
19823
19988
  buildValueIsNotAmongAllowedAlternativesErrorMessageTextData(allowedAlternatives) {
19824
19989
  return {
19825
19990
  title: "Disallowed alternative of value",
19826
- specificMessagePart: "This value is not among following allowed alternatives." +
19827
- `${allowedAlternatives.map((allowedAlternative) => `● ${allowedAlternative}`).join("\n")}`
19991
+ specificMessagePart: "This value is not among following allowed alternatives.\n" +
19992
+ `${allowedAlternatives.map((allowedAlternative) => ` ○ ${allowedAlternative}`).join("\n")}`
19828
19993
  };
19829
19994
  },
19830
19995
  buildNumericValueIsSmallerThanRequiredMinimumErrorMessageTextData(requiredMinimum) {
@@ -20377,6 +20542,47 @@ function extractAllFileNameExtensions(compoundParameter) {
20377
20542
  }
20378
20543
 
20379
20544
 
20545
+ /***/ }),
20546
+
20547
+ /***/ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractFileNameWithAllExtensionsFromPath.js":
20548
+ /*!***********************************************************************************************************************************************************!*\
20549
+ !*** ../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractFileNameWithAllExtensionsFromPath.js ***!
20550
+ \***********************************************************************************************************************************************************/
20551
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
20552
+
20553
+ __webpack_require__.r(__webpack_exports__);
20554
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
20555
+ /* harmony export */ "default": () => (/* binding */ extractFileNameWithAllExtensionsFromPath)
20556
+ /* harmony export */ });
20557
+ /* harmony import */ var _replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../replaceDoubleBackslashesWithForwardSlashes */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replaceDoubleBackslashesWithForwardSlashes.js");
20558
+ /* harmony import */ var _splitString__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../splitString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/splitString.js");
20559
+ /* harmony import */ var _Arrays_getLastElementOfArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../Arrays/getLastElementOfArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Arrays/getLastElementOfArray.js");
20560
+ /* harmony import */ var _TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../TypeGuards/Nullables/isNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNull.js");
20561
+ /* harmony import */ var _Logging_Logger__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../Logging/Logger */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Logging/Logger.js");
20562
+ /* harmony import */ var _Errors_UnexpectedEvent_UnexpectedEventError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../Errors/UnexpectedEvent/UnexpectedEventError */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Errors/UnexpectedEvent/UnexpectedEventError.js");
20563
+
20564
+
20565
+
20566
+
20567
+
20568
+
20569
+ function extractFileNameWithAllExtensionsFromPath(compoundParameter) {
20570
+ const targetPath = compoundParameter.targetPath;
20571
+ const pathExplodedToSegments = (0,_splitString__WEBPACK_IMPORTED_MODULE_0__["default"])((0,_replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_1__["default"])(targetPath), "/");
20572
+ const lastPathSegment = (0,_Arrays_getLastElementOfArray__WEBPACK_IMPORTED_MODULE_2__["default"])(pathExplodedToSegments);
20573
+ if ((0,_TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_3__["default"])(lastPathSegment) || !lastPathSegment.includes(".") || lastPathSegment === ".") {
20574
+ if (compoundParameter.mustThrowErrorIfLastPathSegmentHasNoDots) {
20575
+ _Logging_Logger__WEBPACK_IMPORTED_MODULE_4__["default"].throwErrorAndLog({
20576
+ errorInstance: new _Errors_UnexpectedEvent_UnexpectedEventError__WEBPACK_IMPORTED_MODULE_5__["default"](`Contrary to expectations, the last segment of "${targetPath}" path does not include the dots.`),
20577
+ title: _Errors_UnexpectedEvent_UnexpectedEventError__WEBPACK_IMPORTED_MODULE_5__["default"].localization.defaultTitle,
20578
+ occurrenceLocation: "extractFileNameWithAllExtensionsFromPath(compoundParameter)"
20579
+ });
20580
+ }
20581
+ }
20582
+ return lastPathSegment ?? "";
20583
+ }
20584
+
20585
+
20380
20586
  /***/ }),
20381
20587
 
20382
20588
  /***/ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractLastExtensionOfFileName.js":
@@ -22304,7 +22510,7 @@ __webpack_require__.r(__webpack_exports__);
22304
22510
  /* harmony export */ DataRetrievingFailedError: () => (/* reexport safe */ _Errors_DataRetrievingFailed_DataRetrievingFailedError__WEBPACK_IMPORTED_MODULE_54__["default"]),
22305
22511
  /* harmony export */ DataSubmittingFailedError: () => (/* reexport safe */ _Errors_DataSubmittingFailed_DataSubmittingFailedError__WEBPACK_IMPORTED_MODULE_56__["default"]),
22306
22512
  /* harmony export */ DaysOfWeek: () => (/* reexport safe */ _ConstantsAndEnumerations_DateTime_DaysOfWeek__WEBPACK_IMPORTED_MODULE_16__["default"]),
22307
- /* harmony export */ EmailAddress: () => (/* reexport safe */ _Strings_EmailAddress__WEBPACK_IMPORTED_MODULE_143__["default"]),
22513
+ /* harmony export */ EmailAddress: () => (/* reexport safe */ _Strings_EmailAddress__WEBPACK_IMPORTED_MODULE_144__["default"]),
22308
22514
  /* harmony export */ EscapeCharacters: () => (/* reexport safe */ _Strings_CharactersAssets_EscapeCharacters__WEBPACK_IMPORTED_MODULE_121__["default"]),
22309
22515
  /* harmony export */ FetchAPI_Service: () => (/* reexport safe */ _AJAX_FetchAPI_Service__WEBPACK_IMPORTED_MODULE_1__["default"]),
22310
22516
  /* harmony export */ FileReadingFailedError: () => (/* reexport safe */ _Errors_FileReadingFailed_FileReadingFailedError__WEBPACK_IMPORTED_MODULE_60__["default"]),
@@ -22319,8 +22525,8 @@ __webpack_require__.r(__webpack_exports__);
22319
22525
  /* harmony export */ InvalidConfigError: () => (/* reexport safe */ _Errors_InvalidConfig_InvalidConfigError__WEBPACK_IMPORTED_MODULE_70__["default"]),
22320
22526
  /* harmony export */ InvalidExternalDataError: () => (/* reexport safe */ _Errors_InvalidExternalData_InvalidExternalDataError__WEBPACK_IMPORTED_MODULE_72__["default"]),
22321
22527
  /* harmony export */ InvalidParameterValueError: () => (/* reexport safe */ _Errors_InvalidParameterValue_InvalidParameterValueError__WEBPACK_IMPORTED_MODULE_74__["default"]),
22322
- /* harmony export */ IsArrayOfLengthCheckingOperation: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_168__.IsArrayOfLengthCheckingOperation),
22323
- /* harmony export */ IsStringOfLengthCheckingOperation: () => (/* reexport safe */ _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_193__.IsStringOfLengthCheckingOperation),
22528
+ /* harmony export */ IsArrayOfLengthCheckingOperation: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_169__.IsArrayOfLengthCheckingOperation),
22529
+ /* harmony export */ IsStringOfLengthCheckingOperation: () => (/* reexport safe */ _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_194__.IsStringOfLengthCheckingOperation),
22324
22530
  /* harmony export */ Logger: () => (/* reexport safe */ _Logging_Logger__WEBPACK_IMPORTED_MODULE_85__["default"]),
22325
22531
  /* harmony export */ MAXIMAL_DAYS_AT_MONTH: () => (/* reexport safe */ _ConstantsAndEnumerations_DateTime_MAXIMAL_DAYS_IN_MONTH__WEBPACK_IMPORTED_MODULE_18__["default"]),
22326
22532
  /* harmony export */ MINUTES_PER_HOUR: () => (/* reexport safe */ _ConstantsAndEnumerations_DateTime_MINUTES_PER_HOUR__WEBPACK_IMPORTED_MODULE_19__["default"]),
@@ -22351,11 +22557,11 @@ __webpack_require__.r(__webpack_exports__);
22351
22557
  /* harmony export */ addMultipleElementsToSet: () => (/* reexport safe */ _Sets_addMultipleElementsToSet__WEBPACK_IMPORTED_MODULE_120__["default"]),
22352
22558
  /* harmony export */ addMultiplePairsToMap: () => (/* reexport safe */ _Maps_addMultiplePairsToMap__WEBPACK_IMPORTED_MODULE_87__["default"]),
22353
22559
  /* harmony export */ algorithmMismatchErrorLocalization__english: () => (/* reexport safe */ _Errors_AlgorithmMismatch_AlgorithmMismatchErrorLocalization_english__WEBPACK_IMPORTED_MODULE_45__["default"]),
22354
- /* harmony export */ appendCharacterIfItDoesNotPresentInLastPosition: () => (/* reexport safe */ _Strings_appendCharacterIfItDoesNotPresentInLastPosition__WEBPACK_IMPORTED_MODULE_139__["default"]),
22355
- /* harmony export */ appendFragmentToURI: () => (/* reexport safe */ _Strings_URI_appendFragmentToURI__WEBPACK_IMPORTED_MODULE_134__["default"]),
22560
+ /* harmony export */ appendCharacterIfItDoesNotPresentInLastPosition: () => (/* reexport safe */ _Strings_appendCharacterIfItDoesNotPresentInLastPosition__WEBPACK_IMPORTED_MODULE_140__["default"]),
22561
+ /* harmony export */ appendFragmentToURI: () => (/* reexport safe */ _Strings_URI_appendFragmentToURI__WEBPACK_IMPORTED_MODULE_135__["default"]),
22356
22562
  /* harmony export */ appendLastFileNameExtension: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_appendLastFileNameExtension__WEBPACK_IMPORTED_MODULE_130__["default"]),
22357
- /* harmony export */ areStringifiedDigitsOnly: () => (/* reexport safe */ _Strings_areStringifiedDigitsOnly__WEBPACK_IMPORTED_MODULE_140__["default"]),
22358
- /* harmony export */ capitalizeFirstCharacter: () => (/* reexport safe */ _Strings_capitalizeFirstCharacter__WEBPACK_IMPORTED_MODULE_141__["default"]),
22563
+ /* harmony export */ areStringifiedDigitsOnly: () => (/* reexport safe */ _Strings_areStringifiedDigitsOnly__WEBPACK_IMPORTED_MODULE_141__["default"]),
22564
+ /* harmony export */ capitalizeFirstCharacter: () => (/* reexport safe */ _Strings_capitalizeFirstCharacter__WEBPACK_IMPORTED_MODULE_142__["default"]),
22359
22565
  /* harmony export */ classRedundantSubsequentInitializationErrorLocalization__english: () => (/* reexport safe */ _Errors_ClassRedundantSubsequentInitialization_ClassRedundantSubsequentInitializationErrorLocalization_english__WEBPACK_IMPORTED_MODULE_47__["default"]),
22360
22566
  /* harmony export */ classRequiredInitializationHasNotBeenExecutedErrorLocalization__english: () => (/* reexport safe */ _Errors_ClassRequiredInitializationHasNotBeenExecuted_ClassRequiredInitializationHasNotBeenExecutedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_49__["default"]),
22361
22567
  /* harmony export */ computeFirstItemNumberForSpecificPaginationPage: () => (/* reexport safe */ _Pagination_computeFirstItemNumberForSpecificPaginationPage__WEBPACK_IMPORTED_MODULE_100__["default"]),
@@ -22368,16 +22574,17 @@ __webpack_require__.r(__webpack_exports__);
22368
22574
  /* harmony export */ createMapBasedOnOtherMap: () => (/* reexport safe */ _Maps_createMapBasedOnOtherMap__WEBPACK_IMPORTED_MODULE_88__["default"]),
22369
22575
  /* harmony export */ createSetBasedOnOtherSet: () => (/* reexport safe */ _Sets_createSetBasedOnOtherSet__WEBPACK_IMPORTED_MODULE_119__["default"]),
22370
22576
  /* harmony export */ cropArray: () => (/* reexport safe */ _Arrays_cropArray__WEBPACK_IMPORTED_MODULE_5__["default"]),
22371
- /* harmony export */ cropString: () => (/* reexport safe */ _Strings_cropString__WEBPACK_IMPORTED_MODULE_142__["default"]),
22577
+ /* harmony export */ cropString: () => (/* reexport safe */ _Strings_cropString__WEBPACK_IMPORTED_MODULE_143__["default"]),
22372
22578
  /* harmony export */ crossBrowserIssueErrorLocalization__english: () => (/* reexport safe */ _Errors_CrossBrowserIssue_CrossBrowserIssueErrorLocalization_english__WEBPACK_IMPORTED_MODULE_53__["default"]),
22373
22579
  /* harmony export */ dataRetrievingFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_DataRetrievingFailed_DataRetrievingFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_55__["default"]),
22374
22580
  /* harmony export */ dataSubmittingFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_DataSubmittingFailed_DataSubmittingFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_57__["default"]),
22375
- /* harmony export */ emptyStringToNull: () => (/* reexport safe */ _ValueTransformers_emptyStringToNull__WEBPACK_IMPORTED_MODULE_197__["default"]),
22581
+ /* harmony export */ emptyStringToNull: () => (/* reexport safe */ _ValueTransformers_emptyStringToNull__WEBPACK_IMPORTED_MODULE_198__["default"]),
22376
22582
  /* harmony export */ encodeFileToBase64: () => (/* reexport safe */ _Files_encodeFileToBase64__WEBPACK_IMPORTED_MODULE_82__["default"]),
22377
- /* harmony export */ explodeCasedPhraseToWords: () => (/* reexport safe */ _Strings_explodeCasedPhraseToWords__WEBPACK_IMPORTED_MODULE_144__["default"]),
22378
- /* harmony export */ explodeURI_PathToSegments: () => (/* reexport safe */ _Strings_URI_explodeURI_PathToSegments__WEBPACK_IMPORTED_MODULE_138__["default"]),
22583
+ /* harmony export */ explodeCasedPhraseToWords: () => (/* reexport safe */ _Strings_explodeCasedPhraseToWords__WEBPACK_IMPORTED_MODULE_145__["default"]),
22584
+ /* harmony export */ explodeURI_PathToSegments: () => (/* reexport safe */ _Strings_URI_explodeURI_PathToSegments__WEBPACK_IMPORTED_MODULE_139__["default"]),
22379
22585
  /* harmony export */ extractAllFileNameExtensions: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_extractAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_131__["default"]),
22380
- /* harmony export */ extractLastExtensionOfFileName: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_extractLastExtensionOfFileName__WEBPACK_IMPORTED_MODULE_132__["default"]),
22586
+ /* harmony export */ extractFileNameWithAllExtensionsFromPath: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_extractFileNameWithAllExtensionsFromPath__WEBPACK_IMPORTED_MODULE_132__["default"]),
22587
+ /* harmony export */ extractLastExtensionOfFileName: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_extractLastExtensionOfFileName__WEBPACK_IMPORTED_MODULE_133__["default"]),
22381
22588
  /* harmony export */ extractMatchingsWithRegularExpression: () => (/* reexport safe */ _Strings_RegularExpressions_extractMatchingsWithRegularExpression__WEBPACK_IMPORTED_MODULE_128__["default"]),
22382
22589
  /* harmony export */ fileReadingFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_FileReadingFailed_FileReadingFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_61__["default"]),
22383
22590
  /* harmony export */ fileWritingFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_FileWritingFailed_FileWritingFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_63__["default"]),
@@ -22386,18 +22593,18 @@ __webpack_require__.r(__webpack_exports__);
22386
22593
  /* harmony export */ getArithmeticMean: () => (/* reexport safe */ _Numbers_getArithmeticMean__WEBPACK_IMPORTED_MODULE_91__["default"]),
22387
22594
  /* harmony export */ getArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne: () => (/* reexport safe */ _Arrays_getArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne__WEBPACK_IMPORTED_MODULE_6__["default"]),
22388
22595
  /* harmony export */ getDaysCountInSpecificMonth: () => (/* reexport safe */ _DateTime_getDaysCountInSpecificMonth__WEBPACK_IMPORTED_MODULE_30__["default"]),
22389
- /* harmony export */ getEnglishAbbreviatedOrdinalNumber: () => (/* reexport safe */ _Strings_getEnglishAbbreviatedOrdinalNumber__WEBPACK_IMPORTED_MODULE_145__["default"]),
22596
+ /* harmony export */ getEnglishAbbreviatedOrdinalNumber: () => (/* reexport safe */ _Strings_getEnglishAbbreviatedOrdinalNumber__WEBPACK_IMPORTED_MODULE_146__["default"]),
22390
22597
  /* harmony export */ getIndexOfArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne: () => (/* reexport safe */ _Arrays_getIndexOfArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne__WEBPACK_IMPORTED_MODULE_8__["default"]),
22391
22598
  /* harmony export */ getIndexesOfArrayElementsWhichSatisfiesThePredicate: () => (/* reexport safe */ _Arrays_getIndexesOfArrayElementsWhichSatisfiesThePredicate__WEBPACK_IMPORTED_MODULE_7__["default"]),
22392
22599
  /* harmony export */ getItemsOfPaginationPage: () => (/* reexport safe */ _Pagination_getItemsOfPaginationPage__WEBPACK_IMPORTED_MODULE_102__["default"]),
22393
- /* harmony export */ getLastCharacter: () => (/* reexport safe */ _Strings_getLastCharacter__WEBPACK_IMPORTED_MODULE_146__["default"]),
22600
+ /* harmony export */ getLastCharacter: () => (/* reexport safe */ _Strings_getLastCharacter__WEBPACK_IMPORTED_MODULE_147__["default"]),
22394
22601
  /* harmony export */ getLastElementOfArray: () => (/* reexport safe */ _Arrays_getLastElementOfArray__WEBPACK_IMPORTED_MODULE_9__["default"]),
22395
22602
  /* harmony export */ getMatchingWithFirstRegularExpressionCapturingGroup: () => (/* reexport safe */ _Strings_RegularExpressions_getMatchingWithFirstRegularExpressionCapturingGroup__WEBPACK_IMPORTED_MODULE_127__["default"]),
22396
22603
  /* harmony export */ getMonthNameByNumber: () => (/* reexport safe */ _DateTime_getMonthNameByNumber__WEBPACK_IMPORTED_MODULE_31__["default"]),
22397
22604
  /* harmony export */ getMonthNumberByName: () => (/* reexport safe */ _DateTime_getMonthNumberByName__WEBPACK_IMPORTED_MODULE_32__["default"]),
22398
22605
  /* harmony export */ getNextMonthNumber: () => (/* reexport safe */ _DateTime_getNextMonthNumber__WEBPACK_IMPORTED_MODULE_33__["default"]),
22399
22606
  /* harmony export */ getObjectPropertySafely: () => (/* reexport safe */ _Objects_getObjectPropertySafely__WEBPACK_IMPORTED_MODULE_99__["default"]),
22400
- /* harmony export */ getPositionsOfAllSubstringOccurrences: () => (/* reexport safe */ _Strings_getPositionsOfAllSubstringOccurrences__WEBPACK_IMPORTED_MODULE_147__["default"]),
22607
+ /* harmony export */ getPositionsOfAllSubstringOccurrences: () => (/* reexport safe */ _Strings_getPositionsOfAllSubstringOccurrences__WEBPACK_IMPORTED_MODULE_148__["default"]),
22401
22608
  /* harmony export */ getPreviousMonthNumber: () => (/* reexport safe */ _DateTime_getPreviousMonthNumber__WEBPACK_IMPORTED_MODULE_34__["default"]),
22402
22609
  /* harmony export */ getRandomArrayElement: () => (/* reexport safe */ _RandomValuesGenerators_getRandomArrayElement__WEBPACK_IMPORTED_MODULE_106__["default"]),
22403
22610
  /* harmony export */ getRandomBoolean: () => (/* reexport safe */ _RandomValuesGenerators_getRandomBoolean__WEBPACK_IMPORTED_MODULE_107__["default"]),
@@ -22407,76 +22614,76 @@ __webpack_require__.r(__webpack_exports__);
22407
22614
  /* harmony export */ getRandomString: () => (/* reexport safe */ _RandomValuesGenerators_getRandomString_getRandomString__WEBPACK_IMPORTED_MODULE_105__["default"]),
22408
22615
  /* harmony export */ getRandomSubarray: () => (/* reexport safe */ _RandomValuesGenerators_getRandomSubarray__WEBPACK_IMPORTED_MODULE_111__["default"]),
22409
22616
  /* harmony export */ getSpecificBooleanValueWithProbability: () => (/* reexport safe */ _RandomValuesGenerators_getSpecificBooleanValueWithProbability__WEBPACK_IMPORTED_MODULE_112__["default"]),
22410
- /* harmony export */ getURI_Fragment: () => (/* reexport safe */ _Strings_URI_getURI_Fragment__WEBPACK_IMPORTED_MODULE_136__["default"]),
22411
- /* harmony export */ getURI_PartWithoutFragment: () => (/* reexport safe */ _Strings_URI_getURI_PartWithoutFragment__WEBPACK_IMPORTED_MODULE_135__["default"]),
22617
+ /* harmony export */ getURI_Fragment: () => (/* reexport safe */ _Strings_URI_getURI_Fragment__WEBPACK_IMPORTED_MODULE_137__["default"]),
22618
+ /* harmony export */ getURI_PartWithoutFragment: () => (/* reexport safe */ _Strings_URI_getURI_PartWithoutFragment__WEBPACK_IMPORTED_MODULE_136__["default"]),
22412
22619
  /* harmony export */ getYearOfNextMonth: () => (/* reexport safe */ _DateTime_getYearOfNextMonth__WEBPACK_IMPORTED_MODULE_35__["default"]),
22413
22620
  /* harmony export */ getYearOfPreviousMonth: () => (/* reexport safe */ _DateTime_getYearOfPreviousMonth__WEBPACK_IMPORTED_MODULE_36__["default"]),
22414
- /* harmony export */ hasStringOnlySpecificCharacters: () => (/* reexport safe */ _Strings_hasStringOnlySpecificCharacters__WEBPACK_IMPORTED_MODULE_148__["default"]),
22621
+ /* harmony export */ hasStringOnlySpecificCharacters: () => (/* reexport safe */ _Strings_hasStringOnlySpecificCharacters__WEBPACK_IMPORTED_MODULE_149__["default"]),
22415
22622
  /* harmony export */ hasTimeCome: () => (/* reexport safe */ _DateTime_hasTimeCome__WEBPACK_IMPORTED_MODULE_37__["default"]),
22416
22623
  /* harmony export */ improperUsageErrorLocalization__english: () => (/* reexport safe */ _Errors_ImproperUsage_ImproperUsageErrorLocalization_english__WEBPACK_IMPORTED_MODULE_65__["default"]),
22417
22624
  /* harmony export */ incompatiblePropertiesInObjectTypeParameterErrorLocalization__english: () => (/* reexport safe */ _Errors_IncompatiblePropertiesInObjectTypeParameter_IncompatiblePropertiesInObjectTypeParameterErrorLocalization_english__WEBPACK_IMPORTED_MODULE_67__["default"]),
22418
- /* harmony export */ insertSubstring: () => (/* reexport safe */ _Strings_insertSubstring__WEBPACK_IMPORTED_MODULE_149__["default"]),
22419
- /* harmony export */ insertSubstringIf: () => (/* reexport safe */ _Strings_insertSubstringIf__WEBPACK_IMPORTED_MODULE_150__["default"]),
22625
+ /* harmony export */ insertSubstring: () => (/* reexport safe */ _Strings_insertSubstring__WEBPACK_IMPORTED_MODULE_150__["default"]),
22626
+ /* harmony export */ insertSubstringIf: () => (/* reexport safe */ _Strings_insertSubstringIf__WEBPACK_IMPORTED_MODULE_151__["default"]),
22420
22627
  /* harmony export */ interProcessInteractionFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_InterProcessInteractionFailed_InterProcessInteractionFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_69__["default"]),
22421
22628
  /* harmony export */ invalidConfigErrorLocalization__english: () => (/* reexport safe */ _Errors_InvalidConfig_InvalidConfigErrorLocalization_english__WEBPACK_IMPORTED_MODULE_71__["default"]),
22422
22629
  /* harmony export */ invalidExternalDataErrorLocalization__english: () => (/* reexport safe */ _Errors_InvalidExternalData_InvalidExternalDataErrorLocalization_english__WEBPACK_IMPORTED_MODULE_73__["default"]),
22423
22630
  /* harmony export */ invalidParameterValueErrorLocalization__english: () => (/* reexport safe */ _Errors_InvalidParameterValue_InvalidParameterValueErrorLocalization_english__WEBPACK_IMPORTED_MODULE_75__["default"]),
22424
- /* harmony export */ isArbitraryObject: () => (/* reexport safe */ _TypeGuards_Objects_isArbitraryObject__WEBPACK_IMPORTED_MODULE_185__["default"]),
22425
- /* harmony export */ isArrayOfCertainTypeElements: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfCertainTypeElements__WEBPACK_IMPORTED_MODULE_167__["default"]),
22426
- /* harmony export */ isArrayOfLength: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_168__["default"]),
22427
- /* harmony export */ isBoolean: () => (/* reexport safe */ _TypeGuards_isBoolean__WEBPACK_IMPORTED_MODULE_194__["default"]),
22428
- /* harmony export */ isDecimalFractionOfAnySign: () => (/* reexport safe */ _TypeGuards_Numbers_isDecimalFractionOfAnySign__WEBPACK_IMPORTED_MODULE_177__["default"]),
22429
- /* harmony export */ isEitherUndefinedOrNull: () => (/* reexport safe */ _TypeGuards_Nullables_isEitherUndefinedOrNull__WEBPACK_IMPORTED_MODULE_172__["default"]),
22430
- /* harmony export */ isElementOfEnumeration: () => (/* reexport safe */ _TypeGuards_isElementOfEnumeration__WEBPACK_IMPORTED_MODULE_195__["default"]),
22431
- /* harmony export */ isEmptyArray: () => (/* reexport safe */ _TypeGuards_Arrays_isEmptyArray__WEBPACK_IMPORTED_MODULE_169__["default"]),
22432
- /* harmony export */ isEmptyObject: () => (/* reexport safe */ _TypeGuards_Objects_isEmptyObject__WEBPACK_IMPORTED_MODULE_186__["default"]),
22433
- /* harmony export */ isEmptyString: () => (/* reexport safe */ _TypeGuards_Strings_isEmptyString__WEBPACK_IMPORTED_MODULE_190__["default"]),
22434
- /* harmony export */ isFunctionLike: () => (/* reexport safe */ _TypeGuards_isFunctionLike__WEBPACK_IMPORTED_MODULE_196__["default"]),
22435
- /* harmony export */ isIPv4AddressLiesInRange: () => (/* reexport safe */ _Strings_isIPv4AddressLiesInRange__WEBPACK_IMPORTED_MODULE_151__["default"]),
22436
- /* harmony export */ isNaturalNumber: () => (/* reexport safe */ _TypeGuards_Numbers_isNaturalNumber__WEBPACK_IMPORTED_MODULE_178__["default"]),
22437
- /* harmony export */ isNegativeDecimalFraction: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeDecimalFraction__WEBPACK_IMPORTED_MODULE_179__["default"]),
22438
- /* harmony export */ isNegativeInteger: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeInteger__WEBPACK_IMPORTED_MODULE_180__["default"]),
22439
- /* harmony export */ isNegativeIntegerOrZero: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeIntegerOrZero__WEBPACK_IMPORTED_MODULE_181__["default"]),
22440
- /* harmony export */ isNeitherUndefinedNorNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNeitherUndefinedNorNull__WEBPACK_IMPORTED_MODULE_171__["default"]),
22441
- /* harmony export */ isNonEmptyArbitraryObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonEmptyArbitraryObject__WEBPACK_IMPORTED_MODULE_187__["default"]),
22442
- /* harmony export */ isNonEmptyArray: () => (/* reexport safe */ _TypeGuards_Arrays_isNonEmptyArray__WEBPACK_IMPORTED_MODULE_170__["default"]),
22443
- /* harmony export */ isNonEmptyObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonEmptyObject__WEBPACK_IMPORTED_MODULE_188__["default"]),
22444
- /* harmony export */ isNonEmptyString: () => (/* reexport safe */ _TypeGuards_Strings_isNonEmptyString__WEBPACK_IMPORTED_MODULE_191__["default"]),
22445
- /* harmony export */ isNonNegativeInteger: () => (/* reexport safe */ _TypeGuards_Numbers_isNonNegativeInteger__WEBPACK_IMPORTED_MODULE_182__["default"]),
22446
- /* harmony export */ isNonNullObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonNullObject__WEBPACK_IMPORTED_MODULE_189__["default"]),
22447
- /* harmony export */ isNotNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNotNull__WEBPACK_IMPORTED_MODULE_173__["default"]),
22448
- /* harmony export */ isNotUndefined: () => (/* reexport safe */ _TypeGuards_Nullables_isNotUndefined__WEBPACK_IMPORTED_MODULE_174__["default"]),
22449
- /* harmony export */ isNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_175__["default"]),
22450
- /* harmony export */ isNumber: () => (/* reexport safe */ _TypeGuards_Numbers_isNumber__WEBPACK_IMPORTED_MODULE_183__["default"]),
22451
- /* harmony export */ isPositiveDecimalFraction: () => (/* reexport safe */ _TypeGuards_Numbers_isPositiveDecimalFraction__WEBPACK_IMPORTED_MODULE_184__["default"]),
22452
- /* harmony export */ isString: () => (/* reexport safe */ _TypeGuards_Strings_isString__WEBPACK_IMPORTED_MODULE_192__["default"]),
22453
- /* harmony export */ isStringOfLength: () => (/* reexport safe */ _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_193__["default"]),
22631
+ /* harmony export */ isArbitraryObject: () => (/* reexport safe */ _TypeGuards_Objects_isArbitraryObject__WEBPACK_IMPORTED_MODULE_186__["default"]),
22632
+ /* harmony export */ isArrayOfCertainTypeElements: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfCertainTypeElements__WEBPACK_IMPORTED_MODULE_168__["default"]),
22633
+ /* harmony export */ isArrayOfLength: () => (/* reexport safe */ _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_169__["default"]),
22634
+ /* harmony export */ isBoolean: () => (/* reexport safe */ _TypeGuards_isBoolean__WEBPACK_IMPORTED_MODULE_195__["default"]),
22635
+ /* harmony export */ isDecimalFractionOfAnySign: () => (/* reexport safe */ _TypeGuards_Numbers_isDecimalFractionOfAnySign__WEBPACK_IMPORTED_MODULE_178__["default"]),
22636
+ /* harmony export */ isEitherUndefinedOrNull: () => (/* reexport safe */ _TypeGuards_Nullables_isEitherUndefinedOrNull__WEBPACK_IMPORTED_MODULE_173__["default"]),
22637
+ /* harmony export */ isElementOfEnumeration: () => (/* reexport safe */ _TypeGuards_isElementOfEnumeration__WEBPACK_IMPORTED_MODULE_196__["default"]),
22638
+ /* harmony export */ isEmptyArray: () => (/* reexport safe */ _TypeGuards_Arrays_isEmptyArray__WEBPACK_IMPORTED_MODULE_170__["default"]),
22639
+ /* harmony export */ isEmptyObject: () => (/* reexport safe */ _TypeGuards_Objects_isEmptyObject__WEBPACK_IMPORTED_MODULE_187__["default"]),
22640
+ /* harmony export */ isEmptyString: () => (/* reexport safe */ _TypeGuards_Strings_isEmptyString__WEBPACK_IMPORTED_MODULE_191__["default"]),
22641
+ /* harmony export */ isFunctionLike: () => (/* reexport safe */ _TypeGuards_isFunctionLike__WEBPACK_IMPORTED_MODULE_197__["default"]),
22642
+ /* harmony export */ isIPv4AddressLiesInRange: () => (/* reexport safe */ _Strings_isIPv4AddressLiesInRange__WEBPACK_IMPORTED_MODULE_152__["default"]),
22643
+ /* harmony export */ isNaturalNumber: () => (/* reexport safe */ _TypeGuards_Numbers_isNaturalNumber__WEBPACK_IMPORTED_MODULE_179__["default"]),
22644
+ /* harmony export */ isNegativeDecimalFraction: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeDecimalFraction__WEBPACK_IMPORTED_MODULE_180__["default"]),
22645
+ /* harmony export */ isNegativeInteger: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeInteger__WEBPACK_IMPORTED_MODULE_181__["default"]),
22646
+ /* harmony export */ isNegativeIntegerOrZero: () => (/* reexport safe */ _TypeGuards_Numbers_isNegativeIntegerOrZero__WEBPACK_IMPORTED_MODULE_182__["default"]),
22647
+ /* harmony export */ isNeitherUndefinedNorNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNeitherUndefinedNorNull__WEBPACK_IMPORTED_MODULE_172__["default"]),
22648
+ /* harmony export */ isNonEmptyArbitraryObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonEmptyArbitraryObject__WEBPACK_IMPORTED_MODULE_188__["default"]),
22649
+ /* harmony export */ isNonEmptyArray: () => (/* reexport safe */ _TypeGuards_Arrays_isNonEmptyArray__WEBPACK_IMPORTED_MODULE_171__["default"]),
22650
+ /* harmony export */ isNonEmptyObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonEmptyObject__WEBPACK_IMPORTED_MODULE_189__["default"]),
22651
+ /* harmony export */ isNonEmptyString: () => (/* reexport safe */ _TypeGuards_Strings_isNonEmptyString__WEBPACK_IMPORTED_MODULE_192__["default"]),
22652
+ /* harmony export */ isNonNegativeInteger: () => (/* reexport safe */ _TypeGuards_Numbers_isNonNegativeInteger__WEBPACK_IMPORTED_MODULE_183__["default"]),
22653
+ /* harmony export */ isNonNullObject: () => (/* reexport safe */ _TypeGuards_Objects_isNonNullObject__WEBPACK_IMPORTED_MODULE_190__["default"]),
22654
+ /* harmony export */ isNotNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNotNull__WEBPACK_IMPORTED_MODULE_174__["default"]),
22655
+ /* harmony export */ isNotUndefined: () => (/* reexport safe */ _TypeGuards_Nullables_isNotUndefined__WEBPACK_IMPORTED_MODULE_175__["default"]),
22656
+ /* harmony export */ isNull: () => (/* reexport safe */ _TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_176__["default"]),
22657
+ /* harmony export */ isNumber: () => (/* reexport safe */ _TypeGuards_Numbers_isNumber__WEBPACK_IMPORTED_MODULE_184__["default"]),
22658
+ /* harmony export */ isPositiveDecimalFraction: () => (/* reexport safe */ _TypeGuards_Numbers_isPositiveDecimalFraction__WEBPACK_IMPORTED_MODULE_185__["default"]),
22659
+ /* harmony export */ isString: () => (/* reexport safe */ _TypeGuards_Strings_isString__WEBPACK_IMPORTED_MODULE_193__["default"]),
22660
+ /* harmony export */ isStringOfLength: () => (/* reexport safe */ _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_194__["default"]),
22454
22661
  /* harmony export */ isStringifiedNonNegativeIntegerOfRegularNotation: () => (/* reexport safe */ _Numbers_isStringifiedNonNegativeIntegerOfRegularNotation__WEBPACK_IMPORTED_MODULE_92__["default"]),
22455
- /* harmony export */ isUndefined: () => (/* reexport safe */ _TypeGuards_Nullables_isUndefined__WEBPACK_IMPORTED_MODULE_176__["default"]),
22662
+ /* harmony export */ isUndefined: () => (/* reexport safe */ _TypeGuards_Nullables_isUndefined__WEBPACK_IMPORTED_MODULE_177__["default"]),
22456
22663
  /* harmony export */ loggerLocalization__english: () => (/* reexport safe */ _Logging_LoggerLocalization_english__WEBPACK_IMPORTED_MODULE_86__["default"]),
22457
22664
  /* harmony export */ lowercaseLatinCharacters: () => (/* reexport safe */ _Strings_CharactersAssets_lowercaseLatinCharacters__WEBPACK_IMPORTED_MODULE_122__["default"]),
22458
22665
  /* harmony export */ millisecondsToSeconds: () => (/* reexport safe */ _DateTime_millisecondsToSeconds__WEBPACK_IMPORTED_MODULE_38__["default"]),
22459
22666
  /* harmony export */ moduleDynamicLoadingFailedErrorLocalization__english: () => (/* reexport safe */ _Errors_ModuleDynamicLoadingFailed_ModuleDynamicLoadingFailedErrorLocalization_english__WEBPACK_IMPORTED_MODULE_77__["default"]),
22460
- /* harmony export */ nullToEmptyString: () => (/* reexport safe */ _ValueTransformers_nullToEmptyString__WEBPACK_IMPORTED_MODULE_198__["default"]),
22461
- /* harmony export */ nullToUndefined: () => (/* reexport safe */ _ValueTransformers_nullToUndefined__WEBPACK_IMPORTED_MODULE_199__["default"]),
22462
- /* harmony export */ nullToZero: () => (/* reexport safe */ _ValueTransformers_nullToZero__WEBPACK_IMPORTED_MODULE_200__["default"]),
22463
- /* harmony export */ removeAllFileNameExtensions: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_removeAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_133__["default"]),
22464
- /* harmony export */ removeAllSpecifiedCharacters: () => (/* reexport safe */ _Strings_removeAllSpecifiedCharacters__WEBPACK_IMPORTED_MODULE_152__["default"]),
22667
+ /* harmony export */ nullToEmptyString: () => (/* reexport safe */ _ValueTransformers_nullToEmptyString__WEBPACK_IMPORTED_MODULE_199__["default"]),
22668
+ /* harmony export */ nullToUndefined: () => (/* reexport safe */ _ValueTransformers_nullToUndefined__WEBPACK_IMPORTED_MODULE_200__["default"]),
22669
+ /* harmony export */ nullToZero: () => (/* reexport safe */ _ValueTransformers_nullToZero__WEBPACK_IMPORTED_MODULE_201__["default"]),
22670
+ /* harmony export */ removeAllFileNameExtensions: () => (/* reexport safe */ _Strings_URI_FilesAndDirectories_removeAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_134__["default"]),
22671
+ /* harmony export */ removeAllSpecifiedCharacters: () => (/* reexport safe */ _Strings_removeAllSpecifiedCharacters__WEBPACK_IMPORTED_MODULE_153__["default"]),
22465
22672
  /* harmony export */ removeArrayElementsByIndexes: () => (/* reexport safe */ _Arrays_removeArrayElementsByIndexes__WEBPACK_IMPORTED_MODULE_10__["default"]),
22466
22673
  /* harmony export */ removeArrayElementsByPredicates: () => (/* reexport safe */ _Arrays_removeArrayElementsByPredicates__WEBPACK_IMPORTED_MODULE_11__["default"]),
22467
- /* harmony export */ removeLastCharacter: () => (/* reexport safe */ _Strings_removeLastCharacter__WEBPACK_IMPORTED_MODULE_153__["default"]),
22468
- /* harmony export */ removeNonDigitsCharacters: () => (/* reexport safe */ _Strings_removeNonDigitsCharacters__WEBPACK_IMPORTED_MODULE_154__["default"]),
22469
- /* harmony export */ removeNthCharacter: () => (/* reexport safe */ _Strings_removeNthCharacter__WEBPACK_IMPORTED_MODULE_155__["default"]),
22674
+ /* harmony export */ removeLastCharacter: () => (/* reexport safe */ _Strings_removeLastCharacter__WEBPACK_IMPORTED_MODULE_154__["default"]),
22675
+ /* harmony export */ removeNonDigitsCharacters: () => (/* reexport safe */ _Strings_removeNonDigitsCharacters__WEBPACK_IMPORTED_MODULE_155__["default"]),
22676
+ /* harmony export */ removeNthCharacter: () => (/* reexport safe */ _Strings_removeNthCharacter__WEBPACK_IMPORTED_MODULE_156__["default"]),
22470
22677
  /* harmony export */ removeRandomArrayElement: () => (/* reexport safe */ _RandomValuesGenerators_removeRandomArrayElement__WEBPACK_IMPORTED_MODULE_113__["default"]),
22471
- /* harmony export */ removeSpecificCharacterFromCertainPosition: () => (/* reexport safe */ _Strings_removeSpecificCharacterFromCertainPosition__WEBPACK_IMPORTED_MODULE_156__["default"]),
22472
- /* harmony export */ removeSpecificSegmentsFromURI_Path: () => (/* reexport safe */ _Strings_URI_removeSpecificSegmentsFromURI_Path__WEBPACK_IMPORTED_MODULE_137__["default"]),
22473
- /* harmony export */ replace2OrMoreSpacesTo1: () => (/* reexport safe */ _Strings_replace2OrMoreSpacesTo1__WEBPACK_IMPORTED_MODULE_157__["default"]),
22678
+ /* harmony export */ removeSpecificCharacterFromCertainPosition: () => (/* reexport safe */ _Strings_removeSpecificCharacterFromCertainPosition__WEBPACK_IMPORTED_MODULE_157__["default"]),
22679
+ /* harmony export */ removeSpecificSegmentsFromURI_Path: () => (/* reexport safe */ _Strings_URI_removeSpecificSegmentsFromURI_Path__WEBPACK_IMPORTED_MODULE_138__["default"]),
22680
+ /* harmony export */ replace2OrMoreSpacesTo1: () => (/* reexport safe */ _Strings_replace2OrMoreSpacesTo1__WEBPACK_IMPORTED_MODULE_158__["default"]),
22474
22681
  /* harmony export */ replaceArrayElementsByIndexesImmutably: () => (/* reexport safe */ _Arrays_replaceArrayElementsByIndexesImmutably__WEBPACK_IMPORTED_MODULE_12__["default"]),
22475
22682
  /* harmony export */ replaceArrayElementsByPredicates: () => (/* reexport safe */ _Arrays_replaceArrayElementsByPredicates__WEBPACK_IMPORTED_MODULE_13__["default"]),
22476
- /* harmony export */ replaceBrHTML_TagToNewLineEscapeSequence: () => (/* reexport safe */ _Strings_replaceBrHTML_TagToNewLineEscapeSequence__WEBPACK_IMPORTED_MODULE_158__["default"]),
22477
- /* harmony export */ replaceDoubleBackslashesWithForwardSlashes: () => (/* reexport safe */ _Strings_replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_159__["default"]),
22683
+ /* harmony export */ replaceBrHTML_TagToNewLineEscapeSequence: () => (/* reexport safe */ _Strings_replaceBrHTML_TagToNewLineEscapeSequence__WEBPACK_IMPORTED_MODULE_159__["default"]),
22684
+ /* harmony export */ replaceDoubleBackslashesWithForwardSlashes: () => (/* reexport safe */ _Strings_replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_160__["default"]),
22478
22685
  /* harmony export */ replaceMatchesWithRegularExpressionToDynamicValue: () => (/* reexport safe */ _Strings_RegularExpressions_replaceMatchesWithRegularExpressionToDynamicValue__WEBPACK_IMPORTED_MODULE_129__["default"]),
22479
- /* harmony export */ reverseString: () => (/* reexport safe */ _Strings_reverseString__WEBPACK_IMPORTED_MODULE_160__["default"]),
22686
+ /* harmony export */ reverseString: () => (/* reexport safe */ _Strings_reverseString__WEBPACK_IMPORTED_MODULE_161__["default"]),
22480
22687
  /* harmony export */ roundDownToSpecificIntegerPlaceValue: () => (/* reexport safe */ _Numbers_roundDownToSpecificIntegerPlaceValue__WEBPACK_IMPORTED_MODULE_93__["default"]),
22481
22688
  /* harmony export */ roundToSpecificNearestIntegerPlaceValue: () => (/* reexport safe */ _Numbers_roundToSpecificNearestIntegerPlaceValue__WEBPACK_IMPORTED_MODULE_94__["default"]),
22482
22689
  /* harmony export */ roundToSpecifiedNearestDecimalPlaceValue: () => (/* reexport safe */ _Numbers_roundToSpecifiedNearestDecimalPlaceValue__WEBPACK_IMPORTED_MODULE_95__["default"]),
@@ -22485,19 +22692,19 @@ __webpack_require__.r(__webpack_exports__);
22485
22692
  /* harmony export */ separateEach3DigitsGroupWithComma: () => (/* reexport safe */ _Numbers_separateEach3DigitsGroupWithComma__WEBPACK_IMPORTED_MODULE_97__["default"]),
22486
22693
  /* harmony export */ separateEach4DigitsGroupWithComma: () => (/* reexport safe */ _Numbers_separateEach4DigitsGroupWithComma__WEBPACK_IMPORTED_MODULE_98__["default"]),
22487
22694
  /* harmony export */ serializeURI_QueryParameters: () => (/* reexport safe */ _AJAX_serializeURI_QueryParameters__WEBPACK_IMPORTED_MODULE_2__["default"]),
22488
- /* harmony export */ splitString: () => (/* reexport safe */ _Strings_splitString__WEBPACK_IMPORTED_MODULE_161__["default"]),
22695
+ /* harmony export */ splitString: () => (/* reexport safe */ _Strings_splitString__WEBPACK_IMPORTED_MODULE_162__["default"]),
22489
22696
  /* harmony export */ stringifiedDigits: () => (/* reexport safe */ _Strings_CharactersAssets_stringifiedDigits__WEBPACK_IMPORTED_MODULE_125__["default"]),
22490
- /* harmony export */ stringifyAndFormatArbitraryValue: () => (/* reexport safe */ _Strings_stringifyAndFormatArbitraryValue__WEBPACK_IMPORTED_MODULE_162__["default"]),
22697
+ /* harmony export */ stringifyAndFormatArbitraryValue: () => (/* reexport safe */ _Strings_stringifyAndFormatArbitraryValue__WEBPACK_IMPORTED_MODULE_163__["default"]),
22491
22698
  /* harmony export */ substituteWhenNull: () => (/* reexport safe */ _DefaultValueSubstituters_substituteWhenNull__WEBPACK_IMPORTED_MODULE_42__["default"]),
22492
22699
  /* harmony export */ substituteWhenUndefined: () => (/* reexport safe */ _DefaultValueSubstituters_substituteWhenUndefined__WEBPACK_IMPORTED_MODULE_43__["default"]),
22493
- /* harmony export */ toLowerCamelCase: () => (/* reexport safe */ _Strings_toLowerCamelCase__WEBPACK_IMPORTED_MODULE_163__["default"]),
22494
- /* harmony export */ toScreamingSnakeCase: () => (/* reexport safe */ _Strings_toScreamingSnakeCase__WEBPACK_IMPORTED_MODULE_164__["default"]),
22495
- /* harmony export */ toUpperCamelCase: () => (/* reexport safe */ _Strings_toUpperCamelCase__WEBPACK_IMPORTED_MODULE_165__["default"]),
22496
- /* harmony export */ trimSpaces: () => (/* reexport safe */ _Strings_trimSpaces__WEBPACK_IMPORTED_MODULE_166__["default"]),
22700
+ /* harmony export */ toLowerCamelCase: () => (/* reexport safe */ _Strings_toLowerCamelCase__WEBPACK_IMPORTED_MODULE_164__["default"]),
22701
+ /* harmony export */ toScreamingSnakeCase: () => (/* reexport safe */ _Strings_toScreamingSnakeCase__WEBPACK_IMPORTED_MODULE_165__["default"]),
22702
+ /* harmony export */ toUpperCamelCase: () => (/* reexport safe */ _Strings_toUpperCamelCase__WEBPACK_IMPORTED_MODULE_166__["default"]),
22703
+ /* harmony export */ trimSpaces: () => (/* reexport safe */ _Strings_trimSpaces__WEBPACK_IMPORTED_MODULE_167__["default"]),
22497
22704
  /* harmony export */ twoDimensionalizeArray: () => (/* reexport safe */ _Arrays_twoDimensionalizeArray__WEBPACK_IMPORTED_MODULE_14__["default"]),
22498
- /* harmony export */ undefinedToEmptyArray: () => (/* reexport safe */ _ValueTransformers_undefinedToEmptyArray__WEBPACK_IMPORTED_MODULE_201__["default"]),
22499
- /* harmony export */ undefinedToEmptyString: () => (/* reexport safe */ _ValueTransformers_undefinedToEmptyString__WEBPACK_IMPORTED_MODULE_202__["default"]),
22500
- /* harmony export */ undefinedToNull: () => (/* reexport safe */ _ValueTransformers_undefinedToNull__WEBPACK_IMPORTED_MODULE_203__["default"]),
22705
+ /* harmony export */ undefinedToEmptyArray: () => (/* reexport safe */ _ValueTransformers_undefinedToEmptyArray__WEBPACK_IMPORTED_MODULE_202__["default"]),
22706
+ /* harmony export */ undefinedToEmptyString: () => (/* reexport safe */ _ValueTransformers_undefinedToEmptyString__WEBPACK_IMPORTED_MODULE_203__["default"]),
22707
+ /* harmony export */ undefinedToNull: () => (/* reexport safe */ _ValueTransformers_undefinedToNull__WEBPACK_IMPORTED_MODULE_204__["default"]),
22501
22708
  /* harmony export */ unexpectedEventErrorLocalization__english: () => (/* reexport safe */ _Errors_UnexpectedEvent_UnexpectedEventErrorLocalization_english__WEBPACK_IMPORTED_MODULE_79__["default"]),
22502
22709
  /* harmony export */ unsupportedScenarioErrorLocalization__english: () => (/* reexport safe */ _Errors_UnsupportedScenario_UnsupportedScenarioErrorLocalization_english__WEBPACK_IMPORTED_MODULE_81__["default"]),
22503
22710
  /* harmony export */ uppercaseLatinCharacters: () => (/* reexport safe */ _Strings_CharactersAssets_uppercaseLatinCharacters__WEBPACK_IMPORTED_MODULE_126__["default"])
@@ -22634,78 +22841,79 @@ __webpack_require__.r(__webpack_exports__);
22634
22841
  /* harmony import */ var _Strings_RegularExpressions_replaceMatchesWithRegularExpressionToDynamicValue__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./Strings/RegularExpressions/replaceMatchesWithRegularExpressionToDynamicValue */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/RegularExpressions/replaceMatchesWithRegularExpressionToDynamicValue.js");
22635
22842
  /* harmony import */ var _Strings_URI_FilesAndDirectories_appendLastFileNameExtension__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/appendLastFileNameExtension */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/appendLastFileNameExtension.js");
22636
22843
  /* harmony import */ var _Strings_URI_FilesAndDirectories_extractAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/extractAllFileNameExtensions */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractAllFileNameExtensions.js");
22637
- /* harmony import */ var _Strings_URI_FilesAndDirectories_extractLastExtensionOfFileName__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/extractLastExtensionOfFileName */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractLastExtensionOfFileName.js");
22638
- /* harmony import */ var _Strings_URI_FilesAndDirectories_removeAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/removeAllFileNameExtensions */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/removeAllFileNameExtensions.js");
22639
- /* harmony import */ var _Strings_URI_appendFragmentToURI__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./Strings/URI/appendFragmentToURI */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/appendFragmentToURI.js");
22640
- /* harmony import */ var _Strings_URI_getURI_PartWithoutFragment__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./Strings/URI/getURI_PartWithoutFragment */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/getURI_PartWithoutFragment.js");
22641
- /* harmony import */ var _Strings_URI_getURI_Fragment__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./Strings/URI/getURI_Fragment */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/getURI_Fragment.js");
22642
- /* harmony import */ var _Strings_URI_removeSpecificSegmentsFromURI_Path__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./Strings/URI/removeSpecificSegmentsFromURI_Path */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/removeSpecificSegmentsFromURI_Path.js");
22643
- /* harmony import */ var _Strings_URI_explodeURI_PathToSegments__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./Strings/URI/explodeURI_PathToSegments */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/explodeURI_PathToSegments.js");
22644
- /* harmony import */ var _Strings_appendCharacterIfItDoesNotPresentInLastPosition__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./Strings/appendCharacterIfItDoesNotPresentInLastPosition */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/appendCharacterIfItDoesNotPresentInLastPosition.js");
22645
- /* harmony import */ var _Strings_areStringifiedDigitsOnly__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./Strings/areStringifiedDigitsOnly */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/areStringifiedDigitsOnly.js");
22646
- /* harmony import */ var _Strings_capitalizeFirstCharacter__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./Strings/capitalizeFirstCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/capitalizeFirstCharacter.js");
22647
- /* harmony import */ var _Strings_cropString__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./Strings/cropString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/cropString.js");
22648
- /* harmony import */ var _Strings_EmailAddress__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./Strings/EmailAddress */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/EmailAddress.js");
22649
- /* harmony import */ var _Strings_explodeCasedPhraseToWords__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./Strings/explodeCasedPhraseToWords */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/explodeCasedPhraseToWords.js");
22650
- /* harmony import */ var _Strings_getEnglishAbbreviatedOrdinalNumber__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./Strings/getEnglishAbbreviatedOrdinalNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getEnglishAbbreviatedOrdinalNumber.js");
22651
- /* harmony import */ var _Strings_getLastCharacter__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./Strings/getLastCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getLastCharacter.js");
22652
- /* harmony import */ var _Strings_getPositionsOfAllSubstringOccurrences__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./Strings/getPositionsOfAllSubstringOccurrences */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getPositionsOfAllSubstringOccurrences.js");
22653
- /* harmony import */ var _Strings_hasStringOnlySpecificCharacters__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./Strings/hasStringOnlySpecificCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/hasStringOnlySpecificCharacters.js");
22654
- /* harmony import */ var _Strings_insertSubstring__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./Strings/insertSubstring */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/insertSubstring.js");
22655
- /* harmony import */ var _Strings_insertSubstringIf__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./Strings/insertSubstringIf */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/insertSubstringIf.js");
22656
- /* harmony import */ var _Strings_isIPv4AddressLiesInRange__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./Strings/isIPv4AddressLiesInRange */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/isIPv4AddressLiesInRange.js");
22657
- /* harmony import */ var _Strings_removeAllSpecifiedCharacters__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./Strings/removeAllSpecifiedCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeAllSpecifiedCharacters.js");
22658
- /* harmony import */ var _Strings_removeLastCharacter__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./Strings/removeLastCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeLastCharacter.js");
22659
- /* harmony import */ var _Strings_removeNonDigitsCharacters__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./Strings/removeNonDigitsCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeNonDigitsCharacters.js");
22660
- /* harmony import */ var _Strings_removeNthCharacter__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./Strings/removeNthCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeNthCharacter.js");
22661
- /* harmony import */ var _Strings_removeSpecificCharacterFromCertainPosition__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./Strings/removeSpecificCharacterFromCertainPosition */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeSpecificCharacterFromCertainPosition.js");
22662
- /* harmony import */ var _Strings_replace2OrMoreSpacesTo1__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./Strings/replace2OrMoreSpacesTo1 */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replace2OrMoreSpacesTo1.js");
22663
- /* harmony import */ var _Strings_replaceBrHTML_TagToNewLineEscapeSequence__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./Strings/replaceBrHTML_TagToNewLineEscapeSequence */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replaceBrHTML_TagToNewLineEscapeSequence.js");
22664
- /* harmony import */ var _Strings_replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./Strings/replaceDoubleBackslashesWithForwardSlashes */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replaceDoubleBackslashesWithForwardSlashes.js");
22665
- /* harmony import */ var _Strings_reverseString__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./Strings/reverseString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/reverseString.js");
22666
- /* harmony import */ var _Strings_splitString__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./Strings/splitString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/splitString.js");
22667
- /* harmony import */ var _Strings_stringifyAndFormatArbitraryValue__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./Strings/stringifyAndFormatArbitraryValue */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/stringifyAndFormatArbitraryValue.js");
22668
- /* harmony import */ var _Strings_toLowerCamelCase__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(/*! ./Strings/toLowerCamelCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toLowerCamelCase.js");
22669
- /* harmony import */ var _Strings_toScreamingSnakeCase__WEBPACK_IMPORTED_MODULE_164__ = __webpack_require__(/*! ./Strings/toScreamingSnakeCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toScreamingSnakeCase.js");
22670
- /* harmony import */ var _Strings_toUpperCamelCase__WEBPACK_IMPORTED_MODULE_165__ = __webpack_require__(/*! ./Strings/toUpperCamelCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toUpperCamelCase.js");
22671
- /* harmony import */ var _Strings_trimSpaces__WEBPACK_IMPORTED_MODULE_166__ = __webpack_require__(/*! ./Strings/trimSpaces */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/trimSpaces.js");
22672
- /* harmony import */ var _TypeGuards_Arrays_isArrayOfCertainTypeElements__WEBPACK_IMPORTED_MODULE_167__ = __webpack_require__(/*! ./TypeGuards/Arrays/isArrayOfCertainTypeElements */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isArrayOfCertainTypeElements.js");
22673
- /* harmony import */ var _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_168__ = __webpack_require__(/*! ./TypeGuards/Arrays/isArrayOfLength */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isArrayOfLength.js");
22674
- /* harmony import */ var _TypeGuards_Arrays_isEmptyArray__WEBPACK_IMPORTED_MODULE_169__ = __webpack_require__(/*! ./TypeGuards/Arrays/isEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isEmptyArray.js");
22675
- /* harmony import */ var _TypeGuards_Arrays_isNonEmptyArray__WEBPACK_IMPORTED_MODULE_170__ = __webpack_require__(/*! ./TypeGuards/Arrays/isNonEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isNonEmptyArray.js");
22676
- /* harmony import */ var _TypeGuards_Nullables_isNeitherUndefinedNorNull__WEBPACK_IMPORTED_MODULE_171__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNeitherUndefinedNorNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNeitherUndefinedNorNull.js");
22677
- /* harmony import */ var _TypeGuards_Nullables_isEitherUndefinedOrNull__WEBPACK_IMPORTED_MODULE_172__ = __webpack_require__(/*! ./TypeGuards/Nullables/isEitherUndefinedOrNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isEitherUndefinedOrNull.js");
22678
- /* harmony import */ var _TypeGuards_Nullables_isNotNull__WEBPACK_IMPORTED_MODULE_173__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNotNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNotNull.js");
22679
- /* harmony import */ var _TypeGuards_Nullables_isNotUndefined__WEBPACK_IMPORTED_MODULE_174__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNotUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNotUndefined.js");
22680
- /* harmony import */ var _TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_175__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNull.js");
22681
- /* harmony import */ var _TypeGuards_Nullables_isUndefined__WEBPACK_IMPORTED_MODULE_176__ = __webpack_require__(/*! ./TypeGuards/Nullables/isUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isUndefined.js");
22682
- /* harmony import */ var _TypeGuards_Numbers_isDecimalFractionOfAnySign__WEBPACK_IMPORTED_MODULE_177__ = __webpack_require__(/*! ./TypeGuards/Numbers/isDecimalFractionOfAnySign */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isDecimalFractionOfAnySign.js");
22683
- /* harmony import */ var _TypeGuards_Numbers_isNaturalNumber__WEBPACK_IMPORTED_MODULE_178__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNaturalNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNaturalNumber.js");
22684
- /* harmony import */ var _TypeGuards_Numbers_isNegativeDecimalFraction__WEBPACK_IMPORTED_MODULE_179__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeDecimalFraction */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeDecimalFraction.js");
22685
- /* harmony import */ var _TypeGuards_Numbers_isNegativeInteger__WEBPACK_IMPORTED_MODULE_180__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeInteger */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeInteger.js");
22686
- /* harmony import */ var _TypeGuards_Numbers_isNegativeIntegerOrZero__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeIntegerOrZero */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeIntegerOrZero.js");
22687
- /* harmony import */ var _TypeGuards_Numbers_isNonNegativeInteger__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNonNegativeInteger */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNonNegativeInteger.js");
22688
- /* harmony import */ var _TypeGuards_Numbers_isNumber__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNumber.js");
22689
- /* harmony import */ var _TypeGuards_Numbers_isPositiveDecimalFraction__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(/*! ./TypeGuards/Numbers/isPositiveDecimalFraction */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isPositiveDecimalFraction.js");
22690
- /* harmony import */ var _TypeGuards_Objects_isArbitraryObject__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(/*! ./TypeGuards/Objects/isArbitraryObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isArbitraryObject.js");
22691
- /* harmony import */ var _TypeGuards_Objects_isEmptyObject__WEBPACK_IMPORTED_MODULE_186__ = __webpack_require__(/*! ./TypeGuards/Objects/isEmptyObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isEmptyObject.js");
22692
- /* harmony import */ var _TypeGuards_Objects_isNonEmptyArbitraryObject__WEBPACK_IMPORTED_MODULE_187__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonEmptyArbitraryObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonEmptyArbitraryObject.js");
22693
- /* harmony import */ var _TypeGuards_Objects_isNonEmptyObject__WEBPACK_IMPORTED_MODULE_188__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonEmptyObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonEmptyObject.js");
22694
- /* harmony import */ var _TypeGuards_Objects_isNonNullObject__WEBPACK_IMPORTED_MODULE_189__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonNullObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonNullObject.js");
22695
- /* harmony import */ var _TypeGuards_Strings_isEmptyString__WEBPACK_IMPORTED_MODULE_190__ = __webpack_require__(/*! ./TypeGuards/Strings/isEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isEmptyString.js");
22696
- /* harmony import */ var _TypeGuards_Strings_isNonEmptyString__WEBPACK_IMPORTED_MODULE_191__ = __webpack_require__(/*! ./TypeGuards/Strings/isNonEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isNonEmptyString.js");
22697
- /* harmony import */ var _TypeGuards_Strings_isString__WEBPACK_IMPORTED_MODULE_192__ = __webpack_require__(/*! ./TypeGuards/Strings/isString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isString.js");
22698
- /* harmony import */ var _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_193__ = __webpack_require__(/*! ./TypeGuards/Strings/isStringOfLength */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isStringOfLength.js");
22699
- /* harmony import */ var _TypeGuards_isBoolean__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(/*! ./TypeGuards/isBoolean */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isBoolean.js");
22700
- /* harmony import */ var _TypeGuards_isElementOfEnumeration__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(/*! ./TypeGuards/isElementOfEnumeration */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isElementOfEnumeration.js");
22701
- /* harmony import */ var _TypeGuards_isFunctionLike__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(/*! ./TypeGuards/isFunctionLike */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isFunctionLike.js");
22702
- /* harmony import */ var _ValueTransformers_emptyStringToNull__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(/*! ./ValueTransformers/emptyStringToNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/emptyStringToNull.js");
22703
- /* harmony import */ var _ValueTransformers_nullToEmptyString__WEBPACK_IMPORTED_MODULE_198__ = __webpack_require__(/*! ./ValueTransformers/nullToEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToEmptyString.js");
22704
- /* harmony import */ var _ValueTransformers_nullToUndefined__WEBPACK_IMPORTED_MODULE_199__ = __webpack_require__(/*! ./ValueTransformers/nullToUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToUndefined.js");
22705
- /* harmony import */ var _ValueTransformers_nullToZero__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(/*! ./ValueTransformers/nullToZero */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToZero.js");
22706
- /* harmony import */ var _ValueTransformers_undefinedToEmptyArray__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(/*! ./ValueTransformers/undefinedToEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToEmptyArray.js");
22707
- /* harmony import */ var _ValueTransformers_undefinedToEmptyString__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(/*! ./ValueTransformers/undefinedToEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToEmptyString.js");
22708
- /* harmony import */ var _ValueTransformers_undefinedToNull__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(/*! ./ValueTransformers/undefinedToNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToNull.js");
22844
+ /* harmony import */ var _Strings_URI_FilesAndDirectories_extractFileNameWithAllExtensionsFromPath__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/extractFileNameWithAllExtensionsFromPath */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractFileNameWithAllExtensionsFromPath.js");
22845
+ /* harmony import */ var _Strings_URI_FilesAndDirectories_extractLastExtensionOfFileName__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/extractLastExtensionOfFileName */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/extractLastExtensionOfFileName.js");
22846
+ /* harmony import */ var _Strings_URI_FilesAndDirectories_removeAllFileNameExtensions__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./Strings/URI/FilesAndDirectories/removeAllFileNameExtensions */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/FilesAndDirectories/removeAllFileNameExtensions.js");
22847
+ /* harmony import */ var _Strings_URI_appendFragmentToURI__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./Strings/URI/appendFragmentToURI */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/appendFragmentToURI.js");
22848
+ /* harmony import */ var _Strings_URI_getURI_PartWithoutFragment__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./Strings/URI/getURI_PartWithoutFragment */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/getURI_PartWithoutFragment.js");
22849
+ /* harmony import */ var _Strings_URI_getURI_Fragment__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./Strings/URI/getURI_Fragment */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/getURI_Fragment.js");
22850
+ /* harmony import */ var _Strings_URI_removeSpecificSegmentsFromURI_Path__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./Strings/URI/removeSpecificSegmentsFromURI_Path */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/removeSpecificSegmentsFromURI_Path.js");
22851
+ /* harmony import */ var _Strings_URI_explodeURI_PathToSegments__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./Strings/URI/explodeURI_PathToSegments */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/URI/explodeURI_PathToSegments.js");
22852
+ /* harmony import */ var _Strings_appendCharacterIfItDoesNotPresentInLastPosition__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./Strings/appendCharacterIfItDoesNotPresentInLastPosition */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/appendCharacterIfItDoesNotPresentInLastPosition.js");
22853
+ /* harmony import */ var _Strings_areStringifiedDigitsOnly__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./Strings/areStringifiedDigitsOnly */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/areStringifiedDigitsOnly.js");
22854
+ /* harmony import */ var _Strings_capitalizeFirstCharacter__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./Strings/capitalizeFirstCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/capitalizeFirstCharacter.js");
22855
+ /* harmony import */ var _Strings_cropString__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./Strings/cropString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/cropString.js");
22856
+ /* harmony import */ var _Strings_EmailAddress__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./Strings/EmailAddress */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/EmailAddress.js");
22857
+ /* harmony import */ var _Strings_explodeCasedPhraseToWords__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./Strings/explodeCasedPhraseToWords */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/explodeCasedPhraseToWords.js");
22858
+ /* harmony import */ var _Strings_getEnglishAbbreviatedOrdinalNumber__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./Strings/getEnglishAbbreviatedOrdinalNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getEnglishAbbreviatedOrdinalNumber.js");
22859
+ /* harmony import */ var _Strings_getLastCharacter__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./Strings/getLastCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getLastCharacter.js");
22860
+ /* harmony import */ var _Strings_getPositionsOfAllSubstringOccurrences__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./Strings/getPositionsOfAllSubstringOccurrences */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/getPositionsOfAllSubstringOccurrences.js");
22861
+ /* harmony import */ var _Strings_hasStringOnlySpecificCharacters__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./Strings/hasStringOnlySpecificCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/hasStringOnlySpecificCharacters.js");
22862
+ /* harmony import */ var _Strings_insertSubstring__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./Strings/insertSubstring */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/insertSubstring.js");
22863
+ /* harmony import */ var _Strings_insertSubstringIf__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./Strings/insertSubstringIf */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/insertSubstringIf.js");
22864
+ /* harmony import */ var _Strings_isIPv4AddressLiesInRange__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./Strings/isIPv4AddressLiesInRange */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/isIPv4AddressLiesInRange.js");
22865
+ /* harmony import */ var _Strings_removeAllSpecifiedCharacters__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./Strings/removeAllSpecifiedCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeAllSpecifiedCharacters.js");
22866
+ /* harmony import */ var _Strings_removeLastCharacter__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./Strings/removeLastCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeLastCharacter.js");
22867
+ /* harmony import */ var _Strings_removeNonDigitsCharacters__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./Strings/removeNonDigitsCharacters */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeNonDigitsCharacters.js");
22868
+ /* harmony import */ var _Strings_removeNthCharacter__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./Strings/removeNthCharacter */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeNthCharacter.js");
22869
+ /* harmony import */ var _Strings_removeSpecificCharacterFromCertainPosition__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./Strings/removeSpecificCharacterFromCertainPosition */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/removeSpecificCharacterFromCertainPosition.js");
22870
+ /* harmony import */ var _Strings_replace2OrMoreSpacesTo1__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./Strings/replace2OrMoreSpacesTo1 */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replace2OrMoreSpacesTo1.js");
22871
+ /* harmony import */ var _Strings_replaceBrHTML_TagToNewLineEscapeSequence__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./Strings/replaceBrHTML_TagToNewLineEscapeSequence */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replaceBrHTML_TagToNewLineEscapeSequence.js");
22872
+ /* harmony import */ var _Strings_replaceDoubleBackslashesWithForwardSlashes__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./Strings/replaceDoubleBackslashesWithForwardSlashes */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/replaceDoubleBackslashesWithForwardSlashes.js");
22873
+ /* harmony import */ var _Strings_reverseString__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./Strings/reverseString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/reverseString.js");
22874
+ /* harmony import */ var _Strings_splitString__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./Strings/splitString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/splitString.js");
22875
+ /* harmony import */ var _Strings_stringifyAndFormatArbitraryValue__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(/*! ./Strings/stringifyAndFormatArbitraryValue */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/stringifyAndFormatArbitraryValue.js");
22876
+ /* harmony import */ var _Strings_toLowerCamelCase__WEBPACK_IMPORTED_MODULE_164__ = __webpack_require__(/*! ./Strings/toLowerCamelCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toLowerCamelCase.js");
22877
+ /* harmony import */ var _Strings_toScreamingSnakeCase__WEBPACK_IMPORTED_MODULE_165__ = __webpack_require__(/*! ./Strings/toScreamingSnakeCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toScreamingSnakeCase.js");
22878
+ /* harmony import */ var _Strings_toUpperCamelCase__WEBPACK_IMPORTED_MODULE_166__ = __webpack_require__(/*! ./Strings/toUpperCamelCase */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/toUpperCamelCase.js");
22879
+ /* harmony import */ var _Strings_trimSpaces__WEBPACK_IMPORTED_MODULE_167__ = __webpack_require__(/*! ./Strings/trimSpaces */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/Strings/trimSpaces.js");
22880
+ /* harmony import */ var _TypeGuards_Arrays_isArrayOfCertainTypeElements__WEBPACK_IMPORTED_MODULE_168__ = __webpack_require__(/*! ./TypeGuards/Arrays/isArrayOfCertainTypeElements */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isArrayOfCertainTypeElements.js");
22881
+ /* harmony import */ var _TypeGuards_Arrays_isArrayOfLength__WEBPACK_IMPORTED_MODULE_169__ = __webpack_require__(/*! ./TypeGuards/Arrays/isArrayOfLength */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isArrayOfLength.js");
22882
+ /* harmony import */ var _TypeGuards_Arrays_isEmptyArray__WEBPACK_IMPORTED_MODULE_170__ = __webpack_require__(/*! ./TypeGuards/Arrays/isEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isEmptyArray.js");
22883
+ /* harmony import */ var _TypeGuards_Arrays_isNonEmptyArray__WEBPACK_IMPORTED_MODULE_171__ = __webpack_require__(/*! ./TypeGuards/Arrays/isNonEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Arrays/isNonEmptyArray.js");
22884
+ /* harmony import */ var _TypeGuards_Nullables_isNeitherUndefinedNorNull__WEBPACK_IMPORTED_MODULE_172__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNeitherUndefinedNorNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNeitherUndefinedNorNull.js");
22885
+ /* harmony import */ var _TypeGuards_Nullables_isEitherUndefinedOrNull__WEBPACK_IMPORTED_MODULE_173__ = __webpack_require__(/*! ./TypeGuards/Nullables/isEitherUndefinedOrNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isEitherUndefinedOrNull.js");
22886
+ /* harmony import */ var _TypeGuards_Nullables_isNotNull__WEBPACK_IMPORTED_MODULE_174__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNotNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNotNull.js");
22887
+ /* harmony import */ var _TypeGuards_Nullables_isNotUndefined__WEBPACK_IMPORTED_MODULE_175__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNotUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNotUndefined.js");
22888
+ /* harmony import */ var _TypeGuards_Nullables_isNull__WEBPACK_IMPORTED_MODULE_176__ = __webpack_require__(/*! ./TypeGuards/Nullables/isNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isNull.js");
22889
+ /* harmony import */ var _TypeGuards_Nullables_isUndefined__WEBPACK_IMPORTED_MODULE_177__ = __webpack_require__(/*! ./TypeGuards/Nullables/isUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Nullables/isUndefined.js");
22890
+ /* harmony import */ var _TypeGuards_Numbers_isDecimalFractionOfAnySign__WEBPACK_IMPORTED_MODULE_178__ = __webpack_require__(/*! ./TypeGuards/Numbers/isDecimalFractionOfAnySign */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isDecimalFractionOfAnySign.js");
22891
+ /* harmony import */ var _TypeGuards_Numbers_isNaturalNumber__WEBPACK_IMPORTED_MODULE_179__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNaturalNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNaturalNumber.js");
22892
+ /* harmony import */ var _TypeGuards_Numbers_isNegativeDecimalFraction__WEBPACK_IMPORTED_MODULE_180__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeDecimalFraction */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeDecimalFraction.js");
22893
+ /* harmony import */ var _TypeGuards_Numbers_isNegativeInteger__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeInteger */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeInteger.js");
22894
+ /* harmony import */ var _TypeGuards_Numbers_isNegativeIntegerOrZero__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNegativeIntegerOrZero */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNegativeIntegerOrZero.js");
22895
+ /* harmony import */ var _TypeGuards_Numbers_isNonNegativeInteger__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNonNegativeInteger */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNonNegativeInteger.js");
22896
+ /* harmony import */ var _TypeGuards_Numbers_isNumber__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(/*! ./TypeGuards/Numbers/isNumber */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isNumber.js");
22897
+ /* harmony import */ var _TypeGuards_Numbers_isPositiveDecimalFraction__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(/*! ./TypeGuards/Numbers/isPositiveDecimalFraction */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Numbers/isPositiveDecimalFraction.js");
22898
+ /* harmony import */ var _TypeGuards_Objects_isArbitraryObject__WEBPACK_IMPORTED_MODULE_186__ = __webpack_require__(/*! ./TypeGuards/Objects/isArbitraryObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isArbitraryObject.js");
22899
+ /* harmony import */ var _TypeGuards_Objects_isEmptyObject__WEBPACK_IMPORTED_MODULE_187__ = __webpack_require__(/*! ./TypeGuards/Objects/isEmptyObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isEmptyObject.js");
22900
+ /* harmony import */ var _TypeGuards_Objects_isNonEmptyArbitraryObject__WEBPACK_IMPORTED_MODULE_188__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonEmptyArbitraryObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonEmptyArbitraryObject.js");
22901
+ /* harmony import */ var _TypeGuards_Objects_isNonEmptyObject__WEBPACK_IMPORTED_MODULE_189__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonEmptyObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonEmptyObject.js");
22902
+ /* harmony import */ var _TypeGuards_Objects_isNonNullObject__WEBPACK_IMPORTED_MODULE_190__ = __webpack_require__(/*! ./TypeGuards/Objects/isNonNullObject */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Objects/isNonNullObject.js");
22903
+ /* harmony import */ var _TypeGuards_Strings_isEmptyString__WEBPACK_IMPORTED_MODULE_191__ = __webpack_require__(/*! ./TypeGuards/Strings/isEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isEmptyString.js");
22904
+ /* harmony import */ var _TypeGuards_Strings_isNonEmptyString__WEBPACK_IMPORTED_MODULE_192__ = __webpack_require__(/*! ./TypeGuards/Strings/isNonEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isNonEmptyString.js");
22905
+ /* harmony import */ var _TypeGuards_Strings_isString__WEBPACK_IMPORTED_MODULE_193__ = __webpack_require__(/*! ./TypeGuards/Strings/isString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isString.js");
22906
+ /* harmony import */ var _TypeGuards_Strings_isStringOfLength__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(/*! ./TypeGuards/Strings/isStringOfLength */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/Strings/isStringOfLength.js");
22907
+ /* harmony import */ var _TypeGuards_isBoolean__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(/*! ./TypeGuards/isBoolean */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isBoolean.js");
22908
+ /* harmony import */ var _TypeGuards_isElementOfEnumeration__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(/*! ./TypeGuards/isElementOfEnumeration */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isElementOfEnumeration.js");
22909
+ /* harmony import */ var _TypeGuards_isFunctionLike__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(/*! ./TypeGuards/isFunctionLike */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/TypeGuards/isFunctionLike.js");
22910
+ /* harmony import */ var _ValueTransformers_emptyStringToNull__WEBPACK_IMPORTED_MODULE_198__ = __webpack_require__(/*! ./ValueTransformers/emptyStringToNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/emptyStringToNull.js");
22911
+ /* harmony import */ var _ValueTransformers_nullToEmptyString__WEBPACK_IMPORTED_MODULE_199__ = __webpack_require__(/*! ./ValueTransformers/nullToEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToEmptyString.js");
22912
+ /* harmony import */ var _ValueTransformers_nullToUndefined__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(/*! ./ValueTransformers/nullToUndefined */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToUndefined.js");
22913
+ /* harmony import */ var _ValueTransformers_nullToZero__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(/*! ./ValueTransformers/nullToZero */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/nullToZero.js");
22914
+ /* harmony import */ var _ValueTransformers_undefinedToEmptyArray__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(/*! ./ValueTransformers/undefinedToEmptyArray */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToEmptyArray.js");
22915
+ /* harmony import */ var _ValueTransformers_undefinedToEmptyString__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(/*! ./ValueTransformers/undefinedToEmptyString */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToEmptyString.js");
22916
+ /* harmony import */ var _ValueTransformers_undefinedToNull__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(/*! ./ValueTransformers/undefinedToNull */ "../../../YamatoDaiwaES_Extensions/CoreLibrary/Package/Distributable/esm/ValueTransformers/undefinedToNull.js");
22709
22917
  /*!
22710
22918
  * @yamato-daiwa/es-extensions v1.7
22711
22919
  * (c) 2021 Sole proprietorship "Yamato Daiwa" Takeshi Tokugawa
@@ -22915,6 +23123,7 @@ __webpack_require__.r(__webpack_exports__);
22915
23123
 
22916
23124
 
22917
23125
 
23126
+
22918
23127
 
22919
23128
 
22920
23129
  /***/ }),
@@ -23331,7 +23540,7 @@ function revisionHash(data) {
23331
23540
  \***********************/
23332
23541
  /***/ ((module) => {
23333
23542
 
23334
- module.exports = JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.3.0-alpha.2","description":"The project building tool with declarative YAML configuration specializing on Pug, Stylus and TypeScript as source code languages.","keywords":["build","pug","stylus","tool","typescript"],"engines":{"node":">=14.16"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@typescript-eslint/eslint-plugin":"6.13.1","@typescript-eslint/parser":"6.13.1","@vue/compiler-sfc":"3.3.12","@webdiscus/pug-loader":"2.10.4","@yamato-daiwa/es-extensions":"1.7.0-alpha.5","@yamato-daiwa/es-extensions-nodejs":"1.7.0-alpha.5","@yamato-daiwa/style_guides":"0.0.60","autoprefixer":"10.4.15","browser-sync":"2.29.3","css-loader":"6.7.3","cssnano":"5.1.14","eslint":"8.52.0","eslint-plugin-import":"2.29.0","eslint-plugin-node":"11.1.0","eslint-plugin-react":"7.33.2","eslint-plugin-vue":"9.19.2","eslint-plugin-vue-pug":"0.6.1","fork-ts-checker-webpack-plugin":"7.3.0","gulp":"4.0.2","gulp-data":"1.3.1","gulp-html-prettify":"0.0.1","gulp-if":"3.0.0","gulp-imagemin":"7.1.0","gulp-plumber":"1.2.1","gulp-postcss":"9.0.1","gulp-pug":"5.0.0","gulp-sourcemaps":"3.0.0","gulp-stylus":"2.7.1","imagemin-pngquant":"9.0.2","json5-loader":"4.0.1","node-html-parser":"6.1.5","node-notifier":"10.0.1","pa11y":"6.2.3","probe-image-size":"7.2.3","pug-lint":"2.7.0","pug-plain-loader":"1.1.0","puppeteer":"21.0.0","rev-hash":"4.0.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"3.3.1","stylus-loader":"7.1.0","ts-loader":"9.4.4","vinyl":"2.2.1","vue-loader":"17.3.1","vue-style-loader":"4.1.3","w3c-html-validator":"0.8.1","webpack":"5.88.2","webpack-node-externals":"3.0.0","webpack-stream":"7.0.0","worker-loader":"3.0.8","yaml-loader":"0.8.0"},"devDependencies":{"@types/browser-sync":"2.26.3","@types/cssnano":"5.0.0","@types/gulp":"4.0.10","@types/gulp-html-prettify":"0.0.2","@types/gulp-if":"0.0.34","@types/gulp-imagemin":"8.0.1","@types/gulp-plumber":"0.0.33","@types/gulp-postcss":"8.0.3","@types/gulp-sourcemaps":"0.0.36","@types/gulp-stylus":"2.7.5","@types/node":"18.13.0","@types/node-notifier":"8.0.5","@types/pa11y":"5.3.7","@types/probe-image-size":"7.2.3","@types/pug":"2.0.9","@types/webpack-node-externals":"2.5.3","@types/webpack-stream":"3.2.15","eslint-webpack-plugin":"4.0.1","ts-node":"10.9.1","typescript":"5.3.2","webpack-cli":"5.1.4"},"scripts":{"Incremental development building":"webpack --mode development","Production building":"webpack --mode production","Linting":"eslint Source","Tree diagram of source files generating":"tree Source /f"},"license":"MIT","repository":{"type":"git","url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation"},"bugs":{"url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation/issues","email":"tokugawa.takesi@gmail.com"}}');
23543
+ module.exports = JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.3.0-alpha.3","description":"The project building tool with declarative YAML configuration specializing on Pug, Stylus and TypeScript as source code languages.","keywords":["build","pug","stylus","tool","typescript"],"engines":{"node":">=14.16"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@stylistic/eslint-plugin":"1.5.3","@typescript-eslint/eslint-plugin":"6.18.1","@typescript-eslint/parser":"6.18.1","@vue/compiler-sfc":"3.4.12","@webdiscus/pug-loader":"2.10.5","@yamato-daiwa/es-extensions":"../../YamatoDaiwaES_Extensions/CoreLibrary/Package","@yamato-daiwa/es-extensions-nodejs":"../../YamatoDaiwaES_Extensions/NodeJS/Package","@yamato-daiwa/style_guides":"0.1.1","autoprefixer":"10.4.15","browser-sync":"2.29.3","css-loader":"6.7.3","cssnano":"5.1.14","eslint":"8.56.0","eslint-plugin-import":"2.29.1","eslint-plugin-node":"11.1.0","eslint-plugin-react":"7.33.2","eslint-plugin-vue":"9.20.1","eslint-plugin-vue-pug":"0.6.1","fork-ts-checker-webpack-plugin":"7.3.0","gulp":"4.0.2","gulp-data":"1.3.1","gulp-html-prettify":"0.0.1","gulp-if":"3.0.0","gulp-imagemin":"7.1.0","gulp-plumber":"1.2.1","gulp-postcss":"9.0.1","gulp-pug":"5.0.0","gulp-sourcemaps":"3.0.0","gulp-stylus":"2.7.1","imagemin-pngquant":"9.0.2","json5-loader":"4.0.1","node-html-parser":"6.1.5","node-notifier":"10.0.1","pa11y":"6.2.3","probe-image-size":"7.2.3","pug-lint":"2.7.0","pug-plain-loader":"1.1.0","puppeteer":"21.0.0","rev-hash":"4.0.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"3.3.1","stylus-loader":"7.1.0","ts-loader":"9.4.4","vinyl":"2.2.1","vue-loader":"17.3.1","vue-style-loader":"4.1.3","w3c-html-validator":"0.8.1","webpack":"5.88.2","webpack-node-externals":"3.0.0","webpack-stream":"7.0.0","worker-loader":"3.0.8","yaml-loader":"0.8.0"},"devDependencies":{"@types/browser-sync":"2.26.3","@types/cssnano":"5.0.0","@types/gulp":"4.0.10","@types/gulp-html-prettify":"0.0.2","@types/gulp-if":"0.0.34","@types/gulp-imagemin":"8.0.1","@types/gulp-plumber":"0.0.33","@types/gulp-postcss":"8.0.3","@types/gulp-sourcemaps":"0.0.36","@types/gulp-stylus":"2.7.5","@types/node":"18.13.0","@types/node-notifier":"8.0.5","@types/pa11y":"5.3.7","@types/probe-image-size":"7.2.3","@types/pug":"2.0.9","@types/webpack-node-externals":"2.5.3","@types/webpack-stream":"3.2.15","eslint-webpack-plugin":"4.0.1","ts-node":"10.9.1","typescript":"5.3.3","webpack-cli":"5.1.4"},"scripts":{"Incremental development building":"webpack --mode development","Production building":"webpack --mode production","Linting":"eslint Source","Tree diagram of source files generating":"tree Source /f"},"license":"MIT","repository":{"type":"git","url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation"},"bugs":{"url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation/issues","email":"tokugawa.takesi@gmail.com"}}');
23335
23544
 
23336
23545
  /***/ })
23337
23546