Skip to content

Commit d47ac89

Browse files
fix: correct main entry path in rsbuild-plugin project.json
The main entry was pointing to the wrong path (packages/rsbuild-plugin/cli/src/index.ts) when it should be packages/rsbuild-plugin/src/cli/index.ts. This was causing TypeScript compilation errors during the build process. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent af01bf0 commit d47ac89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rsbuild-plugin/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"outputs": ["{options.outputPath}"],
1010
"options": {
1111
"outputPath": "packages/rsbuild-plugin/dist",
12-
"main": "packages/rsbuild-plugin/cli/src/index.ts",
12+
"main": "packages/rsbuild-plugin/src/cli/index.ts",
1313
"tsConfig": "packages/rsbuild-plugin/tsconfig.lib.json",
1414
"assets": [],
1515
"external": ["@module-federation/*"],

0 commit comments

Comments
 (0)