1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Update tooling

This commit is contained in:
Rohan Kumar 2021-06-29 23:54:55 -07:00
parent 73f19ee10f
commit fef8571e40
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479
6 changed files with 15 additions and 17 deletions

View file

@ -9,5 +9,4 @@
last 5 versions last 5 versions
Firefox ESR Firefox ESR
not dead not dead
dead
IE 9-11 IE 9-11

View file

@ -15,7 +15,6 @@
"hints": { "hints": {
"apple-touch-icons": "off", "apple-touch-icons": "off",
"axe/aria": "off", "axe/aria": "off",
"axe/other": "error",
"compat-api/css": [ "compat-api/css": [
"error", "error",
{ {
@ -36,7 +35,7 @@
], ],
"doctype": "error", "doctype": "error",
"highest-available-document-mode": "off", "highest-available-document-mode": "off",
"http-compression": "error", "http-compression": "off",
"https-only": "error", "https-only": "error",
"manifest-file-extension": "error", "manifest-file-extension": "error",
"manifest-is-valid": "error", "manifest-is-valid": "error",

View file

@ -5,7 +5,7 @@ PAGE_PATH = /
SCHEME=https:// SCHEME=https://
URL = $(SCHEME)$(DOMAIN)$(PAGE_PATH) URL = $(SCHEME)$(DOMAIN)$(PAGE_PATH)
# latest bleeding-edge chromium snapshot # latest bleeding-edge chromium snapshot
CHROME_PATH = /home/rkumar/Executables/ghq/github.com/chromium-unofficial-latest-linux/chromium-latest-linux/latest/chrome CHROME_PATH = /home/rkumar/Executables/ghq/github.com/chromium-unofficial-latest-linux/chromium-latest-linux/latest/chrome-linux/chrome
CHROME_PROFILE = /tmp/chrome-lighthouse CHROME_PROFILE = /tmp/chrome-lighthouse
CHROME_FLAGS += --headless --disable-extensions --no-sandbox --no-first-run --user-data-dir=$(CHROME_PROFILE) CHROME_FLAGS += --headless --disable-extensions --no-sandbox --no-first-run --user-data-dir=$(CHROME_PROFILE)
CPU_SLOWDOWN=2.4 CPU_SLOWDOWN=2.4

View file

@ -27,19 +27,19 @@
"resourceSizes": [ "resourceSizes": [
{ {
"resourceType": "total", "resourceType": "total",
"budget": 100 "budget": 60
}, },
{ {
"resourceType": "document", "resourceType": "document",
"budget": 30 "budget": 40
}, },
{ {
"resourceType": "image", "resourceType": "image",
"budget": 70 "budget": 35
}, },
{ {
"resourceType": "stylesheet", "resourceType": "stylesheet",
"budget": 5 "budget": 1
} }
], ],
"resourceCounts": [ "resourceCounts": [

View file

@ -4,6 +4,5 @@ exclude = [
"^gemini://.*", "^gemini://.*",
"mailto:.*", "mailto:.*",
"git@git.*", "git@git.*",
"*.onion", ".*.onion.*",
"*.onion/*",
] ]

View file

@ -1,11 +1,12 @@
{ {
"devDependencies": { "devDependencies": {
"@hint/configuration-web-recommended": "^8.1.0", "@hint/configuration-web-recommended": "^8.2.1",
"@hint/formatter-codeframe": "^3.1.19", "@hint/formatter-codeframe": "^3.1.21",
"@hint/hint-doctype": "^3.3.7", "@hint/hint-axe": "^4.4.3",
"@hint/hint-https-only": "^2.4.7", "@hint/hint-doctype": "^3.3.9",
"@hint/hint-performance-budget": "^2.4.7", "@hint/hint-https-only": "^2.4.9",
"@lhci/cli": "^0.6.1", "@hint/hint-performance-budget": "^2.4.9",
"hint": "^6.1.1" "@lhci/cli": "^0.8.0",
"hint": "^6.1.3"
} }
} }