@yamato-daiwa/automation 0.0.4 → 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 +6 -9
- 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
|
|
@@ -4315,6 +4315,7 @@ class WebpackConfigGenerator {
|
|
|
4315
4315
|
new vue_loader_1.VueLoaderPlugin(),
|
|
4316
4316
|
new eslint_webpack_plugin_1.default({
|
|
4317
4317
|
extensions: ["js", "ts", "vue"],
|
|
4318
|
+
failOnError: this.masterConfigRepresentative.isProductionBuildingMode,
|
|
4318
4319
|
failOnWarning: this.masterConfigRepresentative.isProductionBuildingMode
|
|
4319
4320
|
})
|
|
4320
4321
|
],
|
|
@@ -4960,7 +4961,7 @@ const AccessibilityInspectorLocalization__English = {
|
|
|
4960
4961
|
description: `Begin the inspection of file '${namedParameters.targetFileRelativePath}' ...`
|
|
4961
4962
|
}),
|
|
4962
4963
|
generateInspectionFinishedWithNoIssuesFoundSuccessLog: (namedParameters) => ({
|
|
4963
|
-
title: "
|
|
4964
|
+
title: "Accessibility inspection finished",
|
|
4964
4965
|
description: `File '${namedParameters.targetFileRelativePath}' is has not the accessibility issues.\n` +
|
|
4965
4966
|
`${namedParameters.secondsElapsed} seconds elapsed.`
|
|
4966
4967
|
}),
|
|
@@ -6639,13 +6640,9 @@ class PartialsFilesMapper {
|
|
|
6639
6640
|
description: `Mapping of ${sourceFilesTypeLabelForLogging} entry points and partial files relations done. ` +
|
|
6640
6641
|
`${mappingTimeMeasuringStopwatch.stop().seconds} seconds elapsed.`
|
|
6641
6642
|
});
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath
|
|
6646
|
-
);
|
|
6647
|
-
} */
|
|
6648
|
-
PartialsFilesMapper.dumpIncludedFilesAndEntryPointsAccordanceMap(partialFilesAndParentEntryPointsRelationsMap, masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath);
|
|
6643
|
+
if (masterConfigRepresentative.mustDebugEntryPointsAndPartialFiles) {
|
|
6644
|
+
PartialsFilesMapper.dumpIncludedFilesAndEntryPointsAccordanceMap(partialFilesAndParentEntryPointsRelationsMap, masterConfigRepresentative.consumingProjectRootDirectoryAbsolutePath);
|
|
6645
|
+
}
|
|
6649
6646
|
return partialFilesAndParentEntryPointsRelationsMap;
|
|
6650
6647
|
}
|
|
6651
6648
|
static addAbsolutePathsOfExistingPartialsOfCurrentEntryPointOrPartialFileToQueue({ targetEntryPointOrPartialFileAbsolutePath, queueOfAbsolutePathsOfPartialFilesWhichWillBeScanned }) {
|
package/package.json
CHANGED