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

docs: remove vsce #1358

Merged
merged 1 commit into from
Oct 17, 2024
Merged
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
2 changes: 1 addition & 1 deletion apps/docs/codemod-registry/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: 'book-open-cover'

Codemod Registry is the single-stop registry for codemods and code automation recipes that are built on top of tried-and-true engines such as Meta's jscodeshift, ts-morph, and Uber's piranha.

After [publishing codemods](/sharing/publishing-codemods) to the registry, they will automatically integrate into Codemod platform and all developers who have Codemod [CLI](/deploying-codemods/cli) or [IDE extension](/deploying-codemods/vsce) can then discover, share, and run those codemods with a single click. This also eliminates the need for installing additional packages for each framework they want to upgrade.
After [publishing codemods](/sharing/publishing-codemods) to the registry, they will automatically integrate into Codemod platform and all developers who have Codemod [CLI](/deploying-codemods/cli) can then discover, share, and run those codemods with a single click. This also eliminates the need for installing additional packages for each framework they want to upgrade.

## Learn more

Expand Down
149 changes: 0 additions & 149 deletions apps/docs/deploying-codemods/vsce.mdx

This file was deleted.

4 changes: 0 additions & 4 deletions apps/docs/external-links/vsce.mdx

This file was deleted.

7 changes: 1 addition & 6 deletions apps/docs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,6 @@
"group": "Codemod Registry",
"pages": ["codemod-registry/introduction"]
},
{
"group": "VS Code Extension",
"pages": ["deploying-codemods/vsce"]
},
{
"group": "Core Concepts",
"pages": [
Expand All @@ -138,8 +134,7 @@
"group": "Quick Links",
"pages": [
"external-links/codemod-registry",
"external-links/codemod-studio",
"external-links/vsce"
"external-links/codemod-studio"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/platform/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Building Codemods
sidebarTitle: "Build"
---

Codemod platform allows you to build a wide variety of codemods and easily distribute them to different parts of the platform, such as the [Codemod Registry](/codemod-registry), [CLI](/deploying-codemods/cli), and [VS Code extension](/deploying-codemods/vsce). This allows them to be discovered, shared, and used by the community.
Codemod platform allows you to build a wide variety of codemods and easily distribute them to different parts of the platform, such as the [Codemod Registry](/codemod-registry) and [CLI](/deploying-codemods/cli). This allows them to be discovered, shared, and used by the community.

You can build codemods using three different ways:

Expand Down
7 changes: 2 additions & 5 deletions apps/docs/platform/run.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebarTitle: "Run"

Running codemods with Codemod platform brings many benefits such as:
- advanced codemod [configuration](/building-codemods/package-requirements#codemodrc-json-reference) (pre/post-run commands, arguments, formatting, daisy-chaining, multi-threading, dry-running, and more)
- easily running codemods from different entry points, such as [CLI](/deploying-codemods/cli) and [IDE extension](/deploying-codemods/vsce), based on user preference.
- easily running codemods from different entry points, such as [CLI](/deploying-codemods/cli), based on user preference.

## Getting started

Expand All @@ -17,10 +17,7 @@ Codemod platform allows you to run codemods using different ways:
<Card title="Codemod CLI" icon="square-1" href="/deploying-codemods/cli#run">
Use Codemod CLI to run codemod packages.
</Card>
<Card title="Codemod IDE extension" icon="square-2" href="/deploying-codemods/vsce#getting-started">
Use Codemod VS Code extension to run codemod packages.
</Card>
</CardGroup>
<Card title="Codemod Studio" icon="square-3" href="/codemod-studio#running-codemods">
Use Codemod Studio to run your own codemod packages.
</Card>
</CardGroup>
2 changes: 1 addition & 1 deletion apps/docs/sharing/publishing-codemods.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ There are three ways to publish codemods to Codemod Registry:
3. [publishing with Codemod Studio](#option-3-publishing-with-codemod-studio)

<Tip>
Publishing codemods to the registry is especially useful for framework/library builders. With features like shareable codemod deep links and Codemod CLI & IDE extenion, your users can adopt your latest releases with one click, straight from your migration doc. <Tooltip tip="MSW V2 migration">[See example ->](https://mswjs.io/docs/migrations/1.x-to-2.x/#codemods)</Tooltip>
Publishing codemods to the registry is especially useful for framework/library builders. With features like shareable codemod deep links and Codemod CLI, your users can adopt your latest releases with one click, straight from your migration doc. <Tooltip tip="MSW V2 migration">[See example ->](https://mswjs.io/docs/migrations/1.x-to-2.x/#codemods)</Tooltip>
</Tip>

## Publishing codemods
Expand Down
Loading