Skip to content

Commit c11665c

Browse files
authored
Merge pull request #7476 from QwikDev/some-fixes
chore: some fixes
2 parents 52a8c5e + d2e6ff3 commit c11665c

File tree

6 files changed

+49
-36
lines changed

6 files changed

+49
-36
lines changed

Cargo.lock

Lines changed: 20 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"dependencyTypes": [
6767
"dev"
6868
],
69-
"pinVersion": "1.48.1"
69+
"pinVersion": "1.50.1"
7070
}
7171
],
7272
"semverGroups": [
@@ -123,7 +123,7 @@
123123
"@napi-rs/triples": "1.2.0",
124124
"@node-rs/helper": "1.6.0",
125125
"@octokit/action": "6.1.0",
126-
"@playwright/test": "1.48.1",
126+
"@playwright/test": "1.50.1",
127127
"@types/brotli": "1.3.4",
128128
"@types/bun": "1.1.6",
129129
"@types/cross-spawn": "6.0.6",

packages/docs/src/components/footer/footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const FooterSocialLinks = component$(() => {
9090
];
9191

9292
return (
93-
<div class="flex gap-4 mt-4">
93+
<ul class="flex gap-4 mt-4">
9494
{socialLinks.map(({ title, href, Logo }) => (
9595
<li key={title} class="list-none">
9696
<a href={href} target="_blank" title={title}>
@@ -100,6 +100,6 @@ export const FooterSocialLinks = component$(() => {
100100
</a>
101101
</li>
102102
))}
103-
</div>
103+
</ul>
104104
);
105105
});

packages/qwik/src/optimizer/src/plugins/vite.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,13 @@ export function qwikVite(qwikViteOpts: QwikVitePluginOptions = {}): any {
335335
exclude: [/./],
336336
},
337337
rollupOptions: {
338+
/**
339+
* This is a workaround to have predictable chunk hashes between builds. It doesn't seem
340+
* to impact the build time.
341+
* https://github.com/QwikDev/qwik/issues/7226#issuecomment-2647122505
342+
*/
343+
maxParallelFileOps: 1,
338344
output: {
339-
// We have waterfall prevention so don't hoist
340-
hoistTransitiveImports: false,
341345
manualChunks: qwikPlugin.manualChunks,
342346
},
343347
},

pnpm-lock.yaml

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)