Skip to content

Commit 9311773

Browse files
committed
Adds adds seo tags to recipes
1 parent 6f13a41 commit 9311773

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

website/docs/recipes/import-manipulation.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
id: import-manipulation
33
title: Import manipulation
44
slug: /import-manipulation
5+
6+
description: Learn how to use codemods to make effective and efficient changes to import statements. This guide covers updating the location of imported code, and modifying import structures.
7+
keywords: [typescript, codemod, codemorph, jscodeshift]
58
---
69

710
Modifying imports is one of the first and most common operations you are likely to do when writing codemods.
811

912
In this guide, we will explore how codemods can be used to make effective and efficient changes to javascript import statements.
10-
From changing function names to updating the location of imported code, and improving overall import structure.
13+
From changing import names to updating the location of imported code, and improving overall import structure.
1114
By following the steps outlined in this guide, you'll be able to maintain a well-organized,
1215
consistent codebase and unlock the many benefits that come with using codemods.
1316

website/docs/recipes/react.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
id: react
33
title: React & JSX
44
slug: /react
5+
6+
description: Learn how to use codemods to modify your React and JSX code. This guide covers inserting or removing props, wrapping components, and managing render props.
7+
keywords: [react, typescript, codemod, codemorph, jscodeshift]
58
---
69

710
Codemods are an ideal solution for making significant changes to [React](https://reactjs.org/) and JSX code.

website/docs/recipes/typescript.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
id: typescript
33
title: TypeScript
44
slug: /typescript
5+
6+
description: Learn how to write codemods to modify common TypeScript. This guide will teach you how to update variable and interface types using jscodeshift.
7+
keywords: [typescript, codemod, codemorph, jscodeshift]
58
---
69

710
If you're looking to modify TypeScript code in bulk, jscodeshift can be incredibly helpful.

0 commit comments

Comments
 (0)