Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @thelukewalton
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CODEOWNERS file entry is missing the '@' prefix. GitHub CODEOWNERS requires usernames to be prefixed with '@'. This should be * @thelukewalton instead of * thelukewalton.

Copilot uses AI. Check for mistakes.
8 changes: 3 additions & 5 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,13 @@ jobs:
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm

- name: Install Dependencies
id: install
run: npm ci
- name: Install dependencies
run: yarn install --immutable

- name: Build dist/ Directory
id: build
run: npm run bundle
run: yarn bundle

# This will fail the workflow if the `dist/` directory is different than
# expected.
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ jobs:
uses: actions/setup-node@v6
with:
node-version-file: .node-version
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The removal of cache: npm from the setup-node action is correct since the project is now using Yarn. However, to maintain caching benefits, consider adding cache: yarn to improve CI performance by caching Yarn dependencies.

Suggested change
node-version-file: .node-version
node-version-file: .node-version
cache: yarn

Copilot uses AI. Check for mistakes.
cache: npm

- name: Install Dependencies
run: npm ci
- name: Install dependencies
run: yarn install --immutable

- name: Code Quality
uses: ./
Expand Down
Binary file added .yarn/install-state.gz
Binary file not shown.
942 changes: 942 additions & 0 deletions .yarn/releases/yarn-4.12.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.12.0.cjs
14 changes: 7 additions & 7 deletions custom-elements.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"declarations": [
{
"kind": "variable",
"name": "maxSockets",
"type": {
"text": "number"
},
"default": "100"
"name": "headers"
},
{
"kind": "variable",
"name": "headers"
"name": "request"
},
{
"kind": "variable",
"name": "request"
"name": "maxSockets",
"type": {
"text": "number"
},
"default": "100"
},
{
"kind": "function",
Expand Down
Loading