Skip to content

Commit

Permalink
docs: Emphasize TypeScript support
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed May 15, 2024
1 parent 62a3934 commit 7e6a514
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kosko/cli",
"version": "4.1.1",
"description": "Organize Kubernetes manifests in JavaScript.",
"description": "Organize Kubernetes manifests in TypeScript.",
"homepage": "https://kosko.dev",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/kosko/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Organize Kubernetes manifests in TypeScript.

## Features

- Use JavaScript or any language compiled to JavaScript. (e.g. [TypeScript])
- Use TypeScript or any language compiled into JavaScript.
- Manage multiple environments.
- Validate against Kubernetes OpenAPI definitions.
- Reuse variables and functions across components.
Expand Down
2 changes: 1 addition & 1 deletion packages/kosko/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kosko",
"version": "4.1.1",
"description": "Organize Kubernetes manifests in JavaScript.",
"description": "Organize Kubernetes manifests in TypeScript.",
"homepage": "https://kosko.dev",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const commitRef =

export default {
title: "Kosko",
tagline: "Organize Kubernetes manifests in JavaScript.",
tagline: "Organize Kubernetes manifests in TypeScript.",
url: "https://kosko.dev",
baseUrl: "/",
onBrokenLinks: "throw",
Expand Down
2 changes: 1 addition & 1 deletion website/src/modules/home/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function Header() {
<header className={clsx("container", styles.container)}>
<h1 className={styles.title}>
Organize <strong>Kubernetes</strong> manifests in{" "}
<strong>JavaScript</strong>.
<strong>TypeScript</strong>.
</h1>
<div className={styles.actions}>
<LinkButton color="primary" size="lg" to={useBaseUrl("docs/")}>
Expand Down
2 changes: 1 addition & 1 deletion website/src/modules/home/components/HomePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import FindIssues from "../FindIssues";

export default function HomePage() {
return (
<Layout description="Organize Kubernetes manifests in JavaScript.">
<Layout description="Organize Kubernetes manifests in TypeScript.">
<Header />
<main>
<WriteLess />
Expand Down

0 comments on commit 7e6a514

Please sign in to comment.