Skip to content

Commit

Permalink
Patched code
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Jul 9, 2023
1 parent 2ddc298 commit 0c99cfe
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/blueprints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Codemod to [PROVIDE A SHORT DESCRIPTION.]_
<details>
<summary>Optional: Specify the project root</summary>

Pass `--root` to run the codemod on a project somewhere else (i.e. not in the current directory).
Pass `--root` to run the codemod somewhere else (i.e. not in the current directory).

```sh
npx <%= options.codemod.name %> --root=<path/to/your/project>
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/blueprints/bin/__codemod-name__.__js__
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process.title = '<%= options.codemod.name %>';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand All @@ -38,7 +38,7 @@ process.title = '<%= options.codemod.name %>';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Codemod to [PROVIDE A SHORT DESCRIPTION.]_
<details>
<summary>Optional: Specify the project root</summary>

Pass `--root` to run the codemod on a project somewhere else (i.e. not in the current directory).
Pass `--root` to run the codemod somewhere else (i.e. not in the current directory).

```sh
npx ember-codemod-args-to-signature --root=<path/to/your/project>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process.title = 'ember-codemod-args-to-signature';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Codemod to [PROVIDE A SHORT DESCRIPTION.]_
<details>
<summary>Optional: Specify the project root</summary>

Pass `--root` to run the codemod on a project somewhere else (i.e. not in the current directory).
Pass `--root` to run the codemod somewhere else (i.e. not in the current directory).

```sh
npx ember-codemod-pod-to-octane --root=<path/to/your/project>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ process.title = 'ember-codemod-pod-to-octane';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Codemod to [PROVIDE A SHORT DESCRIPTION.]_
<details>
<summary>Optional: Specify the project root</summary>

Pass `--root` to run the codemod on a project somewhere else (i.e. not in the current directory).
Pass `--root` to run the codemod somewhere else (i.e. not in the current directory).

```sh
npx ember-codemod-args-to-signature --root=<path/to/your/project>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process.title = 'ember-codemod-args-to-signature';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ _Codemod to [PROVIDE A SHORT DESCRIPTION.]_
<details>
<summary>Optional: Specify the project root</summary>

Pass `--root` to run the codemod on a project somewhere else (i.e. not in the current directory).
Pass `--root` to run the codemod somewhere else (i.e. not in the current directory).

```sh
npx ember-codemod-pod-to-octane --root=<path/to/your/project>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process.title = 'ember-codemod-pod-to-octane';
// Set codemod options
const argv = yargs(hideBin(process.argv))
.option('root', {
describe: 'Location of your Ember project',
describe: 'Where to run the codemod',
type: 'string',
})
.parseSync();
Expand Down

0 comments on commit 0c99cfe

Please sign in to comment.