Skip to content

Commit

Permalink
Version Packages (#35)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Apr 25, 2024
1 parent bfc890c commit e0fe4af
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 20 deletions.
19 changes: 0 additions & 19 deletions .changeset/slimy-years-exist.md

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @effect/codemod

## 0.0.14

### Patch Changes

- [#34](https://github.com/Effect-TS/codemod/pull/34) [`bfc890c`](https://github.com/Effect-TS/codemod/commit/bfc890c7b45837c566dc8de482fe1b0806c290e0) Thanks [@mikearnaldi](https://github.com/mikearnaldi)! - Add effect-3.0.4 mod to remove gen adapter

NOTE: some edge cases are uncovered like:

```ts
yield * $([Effect.succeed(0), Effect.succeed(1)] as const, Effect.allWith());
```

that needs to be convered to:

```ts
yield *
pipe([Effect.succeed(0), Effect.succeed(1)] as const, Effect.allWith());
```

Unfortunately not having type information in the mod tool renders impossible to decide if the `pipe` function is present or not.

## 0.0.13

### Patch Changes
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": "@effect/codemod",
"version": "0.0.13",
"version": "0.0.14",
"publishConfig": {
"access": "public",
"directory": "dist"
Expand Down

0 comments on commit e0fe4af

Please sign in to comment.