@yamato-daiwa/automation 0.3.0-alpha.0 → 0.3.0-alpha.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 (3) hide show
  1. package/EntryPoint.js +12445 -1
  2. package/README.md +20 -20
  3. package/package.json +29 -32
package/README.md CHANGED
@@ -19,7 +19,7 @@ npm i @yamato-daiwa/automation -D -E
19
19
 
20
20
  <dl>
21
21
 
22
- <dt>@vue/compiler-sfc, vue, vue-loader</dt>
22
+ <dt>@vue/compiler-sfc, vue-loader</dt>
23
23
  <dd>Used to provide the support of Vue Single File Components for ECMAScript logic processing</dd>
24
24
 
25
25
  <dt>@webdiscus/pug-loader</dt>
@@ -41,9 +41,6 @@ npm i @yamato-daiwa/automation -D -E
41
41
  <dt>browser-sync</dt>
42
42
  <dd>Used to provide the automation of browser opening and reloading when project incrementally rebuilt</dd>
43
43
 
44
- <dt>cheerio</dt>
45
- <dd>Used for manipulation with compiled HTML code like resolving of paths aliases</dd>
46
-
47
44
  <dt>css-loader</dt>
48
45
  <dd>Used to provide the imports of stylesheets to ECMAScript bundles</dd>
49
46
 
@@ -89,23 +86,36 @@ npm i @yamato-daiwa/automation -D -E
89
86
  <dt>gulp-stylus</dt>
90
87
  <dd>Used to provide the basic Stylus-to-CSS transpiling</dd>
91
88
 
92
- <dt>html-validator</dt>
93
- <dd>Used to get the HTML validation data from W3C service. The formatted output to terminal has been implemented by YDA development side.</dd>
94
-
95
89
  <dt>imagemin-pngquant</dt>
96
90
  <dd>Used to provides the optimization of PNG files</dd>
97
91
 
98
92
  <dt>json5-loader</dt>
99
93
  <dd>Used to provide the imports of JSON5 as ECMAScript native object to JavaScript bundle</dd>
100
94
 
95
+ <dt>node-html-parser</dt>
96
+ <dd>Used for the accessibility inspection of the HTML code</dd>
97
+
101
98
  <dt>node-notifier</dt>
102
99
  <dd>Used for accessing to native toast message functionality</dd>
100
+
101
+ <dt>pa11y</dt>
102
+ <dd>Used for manipulation with compiled HTML code like resolving of paths aliases</dd>
103
103
 
104
+ <dt>probe-image-size</dt>
105
+ <dd>Used for retrieving of the images with and height.</dd>
106
+
104
107
  <dt>pug-lint</dt>
105
108
  <dd>Used to providing linting of Pug source code</dd>
106
109
 
107
110
  <dt>pug-plain-loader</dt>
108
111
  <dd>Used to providing of the Pug source code language for Vue templates in Single File Components</dd>
112
+
113
+ <dt>puppeteer</dt>
114
+ <dd>
115
+ Used for the accessibility inspection of the HTML code.
116
+ The <b>pa11y</b> works only with URIs and does not support the raw HTML code; to check the accessibility of the
117
+ raw HTML code, the <b>puppeteer</b> is required.
118
+ </dd>
109
119
 
110
120
  <dt>rev-hash</dt>
111
121
  <dd>
@@ -143,6 +153,9 @@ npm i @yamato-daiwa/automation -D -E
143
153
 
144
154
  <dt>vue-tcs</dt>
145
155
  <dd>Used to provide the optimized type checking of Vue and also TypeScript files.</dd>
156
+
157
+ <dt>w3c-html-validator</dt>
158
+ <dd>Used to get the HTML validation data from W3C service. The formatted output to terminal has been implemented by YDA development side.</dd>
146
159
 
147
160
  <dt>webpack</dt>
148
161
  <dd>Used as basic tool for the ECMAScript logic processing</dd>
@@ -188,16 +201,3 @@ All **@types** are the TypeScript types definitions that required for normal tra
188
201
  <dd>Used for the project building</dd>
189
202
 
190
203
  </dl>
191
-
192
-
193
- ### Temporary dependencies
194
-
195
- <dl>
196
-
197
- <dt>glob</dt>
198
- <dd>Used by <b>ImprovedGlob</b> which will be moved to <b>@yamato-daiwa/es-extensions-nodejs</b> and used as dependency </dd>
199
-
200
- <dt>minimatch</dt>
201
- <dd>used by <b>ImprovedGlob</b> which will be moved to <b>@yamato-daiwa/es-extensions-nodejs</b> and used as dependency </dd>
202
-
203
- </dl>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/automation",
3
- "version": "0.3.0-alpha.0",
3
+ "version": "0.3.0-alpha.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,25 +19,22 @@
19
19
  "EntryPoint.js"
20
20
  ],
