@yamato-daiwa/automation 0.4.0 → 0.4.1

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 +100 -41
  2. package/package.json +12 -12
package/EntryPoint.js CHANGED
@@ -213,10 +213,10 @@ class ProjectBuilder {
213
213
  AudiosProcessor_1.default.provideAudiosProcessingIfMust(masterConfigRepresentative),
214
214
  VideosProcessor_1.default.provideVideosProcessingIfMust(masterConfigRepresentative),
215
215
  MarkupProcessor_1.default.provideMarkupProcessingIfMust(masterConfigRepresentative),
216
+ BrowserLiveReloader_1.default.provideBrowserLiveReloadingIfMust(masterConfigRepresentative),
216
217
  gulp_1.default.parallel([
217
218
  FilesMasterWatcher_1.default.watchIfMust(masterConfigRepresentative),
218
- LocalDevelopmentServerOrchestrator_1.default.orchestrateIfMust(masterConfigRepresentative),
219
- BrowserLiveReloader_1.default.provideBrowserLiveReloadingIfMust(masterConfigRepresentative)
219
+ LocalDevelopmentServerOrchestrator_1.default.orchestrateIfMust(masterConfigRepresentative)
220
220
  ])
221
221
  ])
222
222
  ]));
@@ -1621,13 +1621,14 @@ class BrowserLiveReloader {
1621
1621
  return (callback) => { callback(); };
1622
1622
  }
1623
1623
  const dataHoldingSelfInstance = new BrowserLiveReloader(browserLiveReloadingConfigRepresentative);
1624
- return () => {
1624
+ return (callback) => {
1625
1625
  BrowserCoordinatorRelatedFilesWatcher_1.default.initialize({
1626
1626
  onAnyEventRelatedWithActualFilesHandler: dataHoldingSelfInstance.onAnyChangeInRelatedFiles.
1627
1627
  bind(dataHoldingSelfInstance),
1628
1628
  browserLiveReloadingSettingsRepresentative: browserLiveReloadingConfigRepresentative
1629
1629
  });
1630
1630
  dataHoldingSelfInstance.initializeBrowsersync();
1631
+ callback();
1631
1632
  };
1632
1633
  }
1633
1634
  static addOnURI_ChangedEventHandler(onURI_ChangedEventHandler) {
@@ -1647,7 +1648,12 @@ class BrowserLiveReloader {
1647
1648
  } : {
1648
1649
  proxy: this.browserLiveReloadingSettingsRepresentative.proxy
1649
1650
  },
1650
- https: this.browserLiveReloadingSettingsRepresentative.mustUseHTTPS,
1651
+ ...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.HTTPS) ? {
1652
+ https: {
1653
+ key: this.browserLiveReloadingSettingsRepresentative.HTTPS.keyAbsolutePath,
1654
+ cert: this.browserLiveReloadingSettingsRepresentative.HTTPS.certificateAbsolutePath
1655
+ }
1656
+ } : null,
1651
1657
  cors: this.browserLiveReloadingSettingsRepresentative.mustUseCORS,
1652
1658
  /* [ Browsersync theory ] When port is undefined, it will be assigned automatically. */
