@yamato-daiwa/automation 0.5.0-alpha.4 → 0.5.0-alpha.5

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 CHANGED
@@ -46,15 +46,15 @@ var ApplicationConsoleLineInterface;
46
46
  },
47
47
  configurationFile: {
48
48
  description: "Custom name of the configuration file (the default one is " +
49
- `${CONFIGURATION_FILE_DEFAULT_NAME_WITH_EXTENSION_1.default})`,
49
+ `"${CONFIGURATION_FILE_DEFAULT_NAME_WITH_EXTENSION_1.default}")`,
50
50
  newName: "customConfigurationFileName__possiblyWithoutExtension",
51
51
  type: es_extensions_nodejs_1.ConsoleCommandsParser.ParametersTypes.string,
52
52
  required: false
53
53
  },
54
54
  selectiveExecution: {
55
55
  newName: "selectiveExecutionID",
56
- description: "Allows to specify the selection of tasks, entry points groups, etc., herewith the " +
57
- "specified selection execution ID must be preliminarily defined in the configuration file.",
56
+ description: "Allows to specify the selection of tasks, entry points groups, etc. by selective execution ID, " +
57
+ "herewith the desired selective execution must be preliminarily defined in the configuration file.",
58
58
  type: es_extensions_nodejs_1.ConsoleCommandsParser.ParametersTypes.string,
59
59
  required: false
60
60
  }
@@ -6465,7 +6465,6 @@ class ECMA_ScriptLogicProcessingRawSettingsNormalizer extends SourceCodeProcessi
6465
6465
  } : null
6466
6466
  });
6467
6467
  const relevantEntryPointsGroups = dataHoldingSelfInstance.createNormalizedEntryPointsGroupsSettings(ECMA_ScriptLogicProcessingSettings__fromFile__rawValid.entryPointsGroups, dataHoldingSelfInstance.
6468
- /* eslint-disable-next-line max-len -- Unable to split this line to multiple. */
6469
6468
  completeEntryPointsGroupNormalizedSettingsCommonPropertiesUntilECMA_ScriptLogicEntryPointsGroupNormalizedSettings.
6470
6469
  bind(dataHoldingSelfInstance));
6471
6470
  const lintingSettings__fromFile__rawValid = ECMA_ScriptLogicProcessingSettings__fromFile__rawValid.linting ?? {};
@@ -7070,8 +7069,8 @@ const DotYDA_DirectoryManager_1 = __importDefault(__webpack_require__(/*! @Utils
7070
7069
  const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
7071
7070
  const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
7072
7071
  class ECMA_ScriptLogicProcessor {
7072
+ /* ━━━ Private Static Fields ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
7073
7073
  static ENTRY_POINTS_AND_PARTIAL_FILES_MAPPING_CACHE_FILE_NAME_WITH_EXTENSION = "ECMA_ScriptEntryPointsAndAffiliatedFilesMappingCache.json";
7074
- TASK_NAME_FOR_LOGGING = "ECMAScript logic processing";
7075
7074
  projectBuildingMasterConfigRepresentative;
7076
7075
  ECMA_ScriptLogicProcessingConfigRepresentative;
7077
7076
  webpackConfigurationsForExistingEntryPoints;
@@ -7080,6 +7079,7 @@ class ECMA_ScriptLogicProcessor {
7080
7079
  absolutePathOfFilesWaitingForReProcessing = new Set();
7081
7080
  sourceCodeSelectiveReprocessingHelper;
7082
7081
  subsequentFilesStateChangeTimeout = null;
7082
+ /* ━━━ Public Static Methods ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
7083
7083
  static provideLogicProcessingIfMust(projectBuildingMasterConfigRepresentative) {
7084
7084
  const ecmaScriptLogicProcessingSettingsRepresentative = projectBuildingMasterConfigRepresentative.ECMA_ScriptLogicProcessingSettingsRepresentative;
7085
7085
  if ((0, es_extensions_1.isUndefined)(ecmaScriptLogicProcessingSettingsRepresentative)) {
@@ -7092,18 +7092,18 @@ class ECMA_ScriptLogicProcessor {
7092
7092
  }
7093
7093
  catch (error) {
7094
7094
  /* [ Theory ] Once reached here, the Gulp tasks chain will collapse whatever will callback called to no. */
7095
- es_extensions_1.Logger.logError({
7096
- errorType: es_extensions_1.UnexpectedEventError.NAME,
7095
+ gulpCallback(new es_extensions_1.UnexpectedEventError(es_extensions_1.Logger.formatErrorLog({
7097
7096
  title: es_extensions_1.UnexpectedEventError.localization.defaultTitle,
7097
+ errorType: es_extensions_1.UnexpectedEventError.NAME,
7098
7098
  description: "The error emitted by Webpack has been caught while no error catching required according the official" +
7099
7099
  "documentation: https://webpack.js.org/api/node/",
7100
7100
  occurrenceLocation: "ECMA_ScriptLogicProcessor.provideLogicProcessing(projectBuildingMasterConfigRepresentative)",
7101
7101
  caughtError: error
7102
- });
7102
+ })));
7103
7103
  }
7104
- gulpCallback();
7105
7104
  };
