Skip to content

Commit 4521128

Browse files
committed
Merge branch 'main' of github.com:CodeshiftCommunity/CodeshiftCommunity into main
2 parents 733fdc4 + 17069be commit 4521128

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

packages/cli/src/cli.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Usage
2222
2323
Options
2424
--transform, -t the transform to run, will prompt for a transform if not provided and no module is passed
25-
--packages -pkgs, Comma separated list of packages to run transforms for, @scope/package[@version]. If version is supplied, will only run transforms above that version
25+
--packages -pkgs, Comma separated list of packages to run transforms for, @scope/package[@version]. If version is supplied, will only run transforms for that version and above
2626
--version, -v version number
2727
--parser, -p babel|babylon|flow|ts|tsx parser to use for parsing the source files (default: babel)
2828
--help, 😱
@@ -53,6 +53,7 @@ Examples
5353
type: 'string',
5454
alias: 'p',
5555
},
56+
// TODO: Add `sequence` and `extensions` flag
5657
},
5758
},
5859
);

website/docs/api/codeshift-cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Under the hood, it is a wrapper of jscodeshift's cli, which provides additional
1313
2. Runs versioned codemods in sequence
1414
3. Always runs the latest version of a codemod
1515

16-
The cli allows you to run transforms either from the [Community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community) or on your local machine as per the original implementation of jscodeshift
16+
The cli allows you to run transforms either from the [community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community) or on your local machine as per the original implementation of jscodeshift
1717

1818
**Note:** Codemods will be designed to do the heavy lifting, but they'll often not be perfect so some manual work may still be required in order to successfully migrate.
1919

website/docs/api/codeshift-test-utils.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CodeshiftCommunity provides a set of test utilities to help unit test codemods.
88

99
## Installation
1010

11-
`@codeshift/test-utils` is pre-bundled with every codemod that is published to the [Community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community),
11+
`@codeshift/test-utils` is pre-bundled with every codemod that is published to the [community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community),
1212
so there's no need to install it manually.
1313

1414
However, it is also available for use outside of this project and compatible with jscodeshift.

website/docs/api/codeshift-utils.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CodeshiftCommunity provides a set of utilities to help perform common codemod op
88

99
## Installation
1010

11-
`@codeshift/utils` is pre-bundled with every codemod that is published to the [Community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community),
11+
`@codeshift/utils` is pre-bundled with every codemod that is published to the [community folder](https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/main/community),
1212
so there's no need to install it manually.
1313

1414
However, it is also available for use outside of this project and compatible with jscodeshift.

0 commit comments

Comments
 (0)