From de62426900411d7248177284f4ac3afa316e1d64 Mon Sep 17 00:00:00 2001 From: Kamil Mysliwiec Date: Wed, 23 Aug 2023 09:04:29 +0200 Subject: [PATCH] Revert "fix: Resolve absolute path for `start` action" --- actions/start.action.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/actions/start.action.ts b/actions/start.action.ts index de6572b62..a87599a13 100644 --- a/actions/start.action.ts +++ b/actions/start.action.ts @@ -154,9 +154,6 @@ export class StartAction extends BuildAction { outputFilePath = join(outDirName, entryFile); } - // Resolve to real file path - outputFilePath = require.resolve(outputFilePath); - let childProcessArgs: string[] = []; const argsStartIndex = process.argv.indexOf('--'); if (argsStartIndex >= 0) {