@flancer32/teq-web 0.8.0 → 0.9.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/CHANGELOG.md +5 -0
- package/package.json +2 -2
- package/src/Back/Handler/Static/A/Config.mjs +1 -1
- package/src/Back/Handler/Static/A/Fallback.mjs +2 -2
- package/src/Back/Handler/Static/A/FileService.mjs +3 -3
- package/src/Back/Handler/Static/A/Resolver.mjs +1 -1
- package/src/Back/Helper/Respond.mjs +1 -1
- package/src/Back/Server.mjs +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flancer32/teq-web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Server-side web request coordination infrastructure for TeqFW modular monolith applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
]
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@teqfw/di": "^2.1
|
|
44
|
+
"@teqfw/di": "^2.3.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^25.4.0",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
|
|
3
3
|
export const __deps__ = Object.freeze({
|
|
4
|
-
fs: '
|
|
5
|
-
http2: '
|
|
6
|
-
path: '
|
|
4
|
+
fs: 'node:fs',
|
|
5
|
+
http2: 'node:http2',
|
|
6
|
+
path: 'node:path',
|
|
7
7
|
logger: 'Fl32_Web_Back_Logger$',
|
|
8
8
|
helpMime: 'Fl32_Web_Back_Helper_Mime$',
|
|
9
9
|
resolver: 'Fl32_Web_Back_Handler_Static_A_Resolver$',
|
package/src/Back/Server.mjs
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Handles incoming requests and delegates them to the Pipeline Engine.
|
|
6
6
|
*/
|
|
7
7
|
export const __deps__ = Object.freeze({
|
|
8
|
-
http: '
|
|
9
|
-
http2: '
|
|
8
|
+
http: 'node:http',
|
|
9
|
+
http2: 'node:http2',
|
|
10
10
|
config: 'Fl32_Web_Back_Config_Runtime$',
|
|
11
11
|
logger: 'Fl32_Web_Back_Logger$',
|
|
12
12
|
pipelineEngine: 'Fl32_Web_Back_PipelineEngine$',
|