Skip to content

Commit a91cefc

Browse files
committed
style: format fixture code
1 parent 841bd5d commit a91cefc

5 files changed

Lines changed: 24 additions & 29 deletions

File tree

packages/integration-tests/fixtures/vite-mpa-extra-modules/build-vite-with-plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ void vite.build({
2626
}),
2727
],
2828
});
29-

packages/integration-tests/fixtures/vite-mpa-extra-modules/build-vite-without-plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ void vite.build({
2020
},
2121
plugins: [],
2222
});
23-
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<title>Index Page</title>
6-
</head>
7-
<body>
8-
<h1>Index Page - No Scripts</h1>
9-
<!-- This page has no scripts -->
10-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Index Page</title>
6+
</head>
7+
<body>
8+
<h1>Index Page - No Scripts</h1>
9+
<!-- This page has no scripts -->
10+
</body>
1111
</html>
12-
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<title>Page 1</title>
6-
</head>
7-
<body>
8-
<h1>Page 1 - With Shared Module</h1>
9-
<script type="module" src="./shared-module.js"></script>
10-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Page 1</title>
6+
</head>
7+
<body>
8+
<h1>Page 1 - With Shared Module</h1>
9+
<script type="module" src="./shared-module.js"></script>
10+
</body>
1111
</html>
12-
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<title>Page 2</title>
6-
</head>
7-
<body>
8-
<h1>Page 2 - With Shared Module</h1>
9-
<script type="module" src="./shared-module.js"></script>
10-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Page 2</title>
6+
</head>
7+
<body>
8+
<h1>Page 2 - With Shared Module</h1>
9+
<script type="module" src="./shared-module.js"></script>
10+
</body>
1111
</html>
12-

0 commit comments

Comments
 (0)