@yamato-daiwa/automation 0.8.0-alpha.1 → 0.9.0-alpha.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.
- package/EntryPoint.js +75 -59
- package/README.md +19 -4
- package/package.json +21 -20
package/EntryPoint.js
CHANGED
|
@@ -34,7 +34,7 @@ function revisionHash(data) {
|
|
|
34
34
|
\***********************/
|
|
35
35
|
/***/ ((module) => {
|
|
36
36
|
|
|
37
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.
|
|
37
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@yamato-daiwa/automation","version":"0.9.0-alpha.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":">=20.0.0"},"bin":{"yda":"Executable"},"files":["EntryPoint.js"],"dependencies":{"@eslint-community/eslint-plugin-eslint-comments":"4.5.0","@stylistic/eslint-plugin":"5.4.0","@typescript-eslint/eslint-plugin":"8.46.1","@typescript-eslint/parser":"8.46.1","@vue/compiler-sfc":"3.5.22","@webdiscus/pug-loader":"2.11.1","@yamato-daiwa/es-extensions":"1.8.1","@yamato-daiwa/es-extensions-nodejs":"1.8.1","@yamato-daiwa/style_guides":"0.10.1","@yamato-daiwa/universal-reactive-webpack-loader":"0.0.0","autoprefixer":"10.4.21","browser-sync":"3.0.4","css-loader":"7.1.2","cssnano":"7.1.1","dotenv":"17.2.3","eslint":"9.38.0","eslint-plugin-import":"2.32.0","eslint-plugin-n":"17.23.1","eslint-plugin-react":"7.37.5","eslint-plugin-vue":"9.33.0","eslint-plugin-vue-pug":"0.6.2","gulp":"4.0.2","gulp-data":"1.3.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","htmlnano":"2.1.5","imagemin-pngquant":"9.0.2","js-beautify":"1.15.4","json5-loader":"4.0.1","nanoid":"5.1.6","node-html-parser":"7.0.1","node-notifier":"10.0.1","pa11y":"9.0.1","postcss-loader":"8.2.0","postcss-normalize-stylus-compatible-container-query-syntax":"1.1.0","probe-image-size":"7.2.3","pug-lint":"2.7.0","puppeteer":"24.10.0","require-from-string":"2.0.2","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.2","ts-loader":"9.5.4","vinyl":"2.2.1","vnu-jar":"24.10.17","vue-loader":"17.4.2","vue-style-loader":"4.1.3","vue-tsc":"3.1.1","webpack":"5.102.1","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-if":"3.0.5","@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/js-beautify":"1.14.3","@types/node":"22.15.30","@types/node-notifier":"8.0.5","@types/pa11y":"5.3.7","@types/probe-image-size":"7.2.5","@types/pug":"2.0.10","@types/require-from-string":"1.2.3","@types/vnu-jar":"17.11.2","@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.9.3","webpack-cli":"6.0.1"},"scripts":{"Incremental Development Building":"webpack --mode development","Production Building":"webpack --mode production","Linting":"eslint Source"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation.git"},"homepage":"https://automation.yamato-daiwa.com/","funding":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation?sponsor=1","bugs":{"url":"https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation/issues","email":"tokugawa.takesi@gmail.com"}}');
|
|
38
38
|
|
|
39
39
|
/***/ }),
|
|
40
40
|
|
|
@@ -1730,7 +1730,8 @@ class BrowserCoordinatorRelatedFilesWatcher extends FilesPassiveWatcher_1.defaul
|
|
|
1730
1730
|
ID: "BROWSER_COORDINATOR_RELATED_FILES_WATCHER",
|
|
1731
1731
|
targetFilesGlobSelectors: [
|
|
1732
1732
|
es_extensions_nodejs_1.ImprovedGlob.buildAllFilesInCurrentDirectoryAndBelowGlobSelector({
|
|
1733
|
-
basicDirectoryPath: browserLiveReloadingSettingsRepresentative.targetFilesRootDirectoryAbsolutePath
|
|
1733
|
+
basicDirectoryPath: browserLiveReloadingSettingsRepresentative.targetFilesRootDirectoryAbsolutePath,
|
|
1734
|
+
fileNamesExtensions: ["html", "js"]
|
|
1734
1735
|
})
|
|
1735
1736
|
],
|
|
1736
1737
|
mustLogEvents: browserLiveReloadingSettingsRepresentative.mustLogOutputFileChangeDetection
|
|
@@ -1798,36 +1799,44 @@ class BrowserLiveReloader {
|
|
|
1798
1799
|
initializeBrowsersync() {
|
|
1799
1800
|
browser_sync_1.default.init({
|
|
1800
1801
|
/* [ Browsersync theory ] Either "server" or "proxy" could be specified but not both. */
|
|
1801
|
-
...(0, es_extensions_1.isNull)(this.browserLiveReloadingSettingsRepresentative.proxy) ?
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1802
|
+
...(0, es_extensions_1.isNull)(this.browserLiveReloadingSettingsRepresentative.proxy) ?
|
|
1803
|
+
{
|
|
1804
|
+
server: {
|
|
1805
|
+
baseDir: this.browserLiveReloadingSettingsRepresentative.targetFilesRootDirectoryAbsolutePath,
|
|
1806
|
+
index: this.browserLiveReloadingSettingsRepresentative.startingFileNameWithExtension
|
|
1807
|
+
}
|
|
1808
|
+
} : {
|
|
1807
1809
|
proxy: this.browserLiveReloadingSettingsRepresentative.proxy
|
|
1808
1810
|
},
|
|
1809
|
-
...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.HTTPS) ?
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1811
|
+
...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.HTTPS) ?
|
|
1812
|
+
{
|
|
1813
|
+
https: {
|
|
1814
|
+
key: this.browserLiveReloadingSettingsRepresentative.HTTPS.keyAbsolutePath,
|
|
1815
|
+
cert: this.browserLiveReloadingSettingsRepresentative.HTTPS.certificateAbsolutePath
|
|
1816
|
+
}
|
|
1817
|
+
} :
|
|
1818
|
+
null,
|
|
1815
1819
|
cors: this.browserLiveReloadingSettingsRepresentative.mustUseCORS,
|
|
1816
1820
|
/* [ Browsersync theory ] When port is undefined, it will be assigned automatically. */
|
|
1817
|
-
...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.localServerCustomPort) ?
|
|
1818
|
-
|
|
1819
|
-
|
|
1821
|
+
...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.localServerCustomPort) ?
|
|
1822
|
+
{
|
|
1823
|
+
port: this.browserLiveReloadingSettingsRepresentative.localServerCustomPort
|
|
1824
|
+
} :
|
|
1825
|
+
null,
|
|
1820
1826
|
ignore: this.browserLiveReloadingSettingsRepresentative.globSelectorsOfFilesAndDirectoriesWhichWillBeIgnored,
|
|
1821
1827
|
/* [ Browsersync theory ] When value is empty array, no browsers will be opened. */
|
|
1822
|
-
...this.browserLiveReloadingSettingsRepresentative.targetBrowsers.length > 0 ?
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1828
|
+
...this.browserLiveReloadingSettingsRepresentative.targetBrowsers.length > 0 ?
|
|
1829
|
+
{
|
|
1830
|
+
browser: this.browserLiveReloadingSettingsRepresentative.targetBrowsers
|
|
1831
|
+
} :
|
|
1832
|
+
null,
|
|
1833
|
+
ui: this.browserLiveReloadingSettingsRepresentative.mustEnableBrowsersyncUserInterface ?
|
|
1834
|
+
{
|
|
1835
|
+
/* [ Browsersync theory ] When the port is undefined, it will be assigned automatically. */
|
|
1836
|
+
...(0, es_extensions_1.isNotNull)(this.browserLiveReloadingSettingsRepresentative.browsersyncUserInterfaceCustomPort) ?
|
|
1837
|
+
{ port: this.browserLiveReloadingSettingsRepresentative.browsersyncUserInterfaceCustomPort } : null
|
|
1838
|
+
} :
|
|
1839
|
+
false,
|
|
1831
1840
|
logLevel: "warn",
|
|
1832
1841
|
notify: this.browserLiveReloadingSettingsRepresentative.mustDisplayBrowsersyncConnectedPopupInBrowser,
|
|
1833
1842
|
middleware: this.onRequest.bind(this)
|
|
@@ -7610,7 +7619,11 @@ class ECMA_ScriptLogicProcessor {
|
|
|
7610
7619
|
const webpackMultiCompiler = (0, webpack_1.default)(this.webpackConfigurationsForExistingEntryPoints);
|
|
7611
7620
|
if ((0, es_extensions_1.isNull)(webpackMultiCompiler)) {
|
|
7612
7621
|
es_extensions_1.Logger.throwErrorWithFormattedMessage({
|
|
7613
|
-
errorInstance: new es_extensions_1.UnexpectedEventError(
|
|
7622
|
+
errorInstance: new es_extensions_1.UnexpectedEventError(es_extensions_1.PoliteErrorsMessagesBuilder.buildMessage({
|
|
7623
|
+
politeExplanation: "It has occurred some problem with changed functionality of Webpack, the dependency of YDA.",
|
|
7624
|
+
technicalDetails: "The `Webpack` function returned the null. " +
|
|
7625
|
+
"Previously according to TypeScript type definitions, the returned value was always non-nullable. "
|
|
7626
|
+
})),
|
|
7614
7627
|
title: es_extensions_1.UnexpectedEventError.localization.defaultTitle,
|
|
7615
7628
|
occurrenceLocation: "ECMA_ScriptLogicProcessor.constructor(...parameters)"
|
|
7616
7629
|
});
|
|
@@ -8611,9 +8624,10 @@ const WebpackSpecialist_1 = __importDefault(__webpack_require__(/*! @ThirdPartyS
|
|
|
8611
8624
|
const TypeScriptSpecialist_1 = __importDefault(__webpack_require__(/*! @ThirdPartySolutionsSpecialists/TypeScriptSpecialist */ "./ThirdPartySolutionsSpecialists/TypeScriptSpecialist.ts"));
|
|
8612
8625
|
/* ─── Applied Utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
8613
8626
|
const webpack_1 = __importDefault(__webpack_require__(/*! webpack */ "webpack"));
|
|
8614
|
-
const webpackbar_1 = __importDefault(__webpack_require__(/*! webpackbar */ "webpackbar"));
|
|
8615
8627
|
const vue_loader_1 = __webpack_require__(/*! vue-loader */ "vue-loader");
|
|
8616
8628
|
const webpack_node_externals_1 = __importDefault(__webpack_require__(/*! webpack-node-externals */ "webpack-node-externals"));
|
|
8629
|
+
const autoprefixer_1 = __importDefault(__webpack_require__(/*! autoprefixer */ "autoprefixer"));
|
|
8630
|
+
const cssnano_1 = __importDefault(__webpack_require__(/*! cssnano */ "cssnano"));
|
|
8617
8631
|
/* ─── General Utils ──────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
8618
8632
|
const path_1 = __importDefault(__webpack_require__(/*! path */ "path"));
|
|
8619
8633
|
const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
|
|
@@ -8647,6 +8661,26 @@ class WebpackConfigGenerator {
|
|
|
8647
8661
|
const willPugLibraryBeBuilt = entryPointsGroupSettings.distributing?.exposingOfExportsFromEntryPoints.mustExpose === true &&
|
|
8648
8662
|
entryPointsGroupSettings.targetRuntime.type === SupportedECMA_ScriptRuntimesTypes.pug;
|
|
8649
8663
|
const distributingSettings = entryPointsGroupSettings.distributing;
|
|
8664
|
+
const postCSS_LoaderSettings = {
|
|
8665
|
+
loader: "postcss-loader",
|
|
8666
|
+
options: {
|
|
8667
|
+
postcssOptions: {
|
|
8668
|
+
plugins: [
|
|
8669
|
+
"postcss-normalize-stylus-compatible-container-query-syntax",
|
|
8670
|
+
autoprefixer_1.default,
|
|
8671
|
+
(0, cssnano_1.default)({
|
|
8672
|
+
preset: [
|
|
8673
|
+
"default",
|
|
8674
|
+
{
|
|
8675
|
+
normalizeWhitespace: !masterConfigRepresentative.mustProvideIncrementalBuilding,
|
|
8676
|
+
discardComments: !masterConfigRepresentative.mustProvideIncrementalBuilding
|
|
8677
|
+
}
|
|
8678
|
+
]
|
|
8679
|
+
})
|
|
8680
|
+
]
|
|
8681
|
+
}
|
|
8682
|
+
}
|
|
8683
|
+
};
|
|
8650
8684
|
return {
|
|
8651
8685
|
name: entryPointsGroupSettings.ID,
|
|
8652
8686
|
/* [ Webpack theory ] In this case, path separators must be operating-system-dependent; otherwise the following
|
|
@@ -8815,7 +8849,7 @@ class WebpackConfigGenerator {
|
|
|
8815
8849
|
},
|
|
8816
8850
|
{
|
|
8817
8851
|
test: /\.ydur\.pug$/u,
|
|
8818
|
-
loader: "
|
|
8852
|
+
loader: "@yamato-daiwa/universal-reactive-webpack-loader"
|
|
8819
8853
|
},
|
|
8820
8854
|
{
|
|
8821
8855
|
loader: "@webdiscus/pug-loader",
|
|
@@ -8855,6 +8889,7 @@ class WebpackConfigGenerator {
|
|
|
8855
8889
|
use: [
|
|
8856
8890
|
"vue-style-loader",
|
|
8857
8891
|
"css-loader",
|
|
8892
|
+
postCSS_LoaderSettings,
|
|
8858
8893
|
"stylus-loader"
|
|
8859
8894
|
]
|
|
8860
8895
|
},
|
|
@@ -8862,6 +8897,7 @@ class WebpackConfigGenerator {
|
|
|
8862
8897
|
use: [
|
|
8863
8898
|
"style-loader",
|
|
8864
8899
|
"css-loader",
|
|
8900
|
+
postCSS_LoaderSettings,
|
|
8865
8901
|
"stylus-loader"
|
|
8866
8902
|
]
|
|
8867
8903
|
}
|
|
@@ -8910,12 +8946,7 @@ class WebpackConfigGenerator {
|
|
|
8910
8946
|
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false
|
|
8911
8947
|
} : null
|
|
8912
8948
|
}),
|
|
8913
|
-
new vue_loader_1.VueLoaderPlugin()
|
|
8914
|
-
new webpackbar_1.default({
|
|
8915
|
-
name: entryPointsGroupSettings.ID,
|
|
8916
|
-
profile: true,
|
|
8917
|
-
fancy: false
|
|
8918
|
-
})
|
|
8949
|
+
new vue_loader_1.VueLoaderPlugin()
|
|
8919
8950
|
],
|
|
8920
8951
|
optimization: {
|
|
8921
8952
|
minimize: !masterConfigRepresentative.mustProvideIncrementalBuilding,
|
|
@@ -11286,13 +11317,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
11286
11317
|
const es_extensions_1 = __webpack_require__(/*! @yamato-daiwa/es-extensions */ "@yamato-daiwa/es-extensions");
|
|
11287
11318
|
const accessibilityInspectorLocalization__english = {
|
|
11288
11319
|
generateFileIsEmptyWarningLog: ({ targetFileRelativePath }) => ({
|
|
11289
|
-
title: "HTML
|
|
11320
|
+
title: "HTML Code Accessibility Inspection Terminated because of Empty File",
|
|
11290
11321
|
description: `File "${targetFileRelativePath}" is empty, no HTML to inspect. ` +
|
|
11291
11322
|
"Please note that at production-like modes the empty HTML files are being considered as invalid."
|
|
11292
11323
|
}),
|
|
11293
11324
|
generateInspectionStartedInfoLog: ({ targetFileRelativePath }) => ({
|
|
11294
|
-
title: "HTML
|
|
11295
|
-
description: `
|
|
11325
|
+
title: "HTML Code Accessibility Inspection Started",
|
|
11326
|
+
description: `Target file: ${targetFileRelativePath}`
|
|
11296
11327
|
}),
|
|
11297
11328
|
inspectionFailedErrorLog: {
|
|
11298
11329
|
title: "HTML conde accessibility checking failed",
|
|
@@ -11302,11 +11333,11 @@ const accessibilityInspectorLocalization__english = {
|
|
|
11302
11333
|
"We believe that you will check the HTML accessibility afterwards and fix the issues if they will be."
|
|
11303
11334
|
},
|
|
11304
11335
|
generateInspectionOfSingleFilesHasFinishedWithNoIssuesFoundSuccessLog: ({ targetFileRelativePath, secondsElapsed }) => ({
|
|
11305
|
-
title: "HTML
|
|
11336
|
+
title: "HTML Code Accessibility Checking of Single File Complete without Issues",
|
|
11306
11337
|
description: `The HTML code in file "${targetFileRelativePath}" has no the accessibility issues.\n` +
|
|
11307
|
-
(0, es_extensions_1.isUndefined)(secondsElapsed) ?
|
|
11308
|
-
|
|
11309
|
-
|
|
11338
|
+
((0, es_extensions_1.isUndefined)(secondsElapsed) ?
|
|
11339
|
+
"(Cached result, no changes in output HTML code since last building)" :
|
|
11340
|
+
`${secondsElapsed} seconds taken.`)
|
|
11310
11341
|
}),
|
|
11311
11342
|
generateIssuesFoundInSingleFileErrorLog: ({ targetFileRelativePath, formattedErrorsAndWarnings }) => ({
|
|
11312
11343
|
title: "HTML accessibility inspection, issue(s) found",
|
|
@@ -15178,10 +15209,8 @@ class StylesProcessor extends GulpStreamsBasedTaskExecutor_1.default {
|
|
|
15178
15209
|
preset: [
|
|
15179
15210
|
"default",
|
|
15180
15211
|
{
|
|
15181
|
-
normalizeWhitespace: !this.projectBuildingMasterConfigRepresentative.
|
|
15182
|
-
|
|
15183
|
-
discardComments: !this.projectBuildingMasterConfigRepresentative.isStaticPreviewBuildingMode &&
|
|
15184
|
-
!this.projectBuildingMasterConfigRepresentative.isLocalDevelopmentBuildingMode
|
|
15212
|
+
normalizeWhitespace: !this.projectBuildingMasterConfigRepresentative.mustProvideIncrementalBuilding,
|
|
15213
|
+
discardComments: !this.projectBuildingMasterConfigRepresentative.mustProvideIncrementalBuilding
|
|
15185
15214
|
}
|
|
15186
15215
|
]
|
|
15187
15216
|
})
|
|
@@ -17324,16 +17353,6 @@ module.exports = require("webpack-node-externals");
|
|
|
17324
17353
|
|
|
17325
17354
|
module.exports = require("webpack-stream");
|
|
17326
17355
|
|
|
17327
|
-
/***/ }),
|
|
17328
|
-
|
|
17329
|
-
/***/ "webpackbar":
|
|
17330
|
-
/*!*****************************!*\
|
|
17331
|
-
!*** external "webpackbar" ***!
|
|
17332
|
-
\*****************************/
|
|
17333
|
-
/***/ ((module) => {
|
|
17334
|
-
|
|
17335
|
-
module.exports = require("webpackbar");
|
|
17336
|
-
|
|
17337
17356
|
/***/ })
|
|
17338
17357
|
|
|
17339
17358
|
/******/ });
|
|
@@ -17397,9 +17416,6 @@ module.exports = require("webpackbar");
|
|
|
17397
17416
|
/******/ // Load entry module and return exports
|
|
17398
17417
|
/******/ // This entry module is referenced by other modules so it can't be inlined
|
|
17399
17418
|
/******/ var __webpack_exports__ = __webpack_require__("./EntryPoint.ts");
|
|
17400
|
-
/******/ var __webpack_export_target__ = exports;
|
|
17401
|
-
/******/ for(var __webpack_i__ in __webpack_exports__) __webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
17402
|
-
/******/ if(__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, "__esModule", { value: true });
|
|
17403
17419
|
/******/
|
|
17404
17420
|
/******/ })()
|
|
17405
17421
|
;
|
package/README.md
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
|
-
# Yamato Daiwa Automation 〔YDA〕
|
|
1
|
+
# Yamato Daiwa Automation 〔 YDA 〕
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@yamato-daiwa/automation)
|
|
4
|
+
[](https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation)
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
[](https://www.npmjs.com/package/@yamato-daiwa/automation)
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
[](https://github.com/TokugawaTakeshi/Yamato-Daiwa-Automation?sponsor=1)
|
|
12
|
+
[](https://www.paypal.com/paypalme/tokugawatakeshi)
|
|
13
|
+
[](https://liberapay.com/TokugawaT-YD)
|
|
2
14
|
|
|
3
15
|
The project building tool with declarative YAML configuration based on Gulp and Webpack.
|
|
4
16
|
Specializing on Pug, Stylus and TypeScript as source code languages; also works with images, fonts, videos and audios.
|
|
5
|
-
|
|
17
|
+
Can be used to develop websites, web applications, native application with HTML/CSS frontend, console utilities and libraries.
|
|
6
18
|
|
|
7
19
|

|
|
8
20
|
|
|
@@ -17,6 +29,7 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
17
29
|
## Documentation
|
|
18
30
|
|
|
19
31
|
+ [Terminology](https://automation.yamato-daiwa.com/Terminology/Terminology.english.html)
|
|
32
|
+
+ [Console Line Interface](https://automation.yamato-daiwa.com/ConsoleLineInterface/ConsoleLineInterface.english.html)
|
|
20
33
|
|
|
21
34
|
|
|
22
35
|
### Functionality
|
|
@@ -28,9 +41,10 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
28
41
|
+ [Resources Pointers Resolving](https://automation.yamato-daiwa.com/Functionality/MarkupProcessing/ResourcesPointersResolving/ResourcesPointersResolving.english.html)
|
|
29
42
|
+ [Localization](https://automation.yamato-daiwa.com/Functionality/MarkupProcessing/Localization/Localization.english.html)
|
|
30
43
|
+ Static Preview
|
|
31
|
-
+ [State Dependent Pages Variations](https://automation.yamato-daiwa.com/Functionality/MarkupProcessing/StaticPreview/StateDependentPagesVariations/StateDependentPagesVariations.english.html)
|
|
44
|
+
+ [State Dependent Pages Variations](https://automation.yamato-daiwa.com/Functionality/MarkupProcessing/StaticPreview/StateDependentPagesVariations/StateDependentPagesVariations.english.html)
|
|
32
45
|
+ [Browser Live Reloading](https://automation.yamato-daiwa.com/Functionality/BrowserLiveReloading/BrowserLiveReloading.english.html)
|
|
33
46
|
+ [Distributable package.json Generating](https://automation.yamato-daiwa.com/Functionality/DistributablePackageJSON_Generating/DistributablePackageJSON_Generating.english.html)
|
|
47
|
+
+ [Docker Integration](https://automation.yamato-daiwa.com/Functionality/DockerIntegration/DockerIntegration.english.html)
|
|
34
48
|
|
|
35
49
|
|
|
36
50
|
### Configuration File
|
|
@@ -40,4 +54,5 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
40
54
|
+ [Styles Processing Settings](https://automation.yamato-daiwa.com/ConfigurationFile/StylesProcessing/StylesProcessingSettings.english.html)
|
|
41
55
|
+ [ECMAScript Logic Processing Settings](https://automation.yamato-daiwa.com/ConfigurationFile/ECMAScriptLogicProcessing/ECMAScriptLogicProcessing.english.html)
|
|
42
56
|
+ [Images Processing Settings](https://automation.yamato-daiwa.com/ConfigurationFile/ImagesProcessing/ImagesProcessingSettings.english.html)
|
|
43
|
-
+ [Browser Live Reloading Settings](https://automation.yamato-daiwa.com/
|
|
57
|
+
+ [Browser Live Reloading Settings](https://automation.yamato-daiwa.com/ConfigurationFile/BrowserLiveReloading/BrowserLiveReloadingSettings.english.html)
|
|
58
|
+
+ [Docker Launching](https://automation.yamato-daiwa.com/ConfigurationFile/DockerLaunching/DockerLaunching.english.html)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/automation",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-alpha.0",
|
|
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",
|
|
@@ -20,22 +20,23 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
|
|
23
|
-
"@stylistic/eslint-plugin": "5.
|
|
24
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
25
|
-
"@typescript-eslint/parser": "8.
|
|
26
|
-
"@vue/compiler-sfc": "3.5.
|
|
23
|
+
"@stylistic/eslint-plugin": "5.4.0",
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "8.46.1",
|
|
25
|
+
"@typescript-eslint/parser": "8.46.1",
|
|
26
|
+
"@vue/compiler-sfc": "3.5.22",
|
|
27
27
|
"@webdiscus/pug-loader": "2.11.1",
|
|
28
28
|
"@yamato-daiwa/es-extensions": "1.8.1",
|
|
29
29
|
"@yamato-daiwa/es-extensions-nodejs": "1.8.1",
|
|
30
|
-
"@yamato-daiwa/style_guides": "0.
|
|
30
|
+
"@yamato-daiwa/style_guides": "0.10.1",
|
|
31
|
+
"@yamato-daiwa/universal-reactive-webpack-loader": "0.0.0",
|
|
31
32
|
"autoprefixer": "10.4.21",
|
|
32
33
|
"browser-sync": "3.0.4",
|
|
33
34
|
"css-loader": "7.1.2",
|
|
34
|
-
"cssnano": "7.1.
|
|
35
|
-
"dotenv": "17.2.
|
|
36
|
-
"eslint": "9.
|
|
35
|
+
"cssnano": "7.1.1",
|
|
36
|
+
"dotenv": "17.2.3",
|
|
37
|
+
"eslint": "9.38.0",
|
|
37
38
|
"eslint-plugin-import": "2.32.0",
|
|
38
|
-
"eslint-plugin-n": "17.
|
|
39
|
+
"eslint-plugin-n": "17.23.1",
|
|
39
40
|
"eslint-plugin-react": "7.37.5",
|
|
40
41
|
"eslint-plugin-vue": "9.33.0",
|
|
41
42
|
"eslint-plugin-vue-pug": "0.6.2",
|
|
@@ -49,17 +50,18 @@
|
|
|
49
50
|
"gulp-pug": "5.0.0",
|
|
50
51
|
"gulp-sourcemaps": "3.0.0",
|
|
51
52
|
"gulp-stylus": "3.0.1",
|
|
52
|
-
"htmlnano": "2.1.
|
|
53
|
+
"htmlnano": "2.1.5",
|
|
53
54
|
"imagemin-pngquant": "9.0.2",
|
|
54
55
|
"js-beautify": "1.15.4",
|
|
55
56
|
"json5-loader": "4.0.1",
|
|
56
|
-
"nanoid": "5.1.
|
|
57
|
+
"nanoid": "5.1.6",
|
|
57
58
|
"node-html-parser": "7.0.1",
|
|
58
59
|
"node-notifier": "10.0.1",
|
|
59
|
-
"pa11y": "9.0.
|
|
60
|
+
"pa11y": "9.0.1",
|
|
61
|
+
"postcss-loader": "8.2.0",
|
|
62
|
+
"postcss-normalize-stylus-compatible-container-query-syntax": "1.1.0",
|
|
60
63
|
"probe-image-size": "7.2.3",
|
|
61
64
|
"pug-lint": "2.7.0",
|
|
62
|
-
"pug3-ast-loader": "0.0.0",
|
|
63
65
|
"puppeteer": "24.10.0",
|
|
64
66
|
"require-from-string": "2.0.2",
|
|
65
67
|
"rev-hash": "4.1.0",
|
|
@@ -67,17 +69,16 @@
|
|
|
67
69
|
"stream-combiner2": "1.1.1",
|
|
68
70
|
"style-loader": "4.0.0",
|
|
69
71
|
"stylus": "0.63.0",
|
|
70
|
-
"stylus-loader": "8.1.
|
|
71
|
-
"ts-loader": "9.5.
|
|
72
|
+
"stylus-loader": "8.1.2",
|
|
73
|
+
"ts-loader": "9.5.4",
|
|
72
74
|
"vinyl": "2.2.1",
|
|
73
75
|
"vnu-jar": "24.10.17",
|
|
74
76
|
"vue-loader": "17.4.2",
|
|
75
77
|
"vue-style-loader": "4.1.3",
|
|
76
|
-
"vue-tsc": "3.
|
|
77
|
-
"webpack": "5.
|
|
78
|
+
"vue-tsc": "3.1.1",
|
|
79
|
+
"webpack": "5.102.1",
|
|
78
80
|
"webpack-node-externals": "3.0.0",
|
|
79
81
|
"webpack-stream": "7.0.0",
|
|
80
|
-
"webpackbar": "7.0.0",
|
|
81
82
|
"worker-loader": "3.0.8",
|
|
82
83
|
"yaml-loader": "0.8.1"
|
|
83
84
|
},
|
|
@@ -104,7 +105,7 @@
|
|
|
104
105
|
"@types/webpack-stream": "3.2.15",
|
|
105
106
|
"eslint-webpack-plugin": "4.2.0",
|
|
106
107
|
"ts-node": "10.9.2",
|
|
107
|
-
"typescript": "5.9.
|
|
108
|
+
"typescript": "5.9.3",
|
|
108
109
|
"webpack-cli": "6.0.1"
|
|
109
110
|
},
|
|
110
111
|
"scripts": {
|