-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: multiple entries with shared css and no JS (#13962)
- Loading branch information
Showing
9 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
function shouldBeTreeshaken_1() { | ||
// This function should be treeshaken, even if { moduleSideEffects: 'no-treeshake' } | ||
// was used in the JS corresponding to the HTML entrypoint. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default function shouldBeTreeshaken_2() { | ||
// This function should be treeshaken, even if { moduleSideEffects: 'no-treeshake' } | ||
// was used in the JS corresponding to the HTML entrypoint. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import shouldTreeshake from './shared-css-empty-2.js' | ||
document.querySelector('#app').innerHTML = ` | ||
<div> | ||
<h1>Shared CSS, with JS</h1> | ||
</div> | ||
` | ||
function shouldBeTreeshaken_0() { | ||
// This function should be treeshaken, even if { moduleSideEffects: 'no-treeshake' } | ||
// was used in the JS corresponding to the HTML entrypoint. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<link rel="stylesheet" type="text/css" href="./shared-css-theme.css" /> | ||
<body> | ||
<h1>Share CSS, no JS</h1> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
h1 { | ||
color: red; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<link rel="stylesheet" type="text/css" href="./shared-css-theme.css" /> | ||
<script type="module" src="./shared-css-main.js"></script> | ||
<script type="module" src="./shared-css-empty-1.js"></script> | ||
<body> | ||
<h1>Replaced by shared-css-main.js</h1> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters