@yamato-daiwa/automation 0.3.0-alpha.1 → 0.3.0-alpha.3

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 (3) hide show
  1. package/EntryPoint.js +14554 -3386
  2. package/README.md +6 -9
  3. package/package.json +20 -21
package/README.md CHANGED
@@ -47,9 +47,6 @@ npm i @yamato-daiwa/automation -D -E
47
47
  <dt>cssnano</dt>
48
48
  <dd>Used to provide optimization and minification of compiled CSS code</dd>
49
49
 
50
- <dt>eslint-webpack-plugin</dt>
51
- <dd>Used to provide the ESLint inspection with output to terminal during processing of ECMAScript logic</dd>
52
-
53
50
  <dt>fork-ts-checker-webpack-plugin</dt>
54
51
  <dd>Used to improve the performance of TypeScript transpiling functionality</dd>
55
52
 
@@ -59,9 +56,6 @@ npm i @yamato-daiwa/automation -D -E
59
56
  <dt>gulp-data</dt>
60
57
  <dd>Used to provide the global variables defined by user in appropriate configuration inside the Pug templates</dd>
61
58
 
62
- <dt>gulp-debug</dt>
63
- <dd>Used to outputs the processed files names and quantity to the terminal</dd>
64
-
65
59
  <dt>gulp-html-prettify</dt>
66
60
  <dd>Used to provide the formatting of output HTML code better than suggested by Pug pre-processor</dd>
67
61
 
@@ -71,9 +65,6 @@ npm i @yamato-daiwa/automation -D -E
71
65
  <dt>gulp-imagemin</dt>
72
66
  <dd>Used to provide the automation of images files optimization</dd>
73
67
 
74
- <dt>gulp-intercept</dt>
75
- <dd>Used for defining of configuration-dependent logic inside Gulp pipelines</dd>
76
-
77
68
  <dt>gulp-plumber</dt>
78
69
  <dd>Used for errors handing inside Gulp pipelines</dd>
79
70
 
@@ -191,6 +182,12 @@ All **@types** are the TypeScript types definitions that required for normal tra
191
182
 
192
183
  <dl>
193
184
 
185
+ <dt>eslint-webpack-plugin</dt>
186
+ <dd>
187
+ Required for the outputting of ESLint error only on building of YDA application.
188
+ YDA itself uses own ESLint wrapper for better performance.
189
+ </dd>
190
+
194
191
  <dt>ts-node</dt>
195
192
  <dd>Used to support the Webpack configuration written by TypeScript</dd>
196
193
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/automation",
3
- "version": "0.3.0-alpha.1",
3
+ "version": "0.3.0-alpha.3",
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,29 +19,30 @@
19
19
  "EntryPoint.js"
20
20
  ],
21
21
  "dependencies": {
22
- "@typescript-eslint/eslint-plugin": "6.6.0",
23
- "@typescript-eslint/parser": "6.6.0",
24
- "@vue/compiler-sfc": "3.3.4",
25
- "@webdiscus/pug-loader": "2.10.4",
22
+ "@stylistic/eslint-plugin": "1.5.3",
23
+ "@typescript-eslint/eslint-plugin": "6.18.1",
24
+ "@typescript-eslint/parser": "6.18.1",
25
+ "@vue/compiler-sfc": "3.4.12",
26
+ "@webdiscus/pug-loader": "2.10.5",
26
27
  "@yamato-daiwa/es-extensions": "../../YamatoDaiwaES_Extensions/CoreLibrary/Package",
27
28
  "@yamato-daiwa/es-extensions-nodejs": "../../YamatoDaiwaES_Extensions/NodeJS/Package",
28
- "@yamato-daiwa/style_guides": "0.0.57",
29
+ "@yamato-daiwa/style_guides": "0.1.1",
29
30
  "autoprefixer": "10.4.15",
30
31
  "browser-sync": "2.29.3",
31
32
  "css-loader": "6.7.3",
32
33
  "cssnano": "5.1.14",
33
- "eslint": "8.48.0",
34
- "eslint-plugin-import": "2.28.1",
34
+ "eslint": "8.56.0",
35
+ "eslint-plugin-import": "2.29.1",
35
36
  "eslint-plugin-node": "11.1.0",
36
- "eslint-webpack-plugin": "4.0.1",
37
+ "eslint-plugin-react": "7.33.2",
38
+ "eslint-plugin-vue": "9.20.1",
39
+ "eslint-plugin-vue-pug": "0.6.1",
37
40
  "fork-ts-checker-webpack-plugin": "7.3.0",
38
41
  "gulp": "4.0.2",
39
42
  "gulp-data": "1.3.1",
40
- "gulp-debug": "4.0.0",
41
43
  "gulp-html-prettify": "0.0.1",
42
44
  "gulp-if": "3.0.0",
43
45
  "gulp-imagemin": "7.1.0",
44
- "gulp-intercept": "0.1.0",
45
46
  "gulp-plumber": "1.2.1",
46
47
  "gulp-postcss": "9.0.1",
47
48
  "gulp-pug": "5.0.0",
@@ -63,9 +64,8 @@
63
64
  "stylus-loader": "7.1.0",
64
65
  "ts-loader": "9.4.4",
65
66
  "vinyl": "2.2.1",
66
- "vue-loader": "17.2.2",
67
+ "vue-loader": "17.3.1",
67
68
  "vue-style-loader": "4.1.3",
68
- "vue-tsc": "1.8.8",
69
69
  "w3c-html-validator": "0.8.1",
70
70
  "webpack": "5.88.2",
71
71
  "webpack-node-externals": "3.0.0",
@@ -77,24 +77,23 @@
77
77
  "@types/browser-sync": "2.26.3",
78
78
  "@types/cssnano": "5.0.0",
79
79
  "@types/gulp": "4.0.10",
80
- "@types/gulp-debug": "2.0.32",
81
80
  "@types/gulp-html-prettify": "0.0.2",
82
81
  "@types/gulp-if": "0.0.34",
83
82
  "@types/gulp-imagemin": "8.0.1",
84
- "@types/gulp-intercept": "0.1.1",
85
83
  "@types/gulp-plumber": "0.0.33",
86
84
  "@types/gulp-postcss": "8.0.3",
87
85
  "@types/gulp-sourcemaps": "0.0.36",
88
86
  "@types/gulp-stylus": "2.7.5",
89
87
  "@types/node": "18.13.0",
90
- "@types/node-notifier": "8.0.2",
91
- "@types/pa11y": "5.3.5",
92
- "@types/probe-image-size": "7.2.0",
93
- "@types/pug": "2.0.6",
88
+ "@types/node-notifier": "8.0.5",
89
+ "@types/pa11y": "5.3.7",
90
+ "@types/probe-image-size": "7.2.3",
91
+ "@types/pug": "2.0.9",
94
92
  "@types/webpack-node-externals": "2.5.3",
95
- "@types/webpack-stream": "3.2.12",
93
+ "@types/webpack-stream": "3.2.15",
94
+ "eslint-webpack-plugin": "4.0.1",
96
95
  "ts-node": "10.9.1",
97
- "typescript": "5.2.2",
96
+ "typescript": "5.3.3",
98
97
  "webpack-cli": "5.1.4"
99
98
  },
100
99
  "scripts": {