1653
1659
  ...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.localServerCustomPort) ? {
@@ -1754,8 +1760,8 @@ class BrowserLiveReloadingSettingsRepresentative {
1754
1760
  get globSelectorsOfFilesAndDirectoriesWhichWillBeIgnored() {
1755
1761
  return [...this.browserLiveReloadingSettings.setup.localServer.ignoredFilesAndDirectoriesRelativePaths];
1756
1762
  }
1757
- get mustUseHTTPS() {
1758
- return this.browserLiveReloadingSettings.setup.localServer.mustUseHTTPS;
1763
+ get HTTPS() {
1764
+ return this.browserLiveReloadingSettings.setup.localServer.HTTPS ?? null;
1759
1765
  }
1760
1766
  get mustUseCORS() {
1761
1767
  return this.browserLiveReloadingSettings.setup.localServer.mustUseCORS;
@@ -1883,10 +1889,23 @@ var BrowserLiveReloadingSettings__FromFile__RawValid;
1883
1889
  required: false,
1884
1890
  minimalCharactersCount: 1
1885
1891
  },
1886
- [browserLiveReloadingSettingsLocalization.setups.localServer.useHTTPS.KEY]: {
1887
- newName: "useHTTPS",
1888
- type: Boolean,
1889
- required: false
1892
+ [browserLiveReloadingSettingsLocalization.setups.localServer.HTTPS.KEY]: {
1893
+ newName: "HTTPS",
1894
+ type: Object,
1895
+ required: false,
1896
+ preValidationModifications: es_extensions_1.nullToUndefined,
1897
+ properties: {
1898
+ [browserLiveReloadingSettingsLocalization.setups.localServer.HTTPS.SSL_KeyRelativePath.KEY]: {
1899
+ type: String,
1900
+ required: true,
1901
+ minimalCharactersCount: 1
1902
+ },
1903
+ [browserLiveReloadingSettingsLocalization.setups.localServer.HTTPS.SSL_CertificateRelativePath.KEY]: {
1904
+ type: String,
1905
+ required: true,
1906
+ minimalCharactersCount: 1
1907
+ }
1908
+ }
1890
1909
  },
1891
1910
  [browserLiveReloadingSettingsLocalization.setups.localServer.useCORS.KEY]: {
1892
1911
  newName: "useCORS",
@@ -2049,8 +2068,18 @@ class BrowserLiveReloadingSettingsNormalizer {
2049
2068
  } : null,
2050
2069
  startingFileNameWithExtension: actualBrowserLiveReloadingSetup__rawValid.localServer.customStartingFileNameWithExtension ??
2051
2070
  BrowserLiveReloadingSettings__Default_1.default.setup.localServer.startingFileNameWithExtension,
2052
- mustUseHTTPS: actualBrowserLiveReloadingSetup__rawValid.localServer.useHTTPS === true ?
2053
- true : BrowserLiveReloadingSettings__Default_1.default.setup.localServer.HTTPS_Usage,
2071
+ ...(0, es_extensions_1.isNotUndefined)(actualBrowserLiveReloadingSetup__rawValid.localServer.HTTPS) ? {
2072
+ HTTPS: {
2073
+ keyAbsolutePath: es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
2074
+ projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath,
2075
+ actualBrowserLiveReloadingSetup__rawValid.localServer.HTTPS.SSL_KeyRelativePath
2076
+ ], { alwaysForwardSlashSeparators: true }),
2077
+ certificateAbsolutePath: es_extensions_nodejs_1.ImprovedPath.joinPathSegments([
2078
+ projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath,
2079
+ actualBrowserLiveReloadingSetup__rawValid.localServer.HTTPS.SSL_CertificateRelativePath
2080
+ ], { alwaysForwardSlashSeparators: true })
2081
+ }
2082
+ } : null,
2054
2083
  mustUseCORS: actualBrowserLiveReloadingSetup__rawValid.localServer.useCORS === true ?
2055
2084
  true : BrowserLiveReloadingSettings__Default_1.default.setup.localServer.CORS_Usage
2056
2085
  },
@@ -3661,7 +3690,7 @@ class LinterLikeTaskExecutor extends GulpStreamsBasedTaskExecutor_1.default {
3661
3690
  DISPLAYING_LINES_COUNT_AFTER_ISSUED_LINE_IN_CODE_LISTING_OF_REPORT = 1;
3662
3691
  logging;
3663
3692
  isFirstGulpPipelinePass = true;
3664
- relativePathsOfFoundFilesMentionedInCache = new Set();
3693
+ relativePathsOfFoundFilesMentionedInCacheFile = new Set();
3665
3694
  /* ━━━ Constructor ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
3666
3695
  constructor(constructorParameter) {
3667
3696
  super(constructorParameter);
@@ -3748,8 +3777,10 @@ class LinterLikeTaskExecutor extends GulpStreamsBasedTaskExecutor_1.default {
3748
3777
  * The methods are organized according processing order. Most of the methods are instance method, but when `this`
3749
3778
  * is not used, the methods are static. */
3750
3779
  async registerFoundFileMentionedInCache(targetFile) {
3751
- if (this.isFirstGulpPipelinePass && (0, es_extensions_1.isNotUndefined)(this.sourceFilesCheckingCachedResults.files[targetFile.relative])) {
3752
- this.relativePathsOfFoundFilesMentionedInCache.add(es_extensions_nodejs_1.ImprovedPath.replacePathSeparatorsToForwardSlashes(targetFile.relative));
3780
+ const targetFileRelativePath__alwaysFrowardSlashesPathSeparators = es_extensions_nodejs_1.ImprovedPath.replacePathSeparatorsToForwardSlashes(targetFile.relative);
3781
+ if (this.isFirstGulpPipelinePass &&
3782
+ (0, es_extensions_1.isNotUndefined)(this.sourceFilesCheckingCachedResults.files[targetFileRelativePath__alwaysFrowardSlashesPathSeparators])) {
3783
+ this.relativePathsOfFoundFilesMentionedInCacheFile.add(targetFileRelativePath__alwaysFrowardSlashesPathSeparators);
3753
3784
  }
3754
3785
  return Promise.resolve(GulpStreamModifier_1.default.CompletionSignals.PASSING_ON);
3755
3786
  }
@@ -3827,15 +3858,15 @@ class LinterLikeTaskExecutor extends GulpStreamsBasedTaskExecutor_1.default {
3827
3858
  if (this.isFirstGulpPipelinePass) {
3828
3859
  /* [ Theory ] Some files could be deleted or ignored during YDA has been stopped. */
3829
3860
  this.sourceFilesCheckingCachedResults.files =
3830
- this.relativePathsOfFoundFilesMentionedInCache.size > 0 ?
3861
+ this.relativePathsOfFoundFilesMentionedInCacheFile.size > 0 ?
3831
3862
  Array.from(Object.entries(this.sourceFilesCheckingCachedResults.files)).reduce((actualSourceFilesCheckingResults, [sourceFileRelativePath, cachedLintingResult]) => {
3832
- if (this.relativePathsOfFoundFilesMentionedInCache.has(sourceFileRelativePath)) {
3863
+ if (this.relativePathsOfFoundFilesMentionedInCacheFile.has(sourceFileRelativePath)) {
3833
3864
  actualSourceFilesCheckingResults[sourceFileRelativePath] = cachedLintingResult;
3834
3865
  }
3835
3866
  return actualSourceFilesCheckingResults;
3836
3867
  }, {}) :
3837
3868
  this.sourceFilesCheckingCachedResults.files;
3838
- this.relativePathsOfFoundFilesMentionedInCache.clear();
3869
+ this.relativePathsOfFoundFilesMentionedInCacheFile.clear();
3839
3870
  this.isFirstGulpPipelinePass = false;
3840
3871
  }
3841
3872
  this.reportCheckingIssuesAndOutputCacheToFile();
@@ -3953,21 +3984,16 @@ exports["default"] = AssetVinylFile;
3953
3984
 
3954
3985
  /* eslint-disable no-inline-comments, @stylistic/no-multi-spaces -- Will comment with which technology each exclusion related. */
3955
3986
  Object.defineProperty(exports, "__esModule", ({ value: true }));
3987
+ /* [ Theory ] All directories and files which names started form dot will be ignored by Chokidar. */
3956
3988
  exports["default"] = {
3957
3989
  relativePathsOfExcludeFiles: [
3958
3990
  "package-lock.json", // NPM
3959
3991
  "yarn.lock" // Yarn, the third-party package manager
3960
3992
  ],
3961
3993
  relativePathsOfExcludeDirectories: [
3962
- ".git", // Git, the Version Control System (VSC
3963
- ".github", // GitHub, the Code Sharing Service
3964
- ".idea", // IntelliJ IDEA, The IDEs Family
3965
- ".nuxt", // Nuxt.js, the JavaScript framework
3966
- ".run", // .NET
3967
- ".vs", // Visual Studio IDE
3968
- ".vscode", // Visual Studio Code, the Code editor
3969
- ".yda", // Yamato Daiwa Automation
3970
- "node_modules" // Node.js
3994
+ "bin", // .NET
3995
+ "node_modules", // Node.js
3996
+ "obj" // .NET
3971
3997
  ]
3972
3998
  };
3973
3999
 
@@ -3996,12 +4022,12 @@ class FilesWatchingSettingsNormalizer {
3996
4022
  ...FilesWatchingRestrictions_1.default.relativePathsOfExcludeFiles,
3997
4023
  ...filesWatchingSettings__fromFile__rawValid?.relativePathsOfExcludeFiles ?? []
3998
4024
  ].
3999
- map((directoryRelativePath) => es_extensions_nodejs_1.ImprovedGlob.includingGlobSelectorToExcludingOne(es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath, directoryRelativePath], { alwaysForwardSlashSeparators: true })))),
4025
+ map((directoryRelativePath) => es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath, directoryRelativePath], { alwaysForwardSlashSeparators: true }))),
4000
4026
  excludedDirectoriesGlobSelectors: new Set([
4001
4027
  ...FilesWatchingRestrictions_1.default.relativePathsOfExcludeDirectories,
4002
4028
  ...filesWatchingSettings__fromFile__rawValid?.relativePathsOfExcludeDirectories ?? []
4003
4029
  ].
4004
- map((directoryRelativePath) => es_extensions_nodejs_1.ImprovedGlob.buildExcludingOfDirectoryWithSubdirectoriesGlobSelector(es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath, directoryRelativePath], { alwaysForwardSlashSeparators: true }))))
4030
+ map((directoryRelativePath) => es_extensions_nodejs_1.ImprovedPath.joinPathSegments([projectBuilderCommonSettings__normalized.projectRootDirectoryAbsolutePath, directoryRelativePath], { alwaysForwardSlashSeparators: true })))
4005
4031
  };
