Skip to content

Commit 838ca0b

Browse files
rootroot
root
authored and
root
committed
🐛 fix: test
test
1 parent cda175b commit 838ca0b

40 files changed

+21007
-21849
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: 📦 Install Node.js dependencies
2828
run: npm ci
29-
29+
3030
# CHANGE/ADD/SETUP YOUR ADDITIONAL TEST COMMANDS AND TEST ACTIONS BELOW HERE:
3131

3232
- name: 🧪 📊 Test and coverage

Diff for: .husky/commit-msg

100644100755
-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env sh
21
#echo "commit-msg"
32
#echo $1
43
npx commitlint --edit $1

Diff for: .husky/prepare-commit-msg

100644100755
-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env sh
21
#echo "prepare-commit-msg"
32
#echo $1
43
trap cleanup ERR

Diff for: .vscode/settings.json

+21-26
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,22 @@
11
{
2-
"cSpell.words": [
3-
"ACDMRTUXB",
4-
"automerge",
5-
"bento",
6-
"cacache",
7-
"commitlint",
8-
"debendabot",
9-
"depcheckrc",
10-
"esdoc",
11-
"esdocs",
12-
"gitmoji",
13-
"iname",
14-
"modclean",
15-
"oxlint",
16-
"shieldio",
17-
"snyk",
18-
"upgradeps"
19-
],
20-
"spellright.language": [
21-
"en"
22-
],
23-
"spellright.documentTypes": [
24-
"latex",
25-
"plaintext"
26-
]
27-
}
2+
"cSpell.words": [
3+
"ACDMRTUXB",
4+
"automerge",
5+
"bento",
6+
"cacache",
7+
"commitlint",
8+
"debendabot",
9+
"depcheckrc",
10+
"esdoc",
11+
"esdocs",
12+
"gitmoji",
13+
"iname",
14+
"modclean",
15+
"oxlint",
16+
"shieldio",
17+
"snyk",
18+
"upgradeps"
19+
],
20+
"spellright.language": ["en"],
21+
"spellright.documentTypes": ["latex", "plaintext"]
22+
}

Diff for: bun.lockb

520 KB
Binary file not shown.

Diff for: dist/app.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// @bun
2+
// src/app.ts
3+
var app_default = undefined;
4+
export {
5+
app_default as default
6+
};

Diff for: docs/typedocs/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

Diff for: docs/typedocs/assets/highlight.css

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #0000FF;
9+
--dark-hl-3: #569CD6;
10+
--light-hl-4: #008000;
11+
--dark-hl-4: #6A9955;
12+
--light-code-background: #FFFFFF;
13+
--dark-code-background: #1E1E1E;
14+
}
15+
16+
@media (prefers-color-scheme: light) { :root {
17+
--hl-0: var(--light-hl-0);
18+
--hl-1: var(--light-hl-1);
19+
--hl-2: var(--light-hl-2);
20+
--hl-3: var(--light-hl-3);
21+
--hl-4: var(--light-hl-4);
22+
--code-background: var(--light-code-background);
23+
} }
24+
25+
@media (prefers-color-scheme: dark) { :root {
26+
--hl-0: var(--dark-hl-0);
27+
--hl-1: var(--dark-hl-1);
28+
--hl-2: var(--dark-hl-2);
29+
--hl-3: var(--dark-hl-3);
30+
--hl-4: var(--dark-hl-4);
31+
--code-background: var(--dark-code-background);
32+
} }
33+
34+
:root[data-theme='light'] {
35+
--hl-0: var(--light-hl-0);
36+
--hl-1: var(--light-hl-1);
37+
--hl-2: var(--light-hl-2);
38+
--hl-3: var(--light-hl-3);
39+
--hl-4: var(--light-hl-4);
40+
--code-background: var(--light-code-background);
41+
}
42+
43+
:root[data-theme='dark'] {
44+
--hl-0: var(--dark-hl-0);
45+
--hl-1: var(--dark-hl-1);
46+
--hl-2: var(--dark-hl-2);
47+
--hl-3: var(--dark-hl-3);
48+
--hl-4: var(--dark-hl-4);
49+
--code-background: var(--dark-code-background);
50+
}
51+
52+
.hl-0 { color: var(--hl-0); }
53+
.hl-1 { color: var(--hl-1); }
54+
.hl-2 { color: var(--hl-2); }
55+
.hl-3 { color: var(--hl-3); }
56+
.hl-4 { color: var(--hl-4); }
57+
pre, code { background: var(--code-background); }

Diff for: docs/typedocs/assets/icons.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)