21
21
  "dependencies": {
22
- "@typescript-eslint/eslint-plugin": "5.57.0",
23
- "@typescript-eslint/parser": "5.57.0",
24
- "@vue/compiler-sfc": "3.2.47",
22
+ "@typescript-eslint/eslint-plugin": "6.6.0",
23
+ "@typescript-eslint/parser": "6.6.0",
24
+ "@vue/compiler-sfc": "3.3.4",
25
25
  "@webdiscus/pug-loader": "2.10.4",
26
- "@yamato-daiwa/es-extensions": "1.6.2",
27
- "@yamato-daiwa/es-extensions-nodejs": "1.6.0-alpha.8",
28
- "@yamato-daiwa/style_guides": "0.0.47",
29
- "access-sniff": "3.2.0",
30
- "autoprefixer": "10.4.14",
31
- "browser-sync": "2.27.11",
32
- "cheerio": "1.0.0-rc.1",
26
+ "@yamato-daiwa/es-extensions": "../../YamatoDaiwaES_Extensions/CoreLibrary/Package",
27
+ "@yamato-daiwa/es-extensions-nodejs": "../../YamatoDaiwaES_Extensions/NodeJS/Package",
28
+ "@yamato-daiwa/style_guides": "0.0.57",
29
+ "autoprefixer": "10.4.15",
30
+ "browser-sync": "2.29.3",
33
31
  "css-loader": "6.7.3",
34
32
  "cssnano": "5.1.14",
35
- "eslint": "8.37.0",
36
- "eslint-plugin-import": "2.27.5",
33
+ "eslint": "8.48.0",
34
+ "eslint-plugin-import": "2.28.1",
37
35
  "eslint-plugin-node": "11.1.0",
38
- "eslint-webpack-plugin": "4.0.0",
36
+ "eslint-webpack-plugin": "4.0.1",
39
37
  "fork-ts-checker-webpack-plugin": "7.3.0",
40
- "glob": "7.2.0",
41
38
  "gulp": "4.0.2",
42
39
  "gulp-data": "1.3.1",
43
40
  "gulp-debug": "4.0.0",
@@ -50,26 +47,27 @@
50
47
  "gulp-pug": "5.0.0",
51
48
  "gulp-sourcemaps": "3.0.0",
52
49
  "gulp-stylus": "2.7.1",
53
- "html-validator": "6.0.1",
54
50
  "imagemin-pngquant": "9.0.2",
55
51
  "json5-loader": "4.0.1",
56
- "minimatch": "5.1.1",
52
+ "node-html-parser": "6.1.5",
57
53
  "node-notifier": "10.0.1",
58
- "prettier": "2.8.7",
59
- "pug-lint": "2.6.0",
54
+ "pa11y": "6.2.3",
55
+ "probe-image-size": "7.2.3",
56
+ "pug-lint": "2.7.0",
60
57
  "pug-plain-loader": "1.1.0",
58
+ "puppeteer": "21.0.0",
61
59
  "rev-hash": "4.0.0",
62
60
  "stlint": "1.0.65",
63
61
  "stream-combiner2": "1.1.1",
64
62
  "style-loader": "3.3.1",
65
63
  "stylus-loader": "7.1.0",
66
- "ts-loader": "9.4.2",
64
+ "ts-loader": "9.4.4",
67
65
  "vinyl": "2.2.1",
68
- "vue": "3.2.47",
69
- "vue-loader": "17.0.1",
66
+ "vue-loader": "17.2.2",
70
67
  "vue-style-loader": "4.1.3",
71
- "vue-tsc": "1.2.0",
72
- "webpack": "5.76.2",
68
+ "vue-tsc": "1.8.8",
69
+ "w3c-html-validator": "0.8.1",
70
+ "webpack": "5.88.2",
73
71
  "webpack-node-externals": "3.0.0",
74
72
  "webpack-stream": "7.0.0",
75
73
  "worker-loader": "3.0.8",
@@ -77,9 +75,7 @@
77
75
  },
78
76
  "devDependencies": {
79
77
  "@types/browser-sync": "2.26.3",
80
- "@types/cheerio": "0.22.31",
81
78
  "@types/cssnano": "5.0.0",
82
- "@types/glob": "7.2.0",
83
79
  "@types/gulp": "4.0.10",
84
80
  "@types/gulp-debug": "2.0.32",
85
81
  "@types/gulp-html-prettify": "0.0.2",
@@ -87,18 +83,19 @@
87
83
  "@types/gulp-imagemin": "8.0.1",
88
84
  "@types/gulp-intercept": "0.1.1",
89
85
  "@types/gulp-plumber": "0.0.33",
90
- "@types/gulp-postcss": "8.0.2",
91
- "@types/gulp-sourcemaps": "0.0.35",
92
- "@types/gulp-stylus": "2.7.4",
93
- "@types/html-validator": "5.0.3",
86
+ "@types/gulp-postcss": "8.0.3",
87
+ "@types/gulp-sourcemaps": "0.0.36",
88
+ "@types/gulp-stylus": "2.7.5",
94
89
  "@types/node": "18.13.0",
95
90
  "@types/node-notifier": "8.0.2",
91
+ "@types/pa11y": "5.3.5",
92
+ "@types/probe-image-size": "7.2.0",
96
93
  "@types/pug": "2.0.6",
97
94
  "@types/webpack-node-externals": "2.5.3",
98
95
  "@types/webpack-stream": "3.2.12",
99
96
  "ts-node": "10.9.1",
100
- "typescript": "5.0.3",
101
- "webpack-cli": "5.0.1"
97
+ "typescript": "5.2.2",
98
+ "webpack-cli": "5.1.4"
102
99
  },
103
100
  "scripts": {
104
101
  "Incremental development building": "webpack --mode development",