4006
4032
  }
4007
4033
  }
@@ -4014,21 +4040,22 @@ exports["default"] = FilesWatchingSettingsNormalizer;
4014
4040
  /*!******************************************************************************!*\
4015
4041
  !*** ./ProjectBuilding/FilesWatching/FilesWatchingSettingsRepresentative.ts ***!
4016
4042
  \******************************************************************************/
4017
- /***/ ((__unused_webpack_module, exports) => {
4043
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4018
4044
 
4019
4045
 
4020
4046
  Object.defineProperty(exports, "__esModule", ({ value: true }));
4047
+ /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
4048
+ const es_extensions_nodejs_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions-nodejs */ "@yamato-daiwa/es-extensions-nodejs");
4021
4049
  class FilesWatchingSettingsRepresentative {
4022
4050
  mustProvideFilesWatching;
4051
+ exclusiveGlobsOfExcludedFilesAndDirectories;
4023
4052
  fileWatchingSettings;
4024
4053
  constructor(fileWatchingSettings, projectBuildingMasterConfigRepresentative) {
4025
4054
  this.fileWatchingSettings = fileWatchingSettings;
4026
4055
  this.mustProvideFilesWatching = projectBuildingMasterConfigRepresentative.mustProvideIncrementalBuilding;
4027
- }
4028
- get exclusiveGlobsOfExcludedFilesAndDirectories() {
4029
- return [
4030
- ...Array.from(this.fileWatchingSettings.excludedFilesGlobSelectors),
4031
- ...Array.from(this.fileWatchingSettings.excludedDirectoriesGlobSelectors)
4056
+ this.exclusiveGlobsOfExcludedFilesAndDirectories = [
4057
+ ...es_extensions_nodejs_1.ImprovedGlob.includingGlobSelectorsToExcludingOnes(Array.from(this.fileWatchingSettings.excludedFilesGlobSelectors)),
4058
+ ...es_extensions_nodejs_1.ImprovedGlob.includingGlobSelectorsToExcludingOnes(Array.from(this.fileWatchingSettings.excludedDirectoriesGlobSelectors))
4032
4059
  ];
4033
4060
  }
4034
4061
  }
@@ -5327,6 +5354,11 @@ const ProjectBuildingConfigFromFileDefaultLocalization = {
5327
5354
  KEY: "staticPreview",
5328
5355
  stateDependentPagesVariationsSpecificationFileRelativePath: {
5329
5356
  KEY: "stateDependentPagesVariationsSpecificationFileRelativePath"
5357
+ },
5358
+ importsFromStaticDataFiles: {
5359
+ KEY: "importsFromStaticDataFiles",
5360
+ importedVariableName: { KEY: "importedVariableName" },
5361
+ fileRelativePath: { KEY: "fileRelativePath" }
5330
5362
  }
5331
5363
  },
5332
5364
  linting: {
@@ -5628,7 +5660,11 @@ const ProjectBuildingConfigFromFileDefaultLocalization = {
5628
5660
  ignoredFilesAndDirectoriesRelativePaths: { KEY: "ignoredFilesAndDirectoriesRelativePaths" },
5629
5661
  customPort: { KEY: "customPort" },
5630
5662
  customStartingFileNameWithExtension: { KEY: "customStartingFileNameWithExtension" },
5631
- useHTTPS: { KEY: "useHTTPS" },
5663
+ HTTPS: {
5664
+ KEY: "HTTPS",
5665
+ SSL_KeyRelativePath: { KEY: "SSL_KeyRelativePath" },
5666
+ SSL_CertificateRelativePath: { KEY: "SSL_CertificateRelativePath" }
5667
+ },
5632
5668
  useCORS: { KEY: "useCORS" }
5633
5669
  },
5634
5670
  proxy: { KEY: "proxy" },
@@ -8009,6 +8045,29 @@ var MarkupProcessingSettings__FromFile__RawValid;
8009
8045
  type: String,
8010
8046
  required: false,
8011
8047
  minimalCharactersCount: 1
8048
+ },
8049
+ [markupProcessingPropertiesLocalization.staticPreview.importsFromStaticDataFiles.KEY]: {
8050
+ newName: "importsFromStaticDataFiles",
8051
+ preValidationModifications: es_extensions_1.nullToUndefined,
8052
+ type: Array,
8053
+ required: false,
8054
+ element: {
8055
+ type: Object,
8056
+ properties: {
8057
+ [markupProcessingPropertiesLocalization.staticPreview.importsFromStaticDataFiles.importedVariableName.KEY]: {
8058
+ newName: "importedVariableName",
8059
+ type: String,
8060
+ required: true,
8061
+ minimalCharactersCount: 1
8062
+ },
8063
+ [markupProcessingPropertiesLocalization.staticPreview.importsFromStaticDataFiles.fileRelativePath.KEY]: {
8064
+ newName: "fileRelativePath",
8065
+ type: String,
8066
+ required: true,
8067
+ minimalCharactersCount: 1
8068
+ }
8069
+ }
8070
+ }
8012
8071
  }
8013
8072
  }
8014
8073
  },
