Skip to content

Commit b18fbc0

Browse files
committed
wip
1 parent d1aa534 commit b18fbc0

32 files changed

+672
-604
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Create a report to help us improve
44
title: ''
55
labels: bug
66
assignees: rpearce
7-
87
---
98

109
## Description

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: feature
66
assignees: rpearce
7-
87
---
98

109
## Description

.github/dependabot.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "github-actions"
4-
directory: "/"
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
55
schedule:
6-
interval: "daily"
6+
interval: 'daily'
77

8-
- package-ecosystem: "npm"
8+
- package-ecosystem: 'npm'
99
allow:
10-
- dependency-type: "direct"
11-
directory: "/"
10+
- dependency-type: 'direct'
11+
directory: '/'
1212
open-pull-requests-limit: 5
1313
schedule:
14-
interval: "daily"
15-
versioning-strategy: "increase"
14+
interval: 'daily'
15+
versioning-strategy: 'increase'
1616
groups:
1717
dev-dependencies:
1818
patterns:
19-
- "*"
19+
- '*'

.github/workflows/main.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ jobs:
2525
name: Build
2626
runs-on: ubuntu-latest
2727
steps:
28-
- name: Checkout repo under GH workspace
29-
uses: actions/checkout@v6
28+
- name: Checkout repo under GH workspace
29+
uses: actions/checkout@v6
3030

31-
- name: Install
32-
uses: ./.github/actions/install
31+
- name: Install
32+
uses: ./.github/actions/install
3333

34-
- name: Run the CI script
35-
run: pnpm run ci
34+
- name: Run the CI script
35+
run: pnpm run ci
3636

37-
- name: Deploy to gh-pages
38-
uses: peaceiris/actions-gh-pages@v4
39-
if: ${{ github.ref == 'refs/heads/main' }}
40-
with:
41-
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: ./docs
37+
- name: Deploy to gh-pages
38+
uses: peaceiris/actions-gh-pages@v4
39+
if: ${{ github.ref == 'refs/heads/main' }}
40+
with:
41+
github_token: ${{ secrets.GITHUB_TOKEN }}
42+
publish_dir: ./docs

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ jobs:
1818
- name: Install
1919
uses: ./.github/actions/install
2020

21-
- name: Run the CI script
22-
run: pnpm run ci
23-
2421
- name: Create Release Pull Request or Publish to npm
2522
id: changesets
2623
uses: changesets/action@v1

.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
./.changeset/
2+
./.git/
3+
./.pnpm-store/
4+
./dist/
5+
node_modules/
6+
pnpm-lock.yaml

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSpacing": true,
4+
"endOfLine": "lf",
5+
"semi": false,
6+
"singleQuote": true,
7+
"tabWidth": 2,
8+
"trailingComma": "all",
9+
"useTabs": false
10+
}

.storybook/preview.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const BackgroundWrapper = ({
55
children,
66
context,
77
}: {
8-
children: React.ReactNode,
9-
context: StoryContext,
8+
children: React.ReactNode
9+
context: StoryContext
1010
}) => {
1111
const bg = context.globals.backgrounds.value ?? 'light'
1212

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"editor.tabSize": 2
3-
}
3+
}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Closes #164, #166, #213, #227, #259, #265, #281, #282
259259
- Renamed `openText` to `a11yNameButtonZoom`
260260
- Images must meet these `querySelector` criteria to be found:
261261
```js
262-
':is(img, svg, [role="img"], [data-zoom]):not([aria-hidden="true"])';
262+
':is(img, svg, [role="img"], [data-zoom]):not([aria-hidden="true"])'
263263
```
264264

265265
### Removed

0 commit comments

Comments
 (0)