Skip to content

Commit 89b7d5a

Browse files
committed
Removed unused webpack hints.
1 parent 915b4f1 commit 89b7d5a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/NodeJS/Javascript/Servers/OutOfProcess/Http/Http11Server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function serverOnRequestListener(req: http.IncomingMessage, res: http.ServerResp
120120
}
121121
} else if (invocationRequest.moduleSourceType === ModuleSourceType.File) {
122122
const resolvedPath = path.resolve(projectDir, invocationRequest.moduleSource);
123-
exports = await import(/* webpackIgnore: true */ 'file:///' + resolvedPath.replaceAll('\\', '/'));
123+
exports = await import('file:///' + resolvedPath.replaceAll('\\', '/'));
124124
} else {
125125
respondWithError(res, `Invalid module source type: ${invocationRequest.moduleSourceType}.`);
126126
return;

src/NodeJS/Javascript/Servers/OutOfProcess/Http/Http20Server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function serverOnRequestListener(req: http2.Http2ServerRequest, res: http2.Http2
106106
}
107107
} else if (invocationRequest.moduleSourceType === ModuleSourceType.File) {
108108
const resolvedPath = path.resolve(projectDir, invocationRequest.moduleSource);
109-
exports = await import(/* webpackIgnore: true */ 'file:///' + resolvedPath.replaceAll('\\', '/'));
109+
exports = await import('file:///' + resolvedPath.replaceAll('\\', '/'));
110110
} else {
111111
respondWithError(res, `Invalid module source type: ${invocationRequest.moduleSourceType}.`);
112112
return;

0 commit comments

Comments
 (0)