Skip to content

Commit

Permalink
fix: input box autofocus regression (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
hueyy committed Nov 26, 2023
1 parent 8b7bc40 commit d6b849b
Show file tree
Hide file tree
Showing 9 changed files with 1,786 additions and 1,268 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ extension/
generated/
.vscode
.eslintcache
coverage/
coverage/
2 changes: 1 addition & 1 deletion .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-checkout "$@"
2 changes: 1 addition & 1 deletion .husky/post-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-commit "$@"
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs post-merge "$@"
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
git lfs pre-push "$@"
71 changes: 35 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,83 +35,82 @@
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"eslint --cache --fix"
],
"package.json": [
"npx sort-package-json"
]
},
"dependencies": {
"@babel/runtime": "^7.22.10",
"@babel/runtime": "^7.23.4",
"async-mutex": "^0.4.0",
"axios": "^1.4.0",
"axios-cache-interceptor": "^1.2.0",
"axios": "^1.6.2",
"axios-cache-interceptor": "^1.3.2",
"cheerio": "^1.0.0-rc.12",
"fuse.js": "^6.6.2",
"leven": "^4.0.0",
"memoizee": "^0.4.15",
"preact": "^10.16.0",
"preact": "^10.19.2",
"preact-router": "^4.1.2",
"qs": "^6.11.2",
"react-select": "^5.7.4",
"react-select": "^5.8.0",
"rss-parser": "^3.13.0",
"svg-country-flags": "^1.2.10"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/node": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/preact": "^3.2.3",
"@types/jest": "^29.5.3",
"@types/memoizee": "^0.4.8",
"@types/node": "^20.4.10",
"@types/qs": "^6.9.7",
"@types/jest": "^29.5.10",
"@types/memoizee": "^0.4.11",
"@types/node": "^20.10.0",
"@types/qs": "^6.9.10",
"@types/sharp": "^0.31.1",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "^10.4.14",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"codecov": "^3.8.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.47.0",
"eslint": "^8.54.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unicorn": "^49.0.0",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^7.0.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^13.2.3",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.1.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.27",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"resolve-url-loader": "^5.0.0",
"sharp": "^0.32.4",
"sharp": "^0.32.6",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "^3.3.3",
"tailwindcss": "^3.3.5",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.4",
"typescript": "^5.1.6",
"typescript": "^5.3.2",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.88.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"wext-manifest-loader": "^3.0.0",
"wext-manifest-webpack-plugin": "^1.2.1"
Expand Down
Loading

0 comments on commit d6b849b

Please sign in to comment.