@@ -10262,7 +10321,7 @@ class ImagesAspectRatioAffixer {
10262
10321
  return null;
10263
10322
  }
10264
10323
  /* [ Fiddle ] https://regex101.com/r/vvGR6t/1 */
10265
- const imagePathSearchingResults = /background(?:-image)?\s*:\s*url\(["'](?<URI>[^"']+)["']/gu.exec(styleAttributeValue);
10324
+ const imagePathSearchingResults = (/background(?:-image)?\s*:\s*url\(["'](?<URI>[^"']+)["']/gu).exec(styleAttributeValue);
10266
10325
  return (0, es_extensions_1.isNotNull)(imagePathSearchingResults) ? imagePathSearchingResults[1] : null;
10267
10326
  }
10268
10327
  }
@@ -12622,7 +12681,7 @@ class ESLintLinterSpecialist {
12622
12681
  return fs_1.default.
12623
12682
  readFileSync(path_1.default.join(process.cwd(), ESLintLinterSpecialist.IGNORING_DIRECTIVES_DEFAULT_FILE_NAME_WITH_EXTENSION), "utf8").
12624
12683
  split(/\r?\n/u).
12625
- filter((line) => /\w/u.test(line)).
12684
+ filter((line) => (/\w/u).test(line)).
12626
12685
  filter((line) => !(mustSkipNodeModulesDirectory && line.includes("node_modules"))).
12627
12686
  map((relativePathBasedGlob) => (path_1.default.parse(relativePathBasedGlob).ext.length === 0 ?
12628
12687
  es_extensions_nodejs_1.ImprovedGlob.buildExcludingOfDirectoryWithSubdirectoriesGlobSelector(es_extensions_nodejs_1.ImprovedPath.joinPathSegments([consumingProjectRootDirectoryAbsolutePath, relativePathBasedGlob], { alwaysForwardSlashSeparators: true })) :
@@ -12673,7 +12732,7 @@ class PugPreProcessorSpecialist {
12673
12732
  /* [ Theory ] Basically, "extends" declaration must be the first line of the Pug file but the unbuffered comment (`-//`)
12674
12733
  * is the only exception. */
12675
12734
  static isSourceCodeIncludingExtendingDeclaration(sourceCode) {
12676
- return /^extends/gmu.test(sourceCode);
12735
+ return (/^extends/gmu).test(sourceCode);
12677
12736
  }
12678
12737
  static isSourceCodeLineIncludingExtendingDeclaration(sourceCodeLine) {
12679
12738
  return sourceCodeLine.startsWith("extends");
@@ -12687,7 +12746,7 @@ class PugPreProcessorSpecialist {
12687
12746
  let endLineIndex;
12688
12747
  let currentlyIteratedLineIndex = startLineIndex + 1;
12689
12748
  for (const sourceCodeLine of sourceCodeLines.slice(currentlyIteratedLineIndex)) {
12690
- if (/^(?: +|\t)?block/u.test(sourceCodeLine)) {
12749
+ if ((/^(?: +|\t)?block/u).test(sourceCodeLine)) {
12691
12750
  endLineIndex = currentlyIteratedLineIndex;
12692
12751
  break;
12693
12752
  }
@@ -14282,7 +14341,7 @@ function revisionHash(data) {
14282
14341
  \***********************/
14283
14342
  /***/ ((module) => {
14284
14343
 
14285
- module.exports = JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.4.0","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.18.0"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@stylistic/eslint-plugin":"1.7.0","@typescript-eslint/eslint-plugin":"7.4.0","@typescript-eslint/parser":"7.4.0","@vue/compiler-sfc":"3.4.21","@webdiscus/pug-loader":"2.11.0","@yamato-daiwa/es-extensions":"1.7.0-alpha.10","@yamato-daiwa/es-extensions-nodejs":"1.7.0-alpha.6","@yamato-daiwa/style_guides":"0.2.0","autoprefixer":"10.4.19","browser-sync":"3.0.2","css-loader":"6.11.0","cssnano":"6.1.2","eslint":"8.57.0","eslint-plugin-import":"2.29.1","eslint-plugin-node":"11.1.0","eslint-plugin-react":"7.34.1","eslint-plugin-vue":"9.24.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":"9.0.1","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":"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.1.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"3.3.4","stylus":"0.63.0","stylus-loader":"8.0.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-nodemon":"0.0.37","@types/gulp-plumber":"0.0.33","@types/gulp-postcss":"8.0.6","@types/gulp-sourcemaps":"0.0.36","@types/gulp-stylus":"2.7.8","@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.1.0","ts-node":"10.9.2","typescript":"5.4.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"}}');
14344
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.4.1","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.18.0"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@stylistic/eslint-plugin":"1.7.2","@typescript-eslint/eslint-plugin":"7.7.0","@typescript-eslint/parser":"7.7.0","@vue/compiler-sfc":"3.4.24","@webdiscus/pug-loader":"2.11.0","@yamato-daiwa/es-extensions":"1.7.0-alpha.10","@yamato-daiwa/es-extensions-nodejs":"1.7.0-alpha.6","@yamato-daiwa/style_guides":"0.2.2","autoprefixer":"10.4.19","browser-sync":"3.0.2","css-loader":"6.11.0","cssnano":"6.1.2","eslint":"8.57.0","eslint-plugin-import":"2.29.1","eslint-plugin-node":"11.1.0","eslint-plugin-react":"7.34.1","eslint-plugin-vue":"9.25.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":"9.0.1","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":"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.1.0","stlint":"1.0.65","stream-combiner2":"1.1.1","style-loader":"3.3.4","stylus":"0.63.0","stylus-loader":"8.0.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.91.0","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-nodemon":"0.0.37","@types/gulp-plumber":"0.0.33","@types/gulp-postcss":"8.0.6","@types/gulp-sourcemaps":"0.0.36","@types/gulp-stylus":"2.7.8","@types/node":"20.12.7","@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":"2.5.3","@types/webpack-stream":"3.2.15","eslint-webpack-plugin":"4.1.0","ts-node":"10.9.2","typescript":"5.4.5","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"}}');
14286
14345
 
14287
14346
  /***/ })
14288
14347
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/automation",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
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",
@@ -19,14 +19,14 @@
19
19
  "EntryPoint.js"
20
20
  ],
21
21
  "dependencies": {
22
- "@stylistic/eslint-plugin": "1.7.0",
23
- "@typescript-eslint/eslint-plugin": "7.4.0",
24
- "@typescript-eslint/parser": "7.4.0",
25
- "@vue/compiler-sfc": "3.4.21",
22
+ "@stylistic/eslint-plugin": "1.7.2",
23
+ "@typescript-eslint/eslint-plugin": "7.7.0",
24
+ "@typescript-eslint/parser": "7.7.0",
25
+ "@vue/compiler-sfc": "3.4.24",
26
26
  "@webdiscus/pug-loader": "2.11.0",
27
27
  "@yamato-daiwa/es-extensions": "1.7.0-alpha.10",
28
28
  "@yamato-daiwa/es-extensions-nodejs": "1.7.0-alpha.6",
29
- "@yamato-daiwa/style_guides": "0.2.0",
29
+ "@yamato-daiwa/style_guides": "0.2.2",
30
30
  "autoprefixer": "10.4.19",
31
31
  "browser-sync": "3.0.2",
32
32
  "css-loader": "6.11.0",
@@ -35,7 +35,7 @@
35
35
  "eslint-plugin-import": "2.29.1",
36
36
  "eslint-plugin-node": "11.1.0",
37
37
  "eslint-plugin-react": "7.34.1",
38
- "eslint-plugin-vue": "9.24.0",
38
+ "eslint-plugin-vue": "9.25.0",
39
39
  "eslint-plugin-vue-pug": "0.6.2",
40
40
  "fork-ts-checker-webpack-plugin": "7.3.0",
41
41
  "gulp": "4.0.2",
@@ -69,7 +69,7 @@
69
69
  "vue-loader": "17.3.1",
70
70
  "vue-style-loader": "4.1.3",
71
71
  "w3c-html-validator": "0.8.1",
72
- "webpack": "5.88.2",
72
+ "webpack": "5.91.0",
73
73
  "webpack-node-externals": "3.0.0",
74
74
  "webpack-stream": "7.0.0",
75
75
  "worker-loader": "3.0.8",
@@ -87,16 +87,16 @@
87
87
  "@types/gulp-postcss": "8.0.6",
88
88
  "@types/gulp-sourcemaps": "0.0.36",
89
89
  "@types/gulp-stylus": "2.7.8",
90
- "@types/node": "18.13.0",
90
+ "@types/node": "20.12.7",
91
91
  "@types/node-notifier": "8.0.5",
92
92
  "@types/pa11y": "5.3.7",
93
- "@types/probe-image-size": "7.2.3",
94
- "@types/pug": "2.0.9",
93
+ "@types/probe-image-size": "7.2.4",
94
+ "@types/pug": "2.0.10",
95
95
  "@types/webpack-node-externals": "2.5.3",
96
96
  "@types/webpack-stream": "3.2.15",
97
97
  "eslint-webpack-plugin": "4.1.0",
98
98
  "ts-node": "10.9.2",
99
- "typescript": "5.4.3",
99
+ "typescript": "5.4.5",
100
100
  "webpack-cli": "5.1.4"
101
101
  },
102
102
  "scripts": {