Skip to content

Commit 0a0b8bb

Browse files
chore: update deps
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 495fd3e commit 0a0b8bb

File tree

12 files changed

+57
-69
lines changed

12 files changed

+57
-69
lines changed

biome.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
"enabled": false
99
},
1010
"files": {
11-
"ignore": [
12-
"**/node_modules/*",
13-
"**/dist/*",
14-
"**/.turbo/*",
15-
"**/*.json"
16-
]
11+
"ignore": ["**/node_modules/*", "**/dist/*", "**/.turbo/*", "**/*.json"]
1712
},
1813
"linter": {
1914
"enabled": true,
@@ -35,4 +30,4 @@
3530
}
3631
}
3732
}
38-
}
33+
}

bun.lockb

-14.6 KB
Binary file not shown.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
},
1919
"devDependencies": {
2020
"@biomejs/biome": "1.9.4",
21-
"@changesets/changelog-github": "^0.5.0",
22-
"@changesets/cli": "^2.27.11",
23-
"tsup": "^8.3.5",
21+
"@changesets/changelog-github": "^0.5.1",
22+
"@changesets/cli": "^2.28.1",
23+
"tsup": "^8.4.0",
2424
"typescript": "^5.7.3",
25-
"bun-types": "^1.1.43",
25+
"bun-types": "^1.2.3",
2626
"scripts": "workspace:*",
27-
"turbo": "^2.3.3"
27+
"turbo": "^2.4.3"
2828
},
2929
"trustedDependencies": [
3030
"@biomejs/biome",
3131
"esbuild"
3232
],
33-
"packageManager": "bun@1.1.43"
33+
"packageManager": "bun@1.2.3"
3434
}

packages/css/base.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/* some opinionated defaults for my projects */
22

33
html {
4-
min-height: 100vh;
5-
min-height: 100dvh;
6-
display: flex;
4+
min-height: 100vh;
5+
min-height: 100dvh;
6+
display: flex;
77
}
88

99
body {
10-
flex: 1;
11-
margin: 0;
12-
display: flex;
13-
flex-direction: column;
10+
flex: 1;
11+
margin: 0;
12+
display: flex;
13+
flex-direction: column;
1414
}
1515

1616
h1,
@@ -20,10 +20,10 @@ h4,
2020
h5,
2121
h6,
2222
p {
23-
margin: 0;
24-
padding: 0;
23+
margin: 0;
24+
padding: 0;
2525
}
2626

2727
button {
28-
cursor: pointer;
28+
cursor: pointer;
2929
}

packages/css/reset.css

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,101 +3,100 @@
33
*,
44
::before,
55
::after {
6-
box-sizing: border-box;
6+
box-sizing: border-box;
77
}
88

99
html {
10-
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
11-
"Apple Color Emoji", "Segoe UI Emoji";
12-
line-height: 1.15;
13-
-webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS. */
14-
tab-size: 4; /* Use a more readable tab size */
10+
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
11+
"Segoe UI Emoji";
12+
line-height: 1.15;
13+
-webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS. */
14+
tab-size: 4; /* Use a more readable tab size */
1515
}
1616

1717
button,
1818
input,
1919
optgroup,
2020
select,
2121
textarea {
22-
font-family: inherit;
23-
font-size: 100%;
24-
line-height: 1.15;
25-
margin: 0;
22+
font-family: inherit;
23+
font-size: 100%;
24+
line-height: 1.15;
25+
margin: 0;
2626
}
2727

2828
legend {
29-
padding: 0;
29+
padding: 0;
3030
}
3131

3232
code,
3333
kbd,
3434
samp,
3535
pre {
36-
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo,
37-
monospace; /* 1 */
38-
font-size: 1em; /* 2 */
36+
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
37+
font-size: 1em; /* 2 */
3938
}
4039

4140
table {
42-
text-indent: 0;
43-
border-color: inherit;
41+
text-indent: 0;
42+
border-color: inherit;
4443
}
4544

4645
/* browser specific fixes */
4746

4847
summary {
49-
display: list-item; /* Add the correct display in Chrome and Safari. */
48+
display: list-item; /* Add the correct display in Chrome and Safari. */
5049
}
5150

