Skip to content

Commit fb98919

Browse files
authored
chore: Add typescript implementation and validator mentions (#1138)
1 parent 0357b95 commit fb98919

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

components/SocialIcons.astro

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import Default from "@astrojs/starlight/components/SocialIcons.astro"
1010

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

13+
<div class="validator">
14+
<a href="https://datapackage-validator.datist.io"><strong>Validator</strong></a>
15+
</div>
16+
1317
<!-- Add styles to mimic the default links appearance. -->
1418
<style>
1519
a {
@@ -21,4 +25,13 @@ import Default from "@astrojs/starlight/components/SocialIcons.astro"
2125
a:hover {
2226
opacity: 0.66;
2327
}
28+
29+
div.validator {
30+
border-left: 1px solid var(--sl-color-gray-5);
31+
padding-left: 1rem;
32+
}
33+
34+
div.validator a {
35+
text-decoration: none;
36+
}
2437
</style>

content/docs/overview/software.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ Data Package is backed by a comprehensive list of software products supporting t
5454
/>
5555
</CardGrid>
5656

57+
## TypeScript
58+
59+
<CardGrid>
60+
<LinkCard
61+
title="frictionless-ts"
62+
description="Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames"
63+
href="https://frictionlessdata.github.io/frictionless-ts"
64+
/>
65+
</CardGrid>
66+
5767
## JavaScript
5868

5969
<CardGrid>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"generate": "vite-node scripts/generate.ts",
1414
"lint": "eslint . && prettier --check .",
1515
"prepare": "husky",
16-
"preview": "npm run build && astro preview --open --port 8080",
17-
"start": "astro dev",
16+
"preview": "npm run build && astro preview --open --port 5000",
17+
"start": "astro dev --port 5000",
1818
"update": "ncu -u",
1919
"test": "npm run lint",
2020
"type": "tsc"

0 commit comments

Comments
 (0)