Skip to content

Commit 58f438c

Browse files
committed
test(preloader): add https + counters to preloader-test for debugging
1 parent d54c51d commit 58f438c

File tree

116 files changed

+1476
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+1476
-3
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
"@types/semver": "7.5.8",
126126
"@types/tmp": "0.2.6",
127127
"@types/which-pm-runs": "1.0.2",
128+
"@vitejs/plugin-basic-ssl": "^2.0.0",
128129
"all-contributors-cli": "6.26.1",
129130
"brotli": "1.3.3",
130131
"concurrently": "8.2.2",

pnpm-lock.yaml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { component$, useSignal } from "@builder.io/qwik";
2+
3+
export default component$(() => {
4+
const count = useSignal(0);
5+
return (
6+
<>
7+
<button onClick$={() => count.value++}>Increment</button>
8+
<p>Current Count: {count.value}</p>
9+
</>
10+
);
11+
});

0 commit comments

Comments
 (0)