5251
::-webkit-search-decoration {
53-
-webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS. */
52+
-webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS. */
5453
}
5554

5655
::-webkit-file-upload-button {
57-
-webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
58-
font: inherit; /* Change font properties to 'inherit' in Safari */
56+
-webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
57+
font: inherit; /* Change font properties to 'inherit' in Safari */
5958
}
6059

6160
[type="search"] {
62-
-webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
63-
outline-offset: -2px; /* Correct the outline style in Safari */
61+
-webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
62+
outline-offset: -2px; /* Correct the outline style in Safari */
6463
}
6564

6665
::-webkit-inner-spin-button,
6766
::-webkit-outer-spin-button {
68-
height: auto; /* Correct the cursor style of increment and decrement buttons in Safari. */
67+
height: auto; /* Correct the cursor style of increment and decrement buttons in Safari. */
6968
}
7069

7170
progress {
72-
vertical-align: baseline; /* Add the correct vertical alignment in Chrome and Firefox. */
71+
vertical-align: baseline; /* Add the correct vertical alignment in Chrome and Firefox. */
7372
}
7473

7574
button,
7675
[type="button"],
7776
[type="reset"],
7877
[type="submit"] {
79-
-webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari. */
78+
-webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari. */
8079
}
8180

8281
::-moz-focus-inner {
83-
border-style: none;
84-
padding: 0;
82+
border-style: none;
83+
padding: 0;
8584
}
8685

8786
:-moz-focusring {
88-
outline: 1px dotted ButtonText;
87+
outline: 1px dotted ButtonText;
8988
}
9089

9190
:-moz-ui-invalid {
92-
box-shadow: none;
91+
box-shadow: none;
9392
}
9493

9594
button,
9695
select {
97-
text-transform: none; /* Remove the inheritance of text transform in Edge and Firefox. */
96+
text-transform: none; /* Remove the inheritance of text transform in Edge and Firefox. */
9897
}
9998

10099
b,
101100
strong {
102-
font-weight: bolder; /* Add the correct font weight in Edge and Safari. */
101+
font-weight: bolder; /* Add the correct font weight in Edge and Safari. */
103102
}

packages/expo-plugin-aboutlibraries/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"build": "tsup lib/index.ts --target node20 --format cjs,esm --dts --sourcemap"
3434
},
3535
"dependencies": {
36-
"@expo/config-plugins": "^9.0.13"
36+
"@expo/config-plugins": "^9.0.15"
3737
},
3838
"engines": {
3939
"node": ">=20.0.0"

packages/lit-q/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"devDependencies": {
3636
"lit": "^3.2.1",
37-
"@happy-dom/global-registrator": "^16.5.3"
37+
"@happy-dom/global-registrator": "^17.1.8"
3838
},
3939
"peerDependencies": {
4040
"lit": "^3.1.2"

packages/rollup-plugin-minify-template-literals/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"minify-literals": "^1.0.0"
4242
},
4343
"devDependencies": {
44-
"rollup": "^4.30.1"
44+
"rollup": "^4.34.8"
4545
},
4646
"engines": {
4747
"node": ">=20.0.0"

packages/touch-grass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@types/ink": "^2.0.3",
25-
"@types/react": "^19.0.4",
25+
"@types/react": "^19.0.10",
2626
"scripts": "workspace:*"
2727
},
2828
"dependencies": {

packages/ucmd/lib/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,8 @@ class UCMD<TCommands extends CommandsLike, TBaseCommand> {
7474
const argDescription = opts.description ?? "";
7575
const argRequired = opts.required ?? false;
7676
const short = opts.short ? `-${opts.short}, ` : " ";
77-
helpString += ` ${short}--${(opts.type === "boolean"
78-
? argName
79-
: `${argName} <${argName}>${opts.multiple ? "..." : ""}`
77+
helpString += ` ${short}--${(
78+
opts.type === "boolean" ? argName : `${argName} <${argName}>${opts.multiple ? "..." : ""}`
8079
).padEnd(maxArgLength)}${argDescription}${argRequired ? " [required]" : ""}${
8180
opts.default ? ` [default: ${opts.default}]` : ""
8281
}\n`;

0 commit comments

Comments
 (0)