@yamato-daiwa/automation 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/EntryPoint.js +4 -8
- package/package.json +1 -1
package/EntryPoint.js
CHANGED
|
@@ -2398,7 +2398,7 @@ class GulpStreamsBasedSourceCodeProcessor extends GulpStreamsBasedTaskExecutor_1
|
|
|
2398
2398
|
initializeSourceFilesDirectoriesWhichAlwaysWillBeBeingWatchedGlobSelectors() {
|
|
2399
2399
|
this.globSelectorsOfSourceFilesWithSupportedFilenameExtensionsInEntryPointsGroupRootDirectoryAndBelow.push(...this.associatedSourceCodeProcessingSettingsRepresentative.
|
|
2400
2400
|
relevantEntryPointsSourceDirectoriesAbsolutePaths.
|
|
2401
|
-
map((entryPointsSourceFilesDirectoryAbsolutePath) => ImprovedGlob_1.default.
|
|
2401
|
+
map((entryPointsSourceFilesDirectoryAbsolutePath) => ImprovedGlob_1.default.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
|
|
2402
2402
|
basicDirectoryPath: entryPointsSourceFilesDirectoryAbsolutePath,
|
|
2403
2403
|
fileNamesExtensions: this.associatedSourceCodeProcessingSettingsRepresentative.
|
|
2404
2404
|
supportedEntryPointsSourceFileNameExtensionsWithoutLeadingDots
|
|
@@ -6640,13 +6640,9 @@ class PartialsFilesMapper {
|
|
|
6640
6640
|
description: `Mapping of ${sourceFilesTypeLabelForLogging} entry points and partial files relations done. ` +
|
|
6641
6641
|
`${mappingTimeMeasuringStopwatch.stop().seconds} seconds elapsed.`
|
|
6642
6642
|
});
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath
|
|
6647
|
-
);
|
|
6648
|
-
} */
|
|
6649
|
-
PartialsFilesMapper.dumpIncludedFilesAndEntryPointsAccordanceMap(partialFilesAndParentEntryPointsRelationsMap, masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath);
|
|
6643
|
+
if (masterConfigRepresentative.mustDebugEntryPointsAndPartialFiles) {
|
|
6644
|
+
PartialsFilesMapper.dumpIncludedFilesAndEntryPointsAccordanceMap(partialFilesAndParentEntryPointsRelationsMap, masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath);
|
|
6645
|
+
}
|
|
6650
6646
|
return partialFilesAndParentEntryPointsRelationsMap;
|
|
6651
6647
|
}
|
|
6652
6648
|
static addAbsolutePathsOfExistingPartialsOfCurrentEntryPointOrPartialFileToQueue({ targetEntryPointOrPartialFileAbsolutePath, queueOfAbsolutePathsOfPartialFilesWhichWillBeScanned }) {
|
package/package.json
CHANGED