Skip to content

Commit 0f67f66

Browse files
Merge branch 'main' into 03-14-fix_8675
2 parents 92696c1 + a532de9 commit 0f67f66

File tree

5 files changed

+203
-199
lines changed

5 files changed

+203
-199
lines changed

.github/workflows/reusable-node-dev-server-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
run:
20-
name: Node Dev Server Test (Node ${{ inputs.node-version }})
20+
name: Node Dev Server Test
2121
if: ${{ inputs.changed }}
2222
runs-on: ${{ inputs.os }}
2323
timeout-minutes: 15

.github/workflows/reusable-node-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
jobs:
1919
run:
20-
name: Node Test (Node ${{ inputs.node-version }})
20+
name: Node Test
2121
if: ${{ inputs.changed }}
2222
runs-on: ${{ inputs.os }}
2323
timeout-minutes: 10

examples/styled-components-native/src/components/Button.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ const StyledButton = styled.button`
3232
height: 0;
3333
border-radius: 50%;
3434
background: rgba(255, 255, 255, 0.3);
35-
transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
35+
transition:
36+
width 0.6s,
37+
height 0.6s,
38+
top 0.6s,
39+
left 0.6s;
3640
transform: translate(-50%, -50%);
3741
z-index: 0;
3842
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"husky": "^9.1.7",
3030
"knip": "^5.61.3",
3131
"lint-staged": "^16.1.2",
32-
"oxfmt": "^0.35.0",
32+
"oxfmt": "^0.40.0",
3333
"oxlint": "^1.31.0",
34-
"oxlint-tsgolint": "0.15.0",
34+
"oxlint-tsgolint": "0.16.0",
3535
"playwright-chromium": "^1.56.1",
3636
"publint": "^0.3.16",
3737
"remove-unused-vars": "^0.0.12",

0 commit comments

Comments
 (0)