Skip to content

Commit

Permalink
fix: windows path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav.singh2 committed Jul 3, 2024
1 parent 789a54f commit 5aba63c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/xarc-app-dev/src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export { fastifyPlugin } from "./webpack-dev-fastify";
export { expressMiddleware } from "./webpack-dev-express";
export { koaMiddleware } from "./webpack-dev-koa";

const makeEslintRcFile = file => Path.posix.join(__dirname, "../config/eslint", file);
const makeEslintRcFile = file => Path.join(__dirname, "../config/eslint", file);

/** path to built-in eslintrc for React test code */
export const eslintRcReactTest = makeEslintRcFile(".eslintrc-react-test");
Expand Down

0 comments on commit 5aba63c

Please sign in to comment.