Skip to content

Commit

Permalink
Fix bundler support test bug for clean CI (#86)
Browse files Browse the repository at this point in the history
Currently,bundler support test fails due to package source name
equal to package main name. This might cause package source file
index.js being overwritten. This PR simply change main to avoid the
overwritten risk.

Issue Resolved:
#85

Signed-off-by: Anan Zhuang <[email protected]>
  • Loading branch information
ananzh authored Aug 5, 2021
1 parent 7fc1a64 commit b6a59e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/bundlers/parcel-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "parcel-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "index-result.js",
"scripts": {
"start": "node index.js",
"build": "parcel build index.js --no-source-maps"
Expand Down

0 comments on commit b6a59e9

Please sign in to comment.