Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions components/SocialIcons.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import Default from "@astrojs/starlight/components/SocialIcons.astro"

<Default {...Astro.props}><slot /></Default>

<div class="validator">
<a href="https://validator.datapackage.org/"><strong>Validator</strong></a>
</div>

<!-- Add styles to mimic the default links appearance. -->
<style>
a {
Expand All @@ -21,4 +25,13 @@ import Default from "@astrojs/starlight/components/SocialIcons.astro"
a:hover {
opacity: 0.66;
}

div.validator {
border-left: 1px solid var(--sl-color-gray-5);
padding-left: 1rem;
}

div.validator a {
text-decoration: none;
}
</style>
10 changes: 10 additions & 0 deletions content/docs/overview/software.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ Data Package is backed by a comprehensive list of software products supporting t
/>
</CardGrid>

## TypeScript

<CardGrid>
<LinkCard
title="frictionless-ts"
description="Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames"
href="https://frictionlessdata.github.io/frictionless-ts"
/>
</CardGrid>

## JavaScript

<CardGrid>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"generate": "vite-node scripts/generate.ts",
"lint": "eslint . && prettier --check .",
"prepare": "husky",
"preview": "npm run build && astro preview --open --port 8080",
"start": "astro dev",
"preview": "npm run build && astro preview --open --port 5000",
"start": "astro dev --port 5000",
"update": "ncu -u",
"test": "npm run lint",
"type": "tsc"
Expand Down