@yamato-daiwa/automation 0.2.0-alpha.2 → 0.2.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.
- package/EntryPoint.js +1 -8672
- package/README.md +22 -3
- package/package.json +25 -26
package/README.md
CHANGED
|
@@ -52,6 +52,9 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
52
52
|
<dt>gulp</dt>
|
|
53
53
|
<dd>Used as main task manager, the tool for providing of arranging of the tasks to sequences and series and running them</dd>
|
|
54
54
|
|
|
55
|
+
<dt>gulp-data</dt>
|
|
56
|
+
<dd>Used to provide the global variables defined by user in appropriate configuration inside the Pug templates</dd>
|
|
57
|
+
|
|
55
58
|
<dt>gulp-debug</dt>
|
|
56
59
|
<dd>Used to outputs the processed files names and quantity to the terminal</dd>
|
|
57
60
|
|
|
@@ -93,6 +96,9 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
93
96
|
|
|
94
97
|
<dt>node-notifier</dt>
|
|
95
98
|
<dd>Used for accessing to native toast message functionality</dd>
|
|
99
|
+
|
|
100
|
+
<dt>pug-lint</dt>
|
|
101
|
+
<dd>Used to providing linting of Pug source code</dd>
|
|
96
102
|
|
|
97
103
|
<dt>pug-plain-loader</dt>
|
|
98
104
|
<dd>Used to providing of the Pug source code language for Vue templates in Single File Components</dd>
|
|
@@ -112,6 +118,9 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
112
118
|
<dt>stlint</dt>
|
|
113
119
|
<dd>Used for linting of styles written by Stylus. The formatted output to terminal has been implemented by YDA development side.</dd>
|
|
114
120
|
|
|
121
|
+
<dt>stream-combiner2</dt>
|
|
122
|
+
<dd>Used for creating of Gulp tasks with complicated conditionals and parallels.</dd>
|
|
123
|
+
|
|
115
124
|
<dt>style-loader</dt>
|
|
116
125
|
<dd>Used to provide the dynamic injection of CSS functionality which has been imported to JavaScript bundle built by Webpack</dd>
|
|
117
126
|
|
|
@@ -141,10 +150,20 @@ npm i @yamato-daiwa/automation -D -E
|
|
|
141
150
|
<dd>
|
|
142
151
|
Used to prevent the bundling of NodeJS modules by Webpack because this bundling brings a lot of warning and/or errors
|
|
143
152
|
while not required for console and server applications
|
|
144
|
-
</dd>
|
|
153
|
+
</dd>
|
|
154
|
+
|
|
155
|
+
<dt>webpack-stream</dt>
|
|
156
|
+
<dd>
|
|
157
|
+
Used only for the generating of Pug files with integrated JavaScript compiled from TypeScript.
|
|
158
|
+
For this subtask, <b>webpack-stream</b> is perfect, but it has many limitations so it is not being used for the
|
|
159
|
+
main processing of ECMAScript logic.
|
|
160
|
+
</dd>
|
|
145
161
|
|
|
146
|
-
<dt>
|
|
147
|
-
<dd>
|
|
162
|
+
<dt>webpack-node-externals</dt>
|
|
163
|
+
<dd>
|
|
164
|
+
Used to prevent the bundling of NodeJS modules by Webpack because this bundling brings a lot of warning and/or errors
|
|
165
|
+
while not required for console and server applications
|
|
166
|
+
</dd>
|
|
148
167
|
|
|
149
168
|
<dt>yaml-loader</dt>
|
|
150
169
|
<dd>Used to provide the import of content of YAML files converted to JavaScript native object</dd>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/automation",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.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,23 +19,23 @@
|
|
|
19
19
|
"EntryPoint.js"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
23
|
-
"@typescript-eslint/parser": "5.
|
|
24
|
-
"@vue/compiler-sfc": "3.2.
|
|
25
|
-
"@yamato-daiwa/es-extensions": "1.6.0-alpha.
|
|
26
|
-
"@yamato-daiwa/es-extensions-nodejs": "1.6.0-alpha.
|
|
27
|
-
"@yamato-daiwa/style_guides": "0.0.
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "5.46.0",
|
|
23
|
+
"@typescript-eslint/parser": "5.46.0",
|
|
24
|
+
"@vue/compiler-sfc": "3.2.45",
|
|
25
|
+
"@yamato-daiwa/es-extensions": "1.6.0-alpha.5",
|
|
26
|
+
"@yamato-daiwa/es-extensions-nodejs": "1.6.0-alpha.7",
|
|
27
|
+
"@yamato-daiwa/style_guides": "0.0.32",
|
|
28
28
|
"access-sniff": "3.2.0",
|
|
29
|
-
"autoprefixer": "10.4.
|
|
29
|
+
"autoprefixer": "10.4.13",
|
|
30
30
|
"browser-sync": "2.27.10",
|
|
31
31
|
"cheerio": "1.0.0-rc.1",
|
|
32
|
-
"css-loader": "6.7.
|
|
33
|
-
"cssnano": "5.1.
|
|
34
|
-
"eslint": "8.
|
|
32
|
+
"css-loader": "6.7.3",
|
|
33
|
+
"cssnano": "5.1.14",
|
|
34
|
+
"eslint": "8.29.0",
|
|
35
35
|
"eslint-plugin-import": "2.26.0",
|
|
36
36
|
"eslint-plugin-node": "11.1.0",
|
|
37
37
|
"eslint-webpack-plugin": "3.2.0",
|
|
38
|
-
"fork-ts-checker-webpack-plugin": "7.2.
|
|
38
|
+
"fork-ts-checker-webpack-plugin": "7.2.14",
|
|
39
39
|
"glob": "7.2.0",
|
|
40
40
|
"gulp": "4.0.2",
|
|
41
41
|
"gulp-data": "1.3.1",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"gulp-pug": "5.0.0",
|
|
50
50
|
"gulp-sourcemaps": "3.0.0",
|
|
51
51
|
"gulp-stylus": "2.7.1",
|
|
52
|
-
"html-loader": "
|
|
52
|
+
"html-loader": "4.2.0",
|
|
53
53
|
"html-validator": "6.0.1",
|
|
54
54
|
"imagemin-pngquant": "9.0.2",
|
|
55
55
|
"json5-loader": "4.0.1",
|
|
56
|
-
"minimatch": "5.1.
|
|
56
|
+
"minimatch": "5.1.1",
|
|
57
57
|
"node-notifier": "10.0.1",
|
|
58
58
|
"pug-html-loader": "1.1.5",
|
|
59
59
|
"pug-lint": "2.6.0",
|
|
@@ -62,25 +62,24 @@
|
|
|
62
62
|
"stlint": "1.0.65",
|
|
63
63
|
"stream-combiner2": "1.1.1",
|
|
64
64
|
"style-loader": "3.3.1",
|
|
65
|
-
"stylus-loader": "
|
|
66
|
-
"ts-loader": "9.
|
|
65
|
+
"stylus-loader": "7.1.0",
|
|
66
|
+
"ts-loader": "9.4.2",
|
|
67
67
|
"vinyl": "2.2.1",
|
|
68
|
-
"vue": "3.2.
|
|
69
|
-
"vue-loader": "17.0.
|
|
68
|
+
"vue": "3.2.45",
|
|
69
|
+
"vue-loader": "17.0.1",
|
|
70
70
|
"vue-style-loader": "4.1.3",
|
|
71
|
-
"webpack": "5.
|
|
71
|
+
"webpack": "5.75.0",
|
|
72
72
|
"webpack-node-externals": "3.0.0",
|
|
73
73
|
"webpack-stream": "7.0.0",
|
|
74
74
|
"worker-loader": "3.0.8",
|
|
75
|
-
"yaml-loader": "0.8.0"
|
|
76
|
-
"yamljs": "0.3.0"
|
|
75
|
+
"yaml-loader": "0.8.0"
|
|
77
76
|
},
|
|
78
77
|
"devDependencies": {
|
|
79
78
|
"@types/browser-sync": "2.26.3",
|
|
80
79
|
"@types/cheerio": "0.22.31",
|
|
81
80
|
"@types/cssnano": "5.0.0",
|
|
82
81
|
"@types/glob": "7.2.0",
|
|
83
|
-
"@types/gulp": "4.0.
|
|
82
|
+
"@types/gulp": "4.0.10",
|
|
84
83
|
"@types/gulp-debug": "2.0.32",
|
|
85
84
|
"@types/gulp-html-prettify": "0.0.2",
|
|
86
85
|
"@types/gulp-if": "0.0.34",
|
|
@@ -93,12 +92,12 @@
|
|
|
93
92
|
"@types/html-validator": "5.0.3",
|
|
94
93
|
"@types/node": "16.11.25",
|
|
95
94
|
"@types/node-notifier": "8.0.2",
|
|
95
|
+
"@types/pug": "2.0.6",
|
|
96
96
|
"@types/webpack-node-externals": "2.5.3",
|
|
97
97
|
"@types/webpack-stream": "3.2.12",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"webpack-cli": "4.10.0"
|
|
98
|
+
"ts-node": "10.9.1",
|
|
99
|
+
"typescript": "4.9.4",
|
|
100
|
+
"webpack-cli": "5.0.1"
|
|
102
101
|
},
|
|
103
102
|
"scripts": {
|
|
104
103
|
"Incremental development building": "webpack --mode development",
|