@yamato-daiwa/es-extensions-nodejs 1.5.0-alpha.5 → 1.5.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/README.md +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -25,10 +25,10 @@ npm i @yamato-daiwa/es-extensions-nodejs @yamato-daiwa/es-extensions -E
|
|
|
25
25
|
|
|
26
26
|
<dl>
|
|
27
27
|
|
|
28
|
-
<dt><a href="Documentation/ConsoleCommandsParser/ConsoleCommandsParser.md">ConsoleCommandsParser</a></dt>
|
|
29
|
-
<dd>Parsing and validating of CLI commands
|
|
28
|
+
<dt><a href="https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions/blob/master/NodeJS/Package/Documentation/ConsoleCommandsParser/ConsoleCommandsParser.md">ConsoleCommandsParser</a></dt>
|
|
29
|
+
<dd>Parsing and validating of CLI commands</dd>
|
|
30
30
|
|
|
31
|
-
<dt><a href="Documentation/Logging/ConsoleApplicationLogger/ConsoleApplicationLogger.md">ConsoleApplicationLogger</a></dt>
|
|
31
|
+
<dt><a href="https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions/blob/master/NodeJS/Package/Documentation/Logging/ConsoleApplicationLogger/ConsoleApplicationLogger.md">ConsoleApplicationLogger</a></dt>
|
|
32
32
|
<dd>The implementation of <b>ILogger</b> interface for <a href="https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions/blob/master/CoreLibrary/Package/Documentation/Logging/Logger/Logger.md">Logger</a> facade and Node.js environment.</dd>
|
|
33
33
|
|
|
34
34
|
<dt>isErrnoException</dt>
|
|
@@ -43,8 +43,8 @@ npm i @yamato-daiwa/es-extensions-nodejs @yamato-daiwa/es-extensions -E
|
|
|
43
43
|
|
|
44
44
|
<dt>InterProcessInteractionFailedError</dt>
|
|
45
45
|
<dd>
|
|
46
|
-
Intended to be used when the interaction between NodeJS
|
|
47
|
-
Could be actual for the Electron.js where the main process and render process exchanging by data.
|
|
46
|
+
Intended to be used when the interaction between NodeJS processes is not going as expected.
|
|
47
|
+
Could be actual, for example, for the Electron.js where the main process and render process are exchanging by the data.
|
|
48
48
|
</dd>
|
|
49
49
|
|
|
50
50
|
<dt>InvalidConsoleCommandError</dt>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/es-extensions-nodejs",
|
|
3
|
-
"version": "1.5.0
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Additional to @yamato-daiwa/es-extensions functionality for Node.js environment. Helper functions and classes aimed to reduce the routine code. Build-in TypeScript type safety.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nodejs",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"@types/json5": "0.0.30",
|
|
31
31
|
"@types/mocha": "9.1.1",
|
|
32
32
|
"@types/node": "16.10.2",
|
|
33
|
-
"@yamato-daiwa/style_guides": "0.0.
|
|
33
|
+
"@yamato-daiwa/style_guides": "0.0.14",
|
|
34
34
|
"mocha": "10.0.0",
|
|
35
35
|
"rimraf": "3.0.2",
|
|
36
|
-
"ts-node": "10.8.
|
|
37
|
-
"typescript": "4.7.
|
|
36
|
+
"ts-node": "10.8.1",
|
|
37
|
+
"typescript": "4.7.4"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@yamato-daiwa/es-extensions": "1.5.
|
|
40
|
+
"@yamato-daiwa/es-extensions": "1.5.1",
|
|
41
41
|
"json5": "2.2.1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@yamato-daiwa/es-extensions": "1.5.0
|
|
44
|
+
"@yamato-daiwa/es-extensions": ">=1.5.0 <1.6.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=10.4.0"
|