Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update link to runtime-compat repo #60

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 4 additions & 5 deletions apps/website/src/app.vue
Expand Up @@ -6,18 +6,17 @@
</h2>
<p class="text-md text-slate-600 max-w-4xl">
Display APIs compatibility across different JavaScript runtimes. The data is retrieved from <ExternalLink
href="https://github.com/unjs/runtime-compat-data">
runtime-compat-data
href="https://github.com/unjs/runtime-compat/">
unjs/runtime-compat
</ExternalLink>, based on MDN's format.
Runtimes are displayed with their <ExternalLink href="https://runtime-keys.proposal.wintercg.org">
WinterCG Runtime Key
</ExternalLink>.
</p>
<label class="flex items-center gap-2">
<input type="checkbox" class="rounded" v-model="winterCGOnly" />
<span class="text-md text-slate-600">Filter by WinterCG APIs ({{ computedData.winterCGCount }}/{{
computedData.totalCount
}})</span>
<span class="text-md text-slate-600">
Filter by WinterCG APIs ({{ computedData.winterCGCount }}/{{ computedData.totalCount }})</span>
</label>
</div>
<div class="sticky top-0 z-10 pointer-events-none">
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -6,6 +6,7 @@
"generate:build": "pnpm run --filter \"*-runtime\" build",
"generate:process": "node scripts/process-test-results.mjs",
"generate:run": "pnpm run --filter \"*-runtime\" start",
"website:dev": "pnpm run --filter website dev",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs .",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix",
"release": "vitest run packages/runtime-compat-data/test && pnpm run --filter runtime-compat-data release",
Expand Down