7106
7105
  }
7106
+ /* ━━━ Constructor ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
7107
7107
  constructor(ecmaScriptLogicProcessingConfigRepresentative, masterConfigRepresentative) {
7108
7108
  this.ECMA_ScriptLogicProcessingConfigRepresentative = ecmaScriptLogicProcessingConfigRepresentative;
7109
7109
  this.projectBuildingMasterConfigRepresentative = masterConfigRepresentative;
@@ -7169,38 +7169,15 @@ class ECMA_ScriptLogicProcessor {
7169
7169
  addOnAnyEventRelatedWithActualFilesHandler({
7170
7170
  handlerID: "ON_ANY_EVENT_WITH_ECMA_SCRIPT_LOGIC_SOURCE_CODE_FILE--BY_ECMA_SCRIPT_LOGIC_PROCESSOR",
7171
7171
  handler: this.onSourceFilesWatcherEmittedAnyEvent.bind(this)
7172
+ }).
7173
+ addOnEntryPointFileAddedEventHandler({
7174
+ handlerID: "ON_MARKUP_ENTRY_POINT_FILE_ADDED--BY_MARKUP_PROCESSOR",
7175
+ handler: ECMA_ScriptLogicProcessor.onEntryPointFileAdded
7172
7176
  });
7173
- // TODO
7174
- // addOnEntryPointFileAddedEventHandler({
7175
- // handlerID: "ON_MARKUP_ENTRY_POINT_FILE_ADDED--BY_MARKUP_PROCESSOR",
7176
- // handler: dataHoldingSelfInstance.onEntryPointFileAdded.bind(dataHoldingSelfInstance)
7177
- // }).
7178
- // addOnEntryPointFileDeletedEventHandler({
7179
- // handlerID: "ON_MARKUP_ENTRY_POINT_FILE_DELETED--BY_MARKUP_PROCESSOR",
7180
- // handler: MarkupProcessor.onEntryPointFileDeleted
7181
- // });
7182
- }
7183
- }
7184
- /* ━━━ Rebuilding ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
7185
- onSourceFilesWatcherEmittedAnyEvent(targetFileAbsolutePath) {
7186
- this.absolutePathOfFilesWaitingForReProcessing.add(targetFileAbsolutePath);
7187
- if ((0, es_extensions_1.isNotNull)(this.subsequentFilesStateChangeTimeout)) {
7188
- clearTimeout(this.subsequentFilesStateChangeTimeout);
7189
7177
  }
7190
- this.subsequentFilesStateChangeTimeout = setTimeout(() => {
7191
- const absolutePathOfEntryPointsWhichMustBeReprocessed__forwardSlashSeparators = this.sourceCodeSelectiveReprocessingHelper?.getAbsolutePathsOfEntryPointsWhichMustBeProcessed(this.absolutePathOfFilesWaitingForReProcessing) ??
7192
- [];
7193
- const actualConfigurationsNames = Array.from((0, es_extensions_1.filterMap)(this.entryPointsSourceFilesAbsolutePathsAndWebpackConfigurationNamesMap, (targetEntryPointAbsolutePath__forwardSlashSeparators) => absolutePathOfEntryPointsWhichMustBeReprocessed__forwardSlashSeparators.
7194
- includes(targetEntryPointAbsolutePath__forwardSlashSeparators)).values());
7195
- if (actualConfigurationsNames.length === 1) {
7196
- (0, es_extensions_1.getArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne)(this.webpackMultiCompiler.compilers, (webpackCompiler) => webpackCompiler.name === actualConfigurationsNames[0], { mustThrowErrorIfElementNotFoundOrMatchesAreMultiple: true }).run(this.generateWebpackCallback());
7197
- }
7198
- else if (actualConfigurationsNames.length > 1) {
7199
- this.webpackMultiCompiler.run(this.generateWebpackCallback());
7200
- }
7201
- this.absolutePathOfFilesWaitingForReProcessing.clear();
7202
- }, (0, es_extensions_1.secondsToMilliseconds)(1));
7203
7178
  }
7179
+ /* ━━━ Private Methods ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
7180
+ /* ─── Webpack Callback ─────────────────────────────────────────────────────────────────────────────────────────── */
7204
7181
  generateWebpackCallback(gulpCallback) {
7205
7182
  return (hardError, statistics) => {
7206
7183
  if ((0, es_extensions_1.isNotUndefined)(statistics)) {
@@ -7255,9 +7232,41 @@ class ECMA_ScriptLogicProcessor {
7255
7232
  }
7256
7233
  };
7257
7234
  }
7235
+ /* ─── Events Handling ──────────────────────────────────────────────────────────────────────────────────────────── */
7236
+ onSourceFilesWatcherEmittedAnyEvent(targetFileAbsolutePath) {
7237
+ this.absolutePathOfFilesWaitingForReProcessing.add(targetFileAbsolutePath);
7238
+ if ((0, es_extensions_1.isNotNull)(this.subsequentFilesStateChangeTimeout)) {
7239
+ clearTimeout(this.subsequentFilesStateChangeTimeout);
7240
+ }
7241
+ this.subsequentFilesStateChangeTimeout = setTimeout(() => {
7242
+ const absolutePathOfEntryPointsWhichMustBeReprocessed__forwardSlashSeparators = this.sourceCodeSelectiveReprocessingHelper?.getAbsolutePathsOfEntryPointsWhichMustBeProcessed(this.absolutePathOfFilesWaitingForReProcessing) ??
7243
+ [];
7244
+ const actualConfigurationsNames = Array.from((0, es_extensions_1.filterMap)(this.entryPointsSourceFilesAbsolutePathsAndWebpackConfigurationNamesMap, (targetEntryPointAbsolutePath__forwardSlashSeparators) => absolutePathOfEntryPointsWhichMustBeReprocessed__forwardSlashSeparators.
7245
+ includes(targetEntryPointAbsolutePath__forwardSlashSeparators)).values());
7246
+ if (actualConfigurationsNames.length === 1) {
7247
+ (0, es_extensions_1.getArrayElementSatisfiesThePredicateIfSuchElementIsExactlyOne)(this.webpackMultiCompiler.compilers, (webpackCompiler) => webpackCompiler.name === actualConfigurationsNames[0], { mustThrowErrorIfElementNotFoundOrMatchesAreMultiple: true }).run(this.generateWebpackCallback());
7248
+ }
7249
+ else if (actualConfigurationsNames.length > 1) {
7250
+ this.webpackMultiCompiler.run(this.generateWebpackCallback());
7251
+ }
7252
+ this.absolutePathOfFilesWaitingForReProcessing.clear();
7253
+ }, (0, es_extensions_1.secondsToMilliseconds)(1));
7254
+ }
7255
+ static onEntryPointFileAdded(targetEntryPointSourceFileAbsolutePath) {
7256
+ es_extensions_1.Logger.logWarning({
7257
+ title: "Restarting is Required",
7258
+ description: [
7259
+ "New ECMAScript logic entry point has been added:",
7260
+ targetEntryPointSourceFileAbsolutePath,
7261
+ "We are sorry, but current YDA version does not support the building of ECMAScript logic entry points added " +
7262
+ "after the starting of YDA. Please restart the YDA."
7263
+ ].join("\n")
7264
+ });
7265
+ }
7266
+ /* ─── Other ────────────────────────────────────────────────────────────────────────────────────────────────────── */
7258
7267
  /* [ Theory ] Although it is a rare case, same directory alias (e.g. "@components") could refer to different
7259
7268
  * directory depending on entry points group. Because the `SourceCodeSelectiveReprocessingHelper` does not
7260
- * respect the specific entry points group, all aliases definition must be merged herewith wihtout overwriting. */
7269
+ * respect the specific entry points group, all aliases definition must be merged herewith without overwriting. */
7261
7270
  static generateUnifiedDirectoriesAliasesAndTheirAbsolutePatsMapForSourceCodeSelectiveReprocessingHelper(ecmaScriptLogicProcessingConfigRepresentative) {
7262
7271
  const unifiedDirectoriesAliasesAndTheirAbsolutePatsMap = new Map();
7263
7272
  for (const entryPointsGroup of ecmaScriptLogicProcessingConfigRepresentative.relevantEntryPointsGroupsSettings.values()) {
@@ -7894,7 +7903,7 @@ class WebpackConfigGenerator {
7894
7903
  return {
7895
7904
  name: entryPointsGroupSettings.ID,
7896
7905
  /* [ Webpack theory ] In this case, path separators must be operating system dependent, otherwise following error
7897
- * will be thrown: "configuration[0].context: The provided value "D:/OSPanel/../01_Open" is not an absolute path!" */
7906
+ * will be thrown: `configuration[0].context: The provided value "D:/OSPanel/../01_Open" is not an absolute path!` */
7898
7907
  context: path_1.default.normalize(sourceFilesTopDirectoryAbsolutePath),
7899
7908
  /* [ Reference ] https://webpack.js.org/configuration/target/ */
7900
7909
  target: (() => {
@@ -11568,6 +11577,9 @@ class SpacesNormalizerForCJK_Text {
11568
11577
  /* [ Regular expression fiddle ] https://regex101.com/r/tPn28I/1 */
11569
11578
  static ANY_CJK_CHARACTER_INCLUDING_PUNCTUATION_ONES = "[\\u3000-\\u303f\\u3040-\\u309f\\u30a0-\\u30ff\\uff00-\\uffef\\u4e00-\\u9fff\\uac00-\\ud7af]";
11570
11579
  static extraSpaceSurroundedByCharactersDetectingPatterns = [
11580
+ /* [ Regular Expressions Tester ] https://regex101.com/r/oTsJps/2 */
11581
+ new RegExp(`(${SpacesNormalizerForCJK_Text.ANY_CJK_CHARACTER_INCLUDING_PUNCTUATION_ONES})\\x20+` +
11582
+ `(${SpacesNormalizerForCJK_Text.ANY_CJK_CHARACTER_INCLUDING_PUNCTUATION_ONES})`, "gmu"),
11571
11583
  new RegExp(`(${SpacesNormalizerForCJK_Text.ANY_CJK_CHARACTER_INCLUDING_PUNCTUATION_ONES})\\r?\\n\\x20+` +
11572
11584
  `(${SpacesNormalizerForCJK_Text.ANY_CJK_CHARACTER_INCLUDING_PUNCTUATION_ONES})`, "gmu")
11573
11585
  ];
@@ -15126,7 +15138,7 @@ class VinylFileClass extends vinyl_1.default {
15126
15138
  * `this.contents` is either `null` or `never` and even `isArbitraryObject` type guard does not assure TypeScript. */
15127
15139
  /* @ts-ignore: TS2358 (See above) */
15128
15140
  return (0, es_extensions_1.isNull)(this.contents) || ((0, es_extensions_1.isArbitraryObject)(this.contents) && !(this.contents instanceof Buffer)) ?
15129
- /* eslint-disable @typescript-eslint/no-unsafe-call */
15141
+ /* eslint-disable @typescript-eslint/no-unsafe-call */
15130
15142
  /* @ts-ignore: TS2339 (See ※ explanation) */
15131
15143
  "" : this.contents.toString();
15132
15144
  /* eslint-enable @typescript-eslint/no-unsafe-call */
@@ -15608,7 +15620,7 @@ function revisionHash(data) {
15608
15620
  \***********************/
15609
15621
  /***/ ((module) => {
15610
15622
 
15611
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.5.0-alpha.4","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":">=18.0.0"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@eslint-community/eslint-plugin-eslint-comments":"4.4.0","@stylistic/eslint-plugin":"2.9.0","@typescript-eslint/eslint-plugin":"8.10.0","@typescript-eslint/parser":"8.10.0","@vue/compiler-sfc":"3.4.27","@webdiscus/pug-loader":"2.11.0","@yamato-daiwa/es-extensions":"../../YamatoDaiwaES_Extensions/CoreLibrary/Package","@yamato-daiwa/es-extensions-nodejs":"../../YamatoDaiwaES_Extensions/NodeJS/Package","@yamato-daiwa/style_guides":"0.3.0-alpha.9","autoprefixer":"10.4.19","browser-sync":"3.0.2","css-loader":"7.1.2","cssnano":"7.0.2","eslint":"9.13.0","eslint-plugin-import":"2.31.0","eslint-plugin-n":"17.11.1","eslint-plugin-react":"7.37.1","eslint-plugin-vue":"9.29.0","eslint-plugin-vue-pug":"0.6.2","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-nodemon":"2.5.0","gulp-plumber":"1.2.1","gulp-postcss":"10.0.0","gulp-pug":"5.0.0","gulp-sourcemaps":"3.0.0","gulp-stylus":"3.0.1","imagemin-pngquant":"9.0.2","json5-loader":"4.0.1","node-html-parser":"6.1.13","node-notifier":"10.0.1","pa11y":"8.0.0","probe-image-size":"7.2.3","pug3-ast-loader":"0.0.0","pug-lint":"2.7.0","puppeteer":"22.10.0","rev-hash":"4.1.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"4.0.0","stylus":"0.63.0","stylus-loader":"8.1.0","ts-loader":"9.5.1","vinyl":"2.2.1","vue-loader":"17.4.2","vue-style-loader":"4.1.3","w3c-html-validator":"0.8.1","webpack":"5.91.0","webpack-node-externals":"3.0.0","webpack-stream":"7.0.0","worker-loader":"3.0.8","yaml-loader":"0.8.1"},"devDependencies":{"@types/browser-sync":"2.29.0","@types/cssnano":"5.0.0","@types/gulp":"4.0.17","@types/gulp-html-prettify":"0.0.5","@types/gulp-if":"3.0.4","@types/gulp-imagemin":"7.0.3","@types/gulp-nodemon":"0.0.37","@types/gulp-plumber":"0.0.37","@types/gulp-postcss":"8.0.6","@types/gulp-sourcemaps":"0.0.38","@types/gulp-stylus":"2.7.8","@types/node":"20.14.2","@types/node-notifier":"8.0.5","@types/pa11y":"5.3.7","@types/probe-image-size":"7.2.4","@types/pug":"2.0.10","@types/webpack-node-externals":"3.0.4","@types/webpack-stream":"3.2.15","eslint-webpack-plugin":"4.2.0","ts-node":"10.9.2","typescript":"5.6.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":"git+https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation.git"},"bugs":{"url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation/issues","email":"tokugawa.takesi@gmail.com"}}');
15623
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.5.0-alpha.5","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":">=18.0.0"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@eslint-community/eslint-plugin-eslint-comments":"4.4.0","@stylistic/eslint-plugin":"2.9.0","@typescript-eslint/eslint-plugin":"8.10.0","@typescript-eslint/parser":"8.10.0","@vue/compiler-sfc":"3.4.27","@webdiscus/pug-loader":"2.11.0","@yamato-daiwa/es-extensions":"1.8.0-alpha.6","@yamato-daiwa/es-extensions-nodejs":"1.8.0-alpha.5","@yamato-daiwa/style_guides":"0.3.0-alpha.12","autoprefixer":"10.4.19","browser-sync":"3.0.2","css-loader":"7.1.2","cssnano":"7.0.2","eslint":"9.13.0","eslint-plugin-import":"2.31.0","eslint-plugin-n":"17.11.1","eslint-plugin-react":"7.37.1","eslint-plugin-vue":"9.29.0","eslint-plugin-vue-pug":"0.6.2","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-nodemon":"2.5.0","gulp-plumber":"1.2.1","gulp-postcss":"10.0.0","gulp-pug":"5.0.0","gulp-sourcemaps":"3.0.0","gulp-stylus":"3.0.1","imagemin-pngquant":"9.0.2","json5-loader":"4.0.1","node-html-parser":"6.1.13","node-notifier":"10.0.1","pa11y":"8.0.0","probe-image-size":"7.2.3","pug3-ast-loader":"0.0.0","pug-lint":"2.7.0","puppeteer":"22.10.0","rev-hash":"4.1.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"4.0.0","stylus":"0.63.0","stylus-loader":"8.1.0","ts-loader":"9.5.1","vinyl":"2.2.1","vue-loader":"17.4.2","vue-style-loader":"4.1.3","w3c-html-validator":"0.8.1","webpack":"5.95.0","webpack-node-externals":"3.0.0","webpack-stream":"7.0.0","worker-loader":"3.0.8","yaml-loader":"0.8.1"},"devDependencies":{"@types/browser-sync":"2.29.0","@types/cssnano":"5.0.0","@types/gulp":"4.0.17","@types/gulp-html-prettify":"0.0.5","@types/gulp-if":"3.0.4","@types/gulp-imagemin":"7.0.3","@types/gulp-nodemon":"0.0.37","@types/gulp-plumber":"0.0.37","@types/gulp-postcss":"8.0.6","@types/gulp-sourcemaps":"0.0.38","@types/gulp-stylus":"2.7.8","@types/node":"20.14.2","@types/node-notifier":"8.0.5","@types/pa11y":"5.3.7","@types/probe-image-size":"7.2.4","@types/pug":"2.0.10","@types/webpack-node-externals":"3.0.4","@types/webpack-stream":"3.2.15","eslint-webpack-plugin":"4.2.0","ts-node":"10.9.2","typescript":"5.6.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":"git+https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation.git"},"bugs":{"url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation/issues","email":"tokugawa.takesi@gmail.com"}}');
15612
15624
 
15613
15625
  /***/ })
15614
15626
 
package/Executable CHANGED
@@ -1,3 +1,3 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  require("./EntryPoint");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/automation",
3
- "version": "0.5.0-alpha.4",
3
+ "version": "0.5.0-alpha.5",
4
4
  "description": "The project building tool with declarative YAML configuration specializing on Pug, Stylus and TypeScript as source code languages.",
5
5
  "keywords": [
6
6
  "build",
@@ -25,9 +25,9 @@
25
25
  "@typescript-eslint/parser": "8.10.0",
26
26
  "@vue/compiler-sfc": "3.4.27",
27
27
  "@webdiscus/pug-loader": "2.11.0",
28
- "@yamato-daiwa/es-extensions": "../../YamatoDaiwaES_Extensions/CoreLibrary/Package",
29
- "@yamato-daiwa/es-extensions-nodejs": "../../YamatoDaiwaES_Extensions/NodeJS/Package",
30
- "@yamato-daiwa/style_guides": "0.3.0-alpha.10",
28
+ "@yamato-daiwa/es-extensions": "1.8.0-alpha.6",
29
+ "@yamato-daiwa/es-extensions-nodejs": "1.8.0-alpha.5",
30
+ "@yamato-daiwa/style_guides": "0.3.0-alpha.12",
31
31
  "autoprefixer": "10.4.19",
32
32
  "browser-sync": "3.0.2",
33
33
  "css-loader": "7.1.2",
@@ -70,7 +70,7 @@
70
70
  "vue-loader": "17.4.2",
71
71
  "vue-style-loader": "4.1.3",
72
72
  "w3c-html-validator": "0.8.1",
73
- "webpack": "5.91.0",
73
+ "webpack": "5.95.0",
74
74
  "webpack-node-externals": "3.0.0",
75
75
  "webpack-stream": "7.0.0",
76
76
  "worker-loader": "3.0.8",