Skip to content

Commit

Permalink
Tagged 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Aug 28, 2024
1 parent 2a56677 commit caf684a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .changeset/calm-steaks-whisper.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ _Utilities for writing codemods_
`@codemod-utils` provides a set of **tools and conventions** to help you write codemods. Use [`@codemod-utils/cli`](/packages/cli/README.md) to get started.

```sh
npx @codemod-utils/cli --name <your-codemod-name>
npx @codemod-utils/cli <your-codemod-name>
```


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workspace-root",
"version": "2.0.7",
"version": "2.0.8",
"private": true,
"description": "Workspace root for @codemod-utils",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for @codemod-utils/cli

## 2.0.1

### Patch Changes

- [#132](https://github.com/ijlee2/codemod-utils/pull/132) Updated blueprint for .npmignore ([@ijlee2](https://github.com/ijlee2))

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemod-utils/cli",
"version": "2.0.0",
"version": "2.0.1",
"description": "CLI to create a codemod project",
"keywords": [
"codemod",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/blueprint-for-v2-addon/01-create-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Change the directory to a place where you like to keep projects. Then, run these

```sh
# Create project
npx @codemod-utils/cli --name blueprint-for-v2-addon --addon blueprints
npx @codemod-utils/cli blueprint-for-v2-addon --addon blueprints

# Install dependencies
cd blueprint-for-v2-addon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Change the directory to a place where you like to keep projects. Then, run these

```sh
# Create project
npx @codemod-utils/cli --name ember-codemod-rename-test-modules --addon ast-javascript
npx @codemod-utils/cli ember-codemod-rename-test-modules --addon ast-javascript

# Install dependencies
cd ember-codemod-rename-test-modules
Expand Down
2 changes: 1 addition & 1 deletion tutorials/template-tag-components/01-a-simple-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Change the directory to a place where you like to keep projects. Then, run these

```sh
# Create project
npx @codemod-utils/cli --name remove-test-selectors --addon ast-template
npx @codemod-utils/cli remove-test-selectors --addon ast-template

# Install dependencies
cd remove-test-selectors
Expand Down

0 comments on commit caf684a

Please sign in to comment.