mirror of
https://github.com/nkoehring/250kb-club.git
synced 2025-04-17 12:49:04 +02:00
fix 256KB
This commit is contained in:
parent
6e23cccd17
commit
6ed4f503ff
7 changed files with 7 additions and 7 deletions
2
index.ts
2
index.ts
|
@ -14,7 +14,7 @@ import {
|
|||
const INPUT_FILE = Deno.args[0] ?? "./pages.txt";
|
||||
const OUTPUT_PATH = Deno.args[1] ?? "./content"; // results are written here
|
||||
const RECHECK_THRESHOLD = 60 * 60 * 24 * 7 * 1000; // recheck pages older than 1 week
|
||||
const REJECT_THRESHOLD = 262144; // 256kb (duh)
|
||||
const REJECT_THRESHOLD = 262144; // 256KB (duh)
|
||||
const PARALLEL_JOBS = 3; // max YLT jobs
|
||||
|
||||
const now = Date.now();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "the-250kb-club-ng",
|
||||
"version": "0.0.1",
|
||||
"description": "Exclusive club of websites that weigh 256kb or less",
|
||||
"description": "Exclusive club of websites that weigh 256KB or less",
|
||||
"main": "index.ts",
|
||||
"repository": "https://git.k0r.in/n/the-250kb-club",
|
||||
"author": "koehr <n@koehr.in>",
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
The <em>250KB Club</em> is a collection of web pages that focus on
|
||||
performance, efficiency and accessibility.
|
||||
</p>
|
||||
<p class="big">Websites in this list must not exceed 256kb <em>compressed</em> size!</p>
|
||||
<p class="big">Websites in this list must not exceed 256KB <em>compressed</em> size!</p>
|
||||
<p>
|
||||
Yes, compressed size. It makes much more sense because it allows
|
||||
for a lot of text to be transferred without having a big impact on the
|
||||
|
|
Loading…
Add table
Reference in a new issue