├── .gitignore ├── .vscode └── settings.json ├── README.md ├── exo-2-latin-400.woff2 ├── index.html ├── package.json ├── rename.sh ├── rollup.config.js ├── script ├── gauge.js ├── main.js ├── math.js ├── metrics.js └── util.js ├── style.css ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | dist 4 | 5 | calc.js* 6 | 7 | stats.html -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "prettier.printWidth": 130 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/README.md -------------------------------------------------------------------------------- /exo-2-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/exo-2-latin-400.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/package.json -------------------------------------------------------------------------------- /rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/rename.sh -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/rollup.config.js -------------------------------------------------------------------------------- /script/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/script/gauge.js -------------------------------------------------------------------------------- /script/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/script/main.js -------------------------------------------------------------------------------- /script/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/script/math.js -------------------------------------------------------------------------------- /script/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/script/metrics.js -------------------------------------------------------------------------------- /script/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/script/util.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/style.css -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/lh-scorecalc/HEAD/yarn.lock --------------------------------------------------------------------------------