Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
f25c32b
POC TypeScript plugin loading with esbuild fallback
Copilot Apr 8, 2026
3646661
Improve esbuild no-output error messaging
Copilot Apr 8, 2026
4d62c1a
refactor copilot code
abdulahmad307 Apr 13, 2026
588a2cc
formatting fixes
abdulahmad307 Apr 13, 2026
d22d518
Add open_grouped_issues option to README
cehfisher Apr 13, 2026
f4d232b
chore(deps): Bump ruby/setup-ruby
dependabot[bot] Apr 13, 2026
4087754
chore(deps-dev): Bump typescript in /.github/actions/find
dependabot[bot] Apr 13, 2026
6f05e00
chore(deps-dev): Bump typescript in /.github/actions/fix
dependabot[bot] Apr 13, 2026
030c94a
Update README.md
cehfisher Apr 14, 2026
245d388
Add open_grouped_issues option to README (#190)
cehfisher Apr 14, 2026
ecad9c5
Merge branch 'main' into dependabot/github_actions/github-actions-ff7…
lindseywild Apr 14, 2026
069260b
chore(deps): Bump ruby/setup-ruby from 1.300.0 to 1.301.0 in the gith…
lindseywild Apr 14, 2026
ef53f46
log custom plugins
abdulahmad307 Apr 14, 2026
d6be8e2
Upgrade accessibility-scanner from v2 to v3
lindseywild Apr 14, 2026
1dcc094
Upgrade accessibility-scanner from v2 to v3 (#198)
lindseywild Apr 14, 2026
3472732
testing
abdulahmad307 Apr 14, 2026
102b485
fix: Add '"types": ["node"]' to tsconfig.json, since TypeScript 6.0 n…
smockle Apr 15, 2026
99e86b1
chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 in /.github/acti…
smockle Apr 15, 2026
58c02e2
fix: Add '"types": ["node"]' to tsconfig.json, since TypeScript 6.0 n…
smockle Apr 15, 2026
3c0b38a
chore(deps-dev): Bump typescript in /.github/actions/file
dependabot[bot] Apr 15, 2026
3c7ca39
chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 in /.github/acti…
smockle Apr 15, 2026
3df4ffb
fix: Add '"types": ["node"]' to tsconfig.json, since TypeScript 6.0 n…
smockle Apr 15, 2026
ae7cd5c
chore(deps-dev): Bump typescript in /.github/actions/auth
dependabot[bot] Apr 15, 2026
8e61cf2
chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 in /.github/acti…
smockle Apr 15, 2026
be4f80c
fix: Add '"types": ["node"]' to tsconfig.json, since TypeScript 6.0 n…
smockle Apr 15, 2026
a96c7f7
chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 in /.github/acti…
smockle Apr 15, 2026
c5b4391
chore(deps): Bump the npm-minor-and-patch group across 5 directories …
dependabot[bot] Apr 15, 2026
ec52e36
remove testing logs
abdulahmad307 Apr 15, 2026
9ac57d8
chore(deps): Bump the npm-minor-and-patch group across 5 directories …
smockle Apr 15, 2026
1067734
chore(deps): Bump puma from 7.2.0 to 8.0.0 in /sites/site-with-errors
dependabot[bot] Apr 15, 2026
aee0459
chore(deps): Bump puma from 7.2.0 to 8.0.0 in /sites/site-with-errors…
smockle Apr 15, 2026
aefd2f4
update tests
abdulahmad307 Apr 20, 2026
8d6f0ce
update pluginManager file paths
abdulahmad307 Apr 20, 2026
59e7848
update the types
abdulahmad307 Apr 20, 2026
05c103d
update package-lock from main
abdulahmad307 Apr 20, 2026
5ce6e16
merge main
abdulahmad307 Apr 20, 2026
11fe1fb
update docs
abdulahmad307 Apr 20, 2026
c658432
fix lint inssue
abdulahmad307 Apr 20, 2026
cb1baf6
update test plugin so its clear why it exists
abdulahmad307 Apr 20, 2026
778ade2
fix import
abdulahmad307 Apr 20, 2026
267ae02
fix linting
abdulahmad307 Apr 20, 2026
7d90426
update docs with suggested feedback
abdulahmad307 Apr 20, 2026
8cc49ca
Update .github/actions/find/src/pluginManager/index.ts
abdulahmad307 Apr 20, 2026
8d7526c
add new test plugin to list of plugins to skip
abdulahmad307 Apr 20, 2026
51ffc31
explicitly install find dependencies
abdulahmad307 Apr 20, 2026
3243dd5
go up 1 more level to get the right path
abdulahmad307 Apr 20, 2026
0fa3e24
Support TypeScript plugins in find plugin manager via esbuild (#187)
abdulahmad307 Apr 20, 2026
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
40 changes: 20 additions & 20 deletions .github/actions/auth/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .github/actions/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"type": "module",
"dependencies": {
"@actions/core": "^3.0.0",
"playwright": "^1.58.2"
"playwright": "^1.59.1"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.3"
"@types/node": "^25.6.0",
"typescript": "^6.0.2"
}
}
3 changes: 2 additions & 1 deletion .github/actions/auth/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"esModuleInterop": true,
"strict": true,
"rootDir": "src",
"outDir": "dist"
"outDir": "dist",
"types": ["node"]
},
"include": [
"src/**/*.ts"
Expand Down
24 changes: 12 additions & 12 deletions .github/actions/file/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/actions/file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@octokit/plugin-throttling": "^11.0.3"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.3"
"@types/node": "^25.6.0",
"typescript": "^6.0.2"
}
}
3 changes: 2 additions & 1 deletion .github/actions/file/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"esModuleInterop": true,
"strict": true,
"rootDir": "src",
"outDir": "dist"
"outDir": "dist",
"types": ["node"]
},
"include": [
"src/**/*.ts"
Expand Down
Loading
Loading