Skip to content

Commit eaf600e

Browse files
committed
update
1 parent 83b4283 commit eaf600e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "remix-development-tools",
33
"description": "Remix development tools - a set of tools for developing/debugging Remix.run apps",
44
"author": "Alem Tuzlak",
5-
"version": "4.3.0",
5+
"version": "4.3.1",
66
"license": "MIT",
77
"keywords": [
88
"remix",

src/vite/plugin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const remixDevTools: (args?:RemixViteConfig) => Plugin[] = (args) => {
119119
}
120120

121121
const column = line.indexOf("console.");
122-
const logMessage = `"${chalk.magenta("LOG")} ${chalk.blueBright(`${id.replace(normalizePath(process.cwd()),"")}:${lineNumber+1}:${column+1}`)}\\n → "`;
122+
const logMessage = `"${chalk.magenta("LOG")} ${chalk.blueBright(`${id.replace(normalizePath(process.cwd()),"")}:${lineNumber+1}:${column+1}`)}\\n → "`;
123123
if (line.includes("console.log(")) {
124124
const newLine = `console.log(${logMessage},`;
125125
return line.replace("console.log(", newLine);

0 commit comments

Comments